Searched defs:gidNative (Results 1 - 2 of 2) sorted by relevance

/vbox/src/VBox/Runtime/r3/posix/
H A Dpath2-posix.cpp244 gid_t gidNative = gid != NIL_RTGID ? (gid_t)gid : (uid_t)-1; local
245 AssertReturn(gid == gidNative, VERR_INVALID_PARAMETER);
256 if (chown(pszNativePath, uidNative, gidNative))
262 if (lchown(pszNativePath, uidNative, gidNative))
274 if (lchown(pszNativePath, uidNative, gidNative))
H A Dfileio-posix.cpp718 gid_t gidNative = gid != NIL_RTGID ? (gid_t)gid : (gid_t)-1; local
719 AssertReturn(gid == gidNative, VERR_INVALID_PARAMETER);
721 if (fchown(RTFileToNative(hFile), uidNative, gidNative))

Completed in 47 milliseconds