Searched defs:uNative (Results 1 - 3 of 3) sorted by relevance

/vbox/src/VBox/Runtime/r3/posix/
H A Dfileio-posix.cpp364 RTR3DECL(int) RTFileFromNative(PRTFILE pFile, RTHCINTPTR uNative) argument
366 AssertCompile(sizeof(uNative) == sizeof(*pFile));
367 if (uNative < 0)
369 AssertMsgFailed(("%p\n", uNative));
373 *pFile = (RTFILE)uNative;
/vbox/src/VBox/Runtime/r3/win/
H A Dfileio-win.cpp125 RTR3DECL(int) RTFileFromNative(PRTFILE pFile, RTHCINTPTR uNative) argument
127 HANDLE h = (HANDLE)uNative;
128 AssertCompile(sizeof(h) == sizeof(uNative));
131 AssertMsgFailed(("%p\n", uNative));
/vbox/src/VBox/Runtime/r3/
H A Dsocket.cpp425 RTDECL(int) RTSocketFromNative(PRTSOCKET phSocket, RTHCINTPTR uNative) argument
427 AssertReturn(uNative != NIL_RTSOCKETNATIVE, VERR_INVALID_PARAMETER);
429 AssertReturn(uNative >= 0, VERR_INVALID_PARAMETER);
432 return rtSocketCreateForNative(phSocket, uNative);

Completed in 76 milliseconds