Searched refs:uNative (Results 1 - 5 of 5) sorted by relevance

/vbox/include/iprt/
H A Dsocket.h96 * @param uNative The native handle.
98 RTDECL(int) RTSocketFromNative(PRTSOCKET phSocket, RTHCINTPTR uNative);
H A Dfile.h310 * @param uNative The native handle.
312 RTDECL(int) RTFileFromNative(PRTFILE pFile, RTHCINTPTR uNative);
/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 68 milliseconds