Searched refs:pTimeSpec (Results 1 - 11 of 11) sorted by relevance

/vbox/src/VBox/Runtime/generic/
H A DRTTimeLocalExplode-generic.cpp35 RTDECL(PRTTIME) RTTimeLocalExplode(PRTTIME pTime, PCRTTIMESPEC pTimeSpec) argument
37 pTime = RTTimeExplode(pTime, pTimeSpec);
41 pTime->offZone = RTTimeLocalDeltaNano() / (UINT64_C(1000000000)*3600); /** @todo this is obviously wrong. Need RTTimeLocalDeltaNanoFor(pTimeSpec); */
/vbox/src/VBox/Runtime/r3/win/
H A Dtime2-win.cpp56 RTDECL(PRTTIME) RTTimeLocalExplode(PRTTIME pTime, PCRTTIMESPEC pTimeSpec) argument
65 if (FileTimeToSystemTime(RTTimeSpecGetNtFileTime(pTimeSpec, &FileTime), &SystemTimeIn))
87 LocalTime = *pTimeSpec;
/vbox/src/VBox/Runtime/r3/posix/
H A Dtimelocal-posix.cpp126 * @param pTimeSpec The time spec to exploded. (UTC)
128 RTDECL(PRTTIME) RTTimeLocalExplode(PRTTIME pTime, PCRTTIMESPEC pTimeSpec) argument
130 RTTIMESPEC LocalTime = *pTimeSpec;
/vbox/src/VBox/Runtime/common/time/
H A Dtime.cpp256 * @param pTimeSpec The time spec to exploded.
258 RTDECL(PRTTIME) RTTimeExplode(PRTTIME pTime, PCRTTIMESPEC pTimeSpec) argument
268 AssertMsg(VALID_PTR(pTimeSpec), ("%p\n", pTime));
274 i64Div = pTimeSpec->i64NanosecondsRelativeToUnixEpoch;
368 * @param pTimeSpec Where to store the imploded UTC time.
377 RTDECL(PRTTIMESPEC) RTTimeImplode(PRTTIMESPEC pTimeSpec, PCRTTIME pTime) argument
386 AssertReturn(VALID_PTR(pTimeSpec), NULL);
413 pTimeSpec->i64NanosecondsRelativeToUnixEpoch = i64Nanos;
414 return pTimeSpec;
/vbox/include/iprt/
H A Dtime.h669 * @param pTimeSpec The time spec to exploded.
671 RTDECL(PRTTIME) RTTimeExplode(PRTTIME pTime, PCRTTIMESPEC pTimeSpec);
678 * @param pTimeSpec Where to store the imploded UTC time.
687 RTDECL(PRTTIMESPEC) RTTimeImplode(PRTTIMESPEC pTimeSpec, PCRTTIME pTime);
738 * @param pTimeSpec The time spec to exploded (UTC).
740 RTDECL(PRTTIME) RTTimeLocalExplode(PRTTIME pTime, PCRTTIMESPEC pTimeSpec);
/vbox/include/iprt/crypto/
H A Dx509.h331 RTDECL(bool) RTCrX509Validity_IsValidAtTimeSpec(PCRTCRX509VALIDITY pThis, PCRTTIMESPEC pTimeSpec);
1039 RTDECL(int) RTCrX509CertPathsSetValidTimeSpec(RTCRX509CERTPATHS hCertPaths, PCRTTIMESPEC pTimeSpec);
/vbox/src/VBox/Runtime/common/crypto/
H A Dx509-core.cpp51 RTDECL(bool) RTCrX509Validity_IsValidAtTimeSpec(PCRTCRX509VALIDITY pThis, PCRTTIMESPEC pTimeSpec) argument
53 if (RTAsn1Time_CompareWithTimeSpec(&pThis->NotBefore, pTimeSpec) > 0)
55 if (RTAsn1Time_CompareWithTimeSpec(&pThis->NotAfter, pTimeSpec) < 0)
H A Dx509-certpaths.cpp478 RTDECL(int) RTCrX509CertPathsSetValidTimeSpec(RTCRX509CERTPATHS hCertPaths, PCRTTIMESPEC pTimeSpec)
485 if (pTimeSpec)
487 pThis->ValidTime = *pTimeSpec;
/vbox/src/VBox/Runtime/common/string/
H A Dstrformatrt.cpp963 PCRTTIMESPEC pTimeSpec; member in union:__anon16586
1020 return RTStrFormat(pfnOutput, pvArgOutput, NULL, NULL, "%'lld ns", RTTimeSpecGetNano(u.pTimeSpec));
/vbox/src/VBox/Runtime/common/zip/
H A Dpkzipvfs.cpp386 static int rtZipPkzipReaderDecodeDosTime(PRTTIMESPEC pTimeSpec, uint16_t u16Time, uint16_t u16Date) argument
397 RTTimeImplode(pTimeSpec, &time);
H A Dxarvfs.cpp618 * @param pTimeSpec Where to return the timespec on success.
620 static bool rtZipXarParseTimestamp(const xml::ElementNode *pParent, const char *pszChild, PRTTIMESPEC pTimeSpec) argument
625 if (RTTimeSpecFromString(pTimeSpec, pszValue))
629 RTTimeSpecSetNano(pTimeSpec, 0);

Completed in 79 milliseconds