Searched refs:pAccessTime (Results 1 - 20 of 20) sorted by relevance

/vbox/src/VBox/Runtime/generic/
H A DRTDirSetTimes-generic.cpp48 RTR3DECL(int) RTDirSetTimes(PRTDIR pDir, PCRTTIMESPEC pAccessTime, PCRTTIMESPEC pModificationTime, argument
56 return RTPathSetTimes(pDir->pszPath, pAccessTime, pModificationTime, pChangeTime, pBirthTime);
/vbox/src/VBox/Runtime/r3/posix/
H A Dfileio2-posix.cpp133 RTR3DECL(int) RTFileSetTimes(RTFILE hFile, PCRTTIMESPEC pAccessTime, PCRTTIMESPEC pModificationTime, argument
142 if (!pAccessTime && !pModificationTime)
147 if (pAccessTime && pModificationTime)
149 memcpy(&aTimespecs[0], pAccessTime, sizeof(struct timespec));
158 memcpy(&aTimespecs[0], pAccessTime ? pAccessTime : &ObjInfo.AccessTime, sizeof(struct timespec));
165 Log(("RTFileSetTimes(%RTfile,%p,%p,,): returns %Rrc\n", hFile, pAccessTime, pModificationTime, rc));
174 if (pAccessTime && pModificationTime)
176 RTTimeSpecGetTimeval(pAccessTime, &aTimevals[0]);
185 RTTimeSpecGetTimeval(pAccessTime
[all...]
H A Dpath2-posix.cpp124 RTR3DECL(int) RTPathSetTimes(const char *pszPath, PCRTTIMESPEC pAccessTime, PCRTTIMESPEC pModificationTime, argument
127 return RTPathSetTimesEx(pszPath, pAccessTime, pModificationTime, pChangeTime, pBirthTime, RTPATH_F_ON_LINK);
131 RTR3DECL(int) RTPathSetTimesEx(const char *pszPath, PCRTTIMESPEC pAccessTime, PCRTTIMESPEC pModificationTime, argument
139 AssertPtrNullReturn(pAccessTime, VERR_INVALID_POINTER);
157 if (!pAccessTime && !pModificationTime)
166 if (pAccessTime && pModificationTime)
168 RTTimeSpecGetTimeval(pAccessTime, &aTimevals[0]);
176 RTTimeSpecGetTimeval(pAccessTime ? pAccessTime : &ObjInfo.AccessTime, &aTimevals[0]);
181 pszPath, pAccessTime, pModificationTim
[all...]
/vbox/src/VBox/Runtime/r3/win/
H A Dpath-win.cpp410 RTR3DECL(int) RTPathSetTimes(const char *pszPath, PCRTTIMESPEC pAccessTime, PCRTTIMESPEC pModificationTime, argument
413 return RTPathSetTimesEx(pszPath, pAccessTime, pModificationTime, pChangeTime, pBirthTime, RTPATH_F_ON_LINK);
417 RTR3DECL(int) RTPathSetTimesEx(const char *pszPath, PCRTTIMESPEC pAccessTime, PCRTTIMESPEC pModificationTime, argument
425 AssertPtrNullReturn(pAccessTime, VERR_INVALID_POINTER);
475 if (!pAccessTime && !pModificationTime && !pBirthTime)
489 if (pAccessTime)
490 pLastAccessTimeFT = RTTimeSpecGetNtFileTime(pAccessTime, &LastAccessTimeFT);
504 pszPath, pAccessTime, pModificationTime, pChangeTime, pBirthTime, Err, rc));
520 pszPath, pszPath, pAccessTime, pAccessTime, pModificationTim
[all...]
H A Dfileio-win.cpp898 RTR3DECL(int) RTFileSetTimes(RTFILE hFile, PCRTTIMESPEC pAccessTime, PCRTTIMESPEC pModificationTime, argument
901 if (!pAccessTime && !pModificationTime && !pBirthTime)
911 if (pAccessTime)
912 pLastAccessTimeFT = RTTimeSpecGetNtFileTime(pAccessTime, &LastAccessTimeFT);
925 hFile, pAccessTime, pModificationTime, pChangeTime, pBirthTime, Err, rc));
/vbox/src/VBox/HostServices/SharedFolders/
H A Dteststubs.h44 extern int testRTDirSetTimes(PRTDIR pDir, PCRTTIMESPEC pAccessTime, PCRTTIMESPEC pModificationTime, PCRTTIMESPEC pChangeTime, PCRTTIMESPEC pBirthTime);
64 extern int testRTFileSetTimes(RTFILE hFile, PCRTTIMESPEC pAccessTime, PCRTTIMESPEC pModificationTime, PCRTTIMESPEC pChangeTime, PCRTTIMESPEC pBirthTime);
/vbox/include/iprt/
H A Dpath.h1235 * @param pAccessTime Pointer to the new access time.
1251 RTR3DECL(int) RTPathSetTimes(const char *pszPath, PCRTTIMESPEC pAccessTime, PCRTTIMESPEC pModificationTime,
1259 * @param pAccessTime Pointer to the new access time.
1276 RTR3DECL(int) RTPathSetTimesEx(const char *pszPath, PCRTTIMESPEC pAccessTime, PCRTTIMESPEC pModificationTime,
1284 * @param pAccessTime Where to store the access time. NULL is ok.
1293 RTR3DECL(int) RTPathGetTimes(const char *pszPath, PRTTIMESPEC pAccessTime, PRTTIMESPEC pModificationTime,
H A Ddir.h508 * @param pAccessTime Pointer to the new access time. NULL if not to be changed.
524 RTR3DECL(int) RTDirSetTimes(PRTDIR pDir, PCRTTIMESPEC pAccessTime, PCRTTIMESPEC pModificationTime,
H A Dfile.h899 * @param pAccessTime Pointer to the new access time. NULL if not to be changed.
915 RTDECL(int) RTFileSetTimes(RTFILE File, PCRTTIMESPEC pAccessTime, PCRTTIMESPEC pModificationTime,
923 * @param pAccessTime Where to store the access time. NULL is ok.
930 RTDECL(int) RTFileGetTimes(RTFILE File, PRTTIMESPEC pAccessTime, PRTTIMESPEC pModificationTime,
H A Dvfs.h394 * @param pAccessTime Pointer to the new access time. NULL if not
406 RTDECL(int) RTVfsSymlinkSetTimes(RTVFSSYMLINK hVfsSym, PCRTTIMESPEC pAccessTime, PCRTTIMESPEC pModificationTime,
H A Dvfslowlevel.h340 * @param pAccessTime Pointer to the new access time. NULL if not
352 DECLCALLBACKMEMBER(int, pfnSetTimes)(void *pvThis, PCRTTIMESPEC pAccessTime, PCRTTIMESPEC pModificationTime,
/vbox/src/VBox/Runtime/common/dvm/
H A Ddvmvfs.cpp251 static DECLCALLBACK(int) rtDvmVfsFile_SetTimes(void *pvThis, PCRTTIMESPEC pAccessTime, PCRTTIMESPEC pModificationTime, argument
255 NOREF(pAccessTime);
/vbox/src/VBox/Storage/
H A DVDIfVfs.cpp259 static DECLCALLBACK(int) vdIfVfsFile_SetTimes(void *pvThis, PCRTTIMESPEC pAccessTime, PCRTTIMESPEC pModificationTime, argument
263 NOREF(pAccessTime);
H A DVDVfs.cpp386 static DECLCALLBACK(int) vdVfsFile_SetTimes(void *pvThis, PCRTTIMESPEC pAccessTime, PCRTTIMESPEC pModificationTime, argument
390 NOREF(pAccessTime);
/vbox/src/VBox/Runtime/common/vfs/
H A Dvfsmemory.cpp598 static DECLCALLBACK(int) rtVfsMemFile_SetTimes(void *pvThis, PCRTTIMESPEC pAccessTime, PCRTTIMESPEC pModificationTime,
603 if (pAccessTime)
604 pThis->Base.ObjInfo.AccessTime = *pAccessTime;
H A Dvfsstdfile.cpp333 static DECLCALLBACK(int) rtVfsStdFile_SetTimes(void *pvThis, PCRTTIMESPEC pAccessTime, PCRTTIMESPEC pModificationTime, argument
337 return RTFileSetTimes(pThis->hFile, pAccessTime, pModificationTime, pChangeTime, pBirthTime);
H A Dvfsbase.cpp1891 RTDECL(int) RTVfsSymlinkSetTimes(RTVFSSYMLINK hVfsSym, PCRTTIMESPEC pAccessTime, PCRTTIMESPEC pModificationTime, argument
1898 AssertPtrNullReturn(pAccessTime, VERR_INVALID_POINTER);
1904 int rc = pThis->pOps->ObjSet.pfnSetTimes(pThis->Base.pvThis, pAccessTime, pModificationTime, pChangeTime, pBirthTime);
/vbox/src/VBox/HostServices/SharedFolders/testcase/
H A DtstSharedFolderService.cpp192 extern int testRTDirSetTimes(PRTDIR pDir, PCRTTIMESPEC pAccessTime, argument
197 /* RTPrintf("%s: pDir=%p, *pAccessTime=%lli, *pModificationTime=%lli, *pChangeTime=%lli, *pBirthTime=%lli\n",
199 pAccessTime ? (long long)RTTimeSpecGetNano(pAccessTime) : -1,
204 if (pAccessTime)
205 testRTDirSetTimesATime = *pAccessTime;
329 extern int testRTFileSetTimes(RTFILE File, PCRTTIMESPEC pAccessTime, argument
334 /* RTPrintf("%s: pFile=%p, *pAccessTime=%lli, *pModificationTime=%lli, *pChangeTime=%lli, *pBirthTime=%lli\n",
336 pAccessTime ? (long long)RTTimeSpecGetNano(pAccessTime)
[all...]
/vbox/src/VBox/Runtime/common/zip/
H A Dxarvfs.cpp1049 static DECLCALLBACK(int) rtZipXarFssFile_SetTimes(void *pvThis, PCRTTIMESPEC pAccessTime, PCRTTIMESPEC pModificationTime, argument
1053 NOREF(pAccessTime);
1369 static DECLCALLBACK(int) rtZipXarFssSym_SetTimes(void *pvThis, PCRTTIMESPEC pAccessTime, PCRTTIMESPEC pModificationTime, argument
1372 NOREF(pvThis); NOREF(pAccessTime); NOREF(pModificationTime); NOREF(pChangeTime); NOREF(pBirthTime);
H A Dtarvfs.cpp1179 static DECLCALLBACK(int) rtZipTarFssSym_SetTimes(void *pvThis, PCRTTIMESPEC pAccessTime, PCRTTIMESPEC pModificationTime, argument
1182 NOREF(pvThis); NOREF(pAccessTime); NOREF(pModificationTime); NOREF(pChangeTime); NOREF(pBirthTime);

Completed in 1144 milliseconds