Searched refs:pUuid1 (Results 1 - 3 of 3) sorted by relevance

/vbox/src/VBox/Runtime/r3/win/
H A Duuid-win.cpp59 RTDECL(int) RTUuidCompare(PCRTUUID pUuid1, PCRTUUID pUuid2) argument
64 if (pUuid1 == pUuid2)
66 if (!pUuid1)
69 return RTUuidIsNull(pUuid1) ? 0 : 1;
70 AssertPtrReturn(pUuid1, -1);
77 return UuidCompare((UUID *)pUuid1, (UUID *)pUuid2, &status);
81 RTDECL(int) RTUuidCompareStr(PCRTUUID pUuid1, const char *pszString2) argument
84 AssertPtrReturn(pUuid1, -1);
94 return RTUuidCompare(pUuid1, &Uuid2);
/vbox/include/iprt/
H A Duuid.h75 * @param pUuid1 First value to compare. NULL is treated like if
80 RTDECL(int) RTUuidCompare(PCRTUUID pUuid1, PCRTUUID pUuid2);
96 * @param pUuid1 First value to compare. NULL is not allowed.
100 RTDECL(int) RTUuidCompareStr(PCRTUUID pUuid1, const char *pszString2);
/vbox/src/VBox/Runtime/generic/
H A Duuid-generic.cpp92 RTDECL(int) RTUuidCompare(PCRTUUID pUuid1, PCRTUUID pUuid2) argument
97 if (pUuid1 == pUuid2)
99 if (!pUuid1)
102 return RTUuidIsNull(pUuid1) ? 0 : 1;
103 AssertPtrReturn(pUuid1, -1);
109 if (pUuid1->Gen.u32TimeLow != pUuid2->Gen.u32TimeLow)
110 return pUuid1->Gen.u32TimeLow < pUuid2->Gen.u32TimeLow ? -1 : 1;
111 if (pUuid1->Gen.u16TimeMid != pUuid2->Gen.u16TimeMid)
112 return pUuid1->Gen.u16TimeMid < pUuid2->Gen.u16TimeMid ? -1 : 1;
113 if (pUuid1
136 RTUuidCompareStr(PCRTUUID pUuid1, const char *pszString2) argument
[all...]

Completed in 81 milliseconds