Lines Matching refs:tmppath

303     char           *tmppath = context->fullpath[0];  in DEMOi_HIO_GetPathInfo()  local
306 DEMOi_HIO_CreateFullPath(context, tmppath, relpath); in DEMOi_HIO_GetPathInfo()
307 result = DEMOi_HIO_ConvertError(ISTDFIOGetAttribute(tmppath, stat)); in DEMOi_HIO_GetPathInfo()
337 char *tmppath = context->fullpath[0]; in DEMOi_HIO_CreateFile() local
351 DEMOi_HIO_CreateFullPath(context, tmppath, relpath); in DEMOi_HIO_CreateFile()
352 result = DEMOi_HIO_ConvertError(ISTDFIOOpen(file, tmppath, flags)); in DEMOi_HIO_CreateFile()
375 char *tmppath = context->fullpath[0]; in DEMOi_HIO_DeleteFile() local
377 DEMOi_HIO_CreateFullPath(context, tmppath, relpath); in DEMOi_HIO_DeleteFile()
378 result = DEMOi_HIO_ConvertError(ISTDFIORemove(tmppath)); in DEMOi_HIO_DeleteFile()
420 char *tmppath = context->fullpath[0]; in DEMOi_HIO_CreateDirectory() local
423 DEMOi_HIO_CreateFullPath(context, tmppath, relpath); in DEMOi_HIO_CreateDirectory()
424 result = DEMOi_HIO_ConvertError(ISTDFIOMkDir(tmppath)); in DEMOi_HIO_CreateDirectory()
441 char *tmppath = context->fullpath[0]; in DEMOi_HIO_DeleteDirectory() local
443 DEMOi_HIO_CreateFullPath(context, tmppath, relpath); in DEMOi_HIO_DeleteDirectory()
444 result = DEMOi_HIO_ConvertError(ISTDFIORmDir(tmppath)); in DEMOi_HIO_DeleteDirectory()
465 char *tmppath = context->fullpath[0]; in DEMOi_HIO_OpenFile() local
477 DEMOi_HIO_CreateFullPath(context, tmppath, path); in DEMOi_HIO_OpenFile()
478 result = DEMOi_HIO_ConvertError(ISTDFIOOpen(handle, tmppath, flags)); in DEMOi_HIO_OpenFile()
639 char *tmppath = context->fullpath[0]; in DEMOi_HIO_OpenDirectory() local
653 DEMOi_HIO_CreateFullPath(context, tmppath, path); in DEMOi_HIO_OpenDirectory()
655 if (*tmppath) in DEMOi_HIO_OpenDirectory()
657 char *s = tmppath + STD_GetStringLength(tmppath); in DEMOi_HIO_OpenDirectory()
668 result = DEMOi_HIO_ConvertError(ISTDFIOFindFirst(handle, data, tmppath)); in DEMOi_HIO_OpenDirectory()