Lines Matching refs:tmppath
299 char *tmppath = context->fullpath[0]; in DEMOi_HIO_GetPathInfo() local
302 DEMOi_HIO_CreateFullPath(context, tmppath, relpath); in DEMOi_HIO_GetPathInfo()
303 result = DEMOi_HIO_ConvertError(ISTDFIOGetAttribute(tmppath, stat)); in DEMOi_HIO_GetPathInfo()
333 char *tmppath = context->fullpath[0]; in DEMOi_HIO_CreateFile() local
347 DEMOi_HIO_CreateFullPath(context, tmppath, relpath); in DEMOi_HIO_CreateFile()
348 result = DEMOi_HIO_ConvertError(ISTDFIOOpen(file, tmppath, flags)); in DEMOi_HIO_CreateFile()
371 char *tmppath = context->fullpath[0]; in DEMOi_HIO_DeleteFile() local
373 DEMOi_HIO_CreateFullPath(context, tmppath, relpath); in DEMOi_HIO_DeleteFile()
374 result = DEMOi_HIO_ConvertError(ISTDFIORemove(tmppath)); in DEMOi_HIO_DeleteFile()
416 char *tmppath = context->fullpath[0]; in DEMOi_HIO_CreateDirectory() local
419 DEMOi_HIO_CreateFullPath(context, tmppath, relpath); in DEMOi_HIO_CreateDirectory()
420 result = DEMOi_HIO_ConvertError(ISTDFIOMkDir(tmppath)); in DEMOi_HIO_CreateDirectory()
437 char *tmppath = context->fullpath[0]; in DEMOi_HIO_DeleteDirectory() local
439 DEMOi_HIO_CreateFullPath(context, tmppath, relpath); in DEMOi_HIO_DeleteDirectory()
440 result = DEMOi_HIO_ConvertError(ISTDFIORmDir(tmppath)); in DEMOi_HIO_DeleteDirectory()
461 char *tmppath = context->fullpath[0]; in DEMOi_HIO_OpenFile() local
473 DEMOi_HIO_CreateFullPath(context, tmppath, path); in DEMOi_HIO_OpenFile()
474 result = DEMOi_HIO_ConvertError(ISTDFIOOpen(handle, tmppath, flags)); in DEMOi_HIO_OpenFile()
635 char *tmppath = context->fullpath[0]; in DEMOi_HIO_OpenDirectory() local
649 DEMOi_HIO_CreateFullPath(context, tmppath, path); in DEMOi_HIO_OpenDirectory()
651 if (*tmppath) in DEMOi_HIO_OpenDirectory()
653 char *s = tmppath + STD_GetStringLength(tmppath); in DEMOi_HIO_OpenDirectory()
664 result = DEMOi_HIO_ConvertError(ISTDFIOFindFirst(handle, data, tmppath)); in DEMOi_HIO_OpenDirectory()