/third_party/ltp/testcases/kernel/syscalls/utils/ |
D | compat_16.h | 37 int setresgid(gid_t rgid, gid_t egid, gid_t sgid); 38 int getresgid(gid_t *rgid, gid_t *egid, gid_t *sgid); 129 int SETREGID(void (cleanup)(void), GID_T rgid, GID_T egid) in SETREGID() argument 131 LTP_CREATE_SYSCALL(setregid, cleanup, rgid, egid); in SETREGID() 144 int SETRESGID(void (cleanup)(void), GID_T rgid, GID_T egid, GID_T sgid) in SETRESGID() argument 146 LTP_CREATE_SYSCALL(setresgid, cleanup, rgid, egid, sgid); in SETRESGID() 149 int GETRESGID(void (cleanup)(void), GID_T *rgid, GID_T *egid, GID_T *sgid) in GETRESGID() argument 151 LTP_CREATE_SYSCALL(getresgid, cleanup, rgid, egid, sgid); in GETRESGID()
|
D | compat_tst_16.h | 33 int setresgid(gid_t rgid, gid_t egid, gid_t sgid); 126 int SETREGID(GID_T rgid, GID_T egid) in SETREGID() argument 128 TST_CREATE_SYSCALL(setregid, rgid, egid); in SETREGID() 136 int SETRESGID(GID_T rgid, GID_T egid, GID_T sgid) in SETRESGID() argument 138 TST_CREATE_SYSCALL(setresgid, rgid, egid, sgid); in SETRESGID()
|
/third_party/musl/src/unistd/ |
D | setregid.c | 5 int setregid(gid_t rgid, gid_t egid) in setregid() argument 7 return __setxid(SYS_setregid, rgid, egid, 0); in setregid()
|
D | setresgid.c | 6 int setresgid(gid_t rgid, gid_t egid, gid_t sgid) in setresgid() argument 8 return __setxid(SYS_setresgid, rgid, egid, sgid); in setresgid()
|
/third_party/musl/src/misc/ |
D | getresgid.c | 5 int getresgid(gid_t *rgid, gid_t *egid, gid_t *sgid) in getresgid() argument 7 return syscall(SYS_getresgid, rgid, egid, sgid); in getresgid()
|
/third_party/ltp/lib/ |
D | tst_safe_macros.c | 85 gid_t rgid, gid_t egid) in safe_setregid() argument 89 rval = setregid(rgid, egid); in safe_setregid() 93 (long)rgid, (long)egid); in safe_setregid()
|
D | safe_macros.c | 342 gid_t *rgid, gid_t *egid, gid_t *sgid) in safe_getresgid() argument 346 rval = getresgid(rgid, egid, sgid); in safe_getresgid() 350 file, lineno, rgid, egid, sgid); in safe_getresgid()
|
/third_party/ltp/testcases/kernel/syscalls/setresgid/ |
D | setresgid01.c | 84 uid_t *rgid; /* real GID */ member 132 TEST(SETRESGID(cleanup, *tdat[testno].rgid, *tdat[testno].egid, in main()
|
D | setresgid03.c | 91 uid_t *rgid; /* real GID */ member 131 TEST(SETRESGID(cleanup, *tdat[testno].rgid, *tdat[testno].egid, in main()
|
D | setresgid02.c | 89 uid_t *rgid; /* real GID */ member 139 TEST(SETRESGID(cleanup, *tdat[testno].rgid, *tdat[testno].egid, in main()
|
/third_party/ltp/include/ |
D | tst_safe_macros.h | 112 gid_t rgid, gid_t egid); 114 #define SAFE_SETREGID(rgid, egid) \ argument 115 safe_setregid(__FILE__, __LINE__, (rgid), (egid)) 126 #define SAFE_GETRESGID(rgid, egid, sgid) \ argument 127 safe_getresgid(__FILE__, __LINE__, NULL, (rgid), (egid), (sgid))
|
D | safe_macros_fn.h | 92 gid_t *rgid, gid_t *egid, gid_t *sgid);
|
/third_party/ltp/include/old/ |
D | safe_macros.h | 88 #define SAFE_GETRESGID(cleanup_fn, rgid, egid, sgid) \ argument 89 safe_getresgid(__FILE__, __LINE__, cleanup_fn, (rgid), (egid), (sgid))
|
/third_party/glib/glib/ |
D | gutils.c | 3063 gid_t rgid, egid, sgid; /* Real, effective and saved group ID's */ in g_check_setuid() 3074 int getresgid(gid_t *rgid, gid_t *egid, gid_t *sgid); in g_check_setuid() 3077 getresgid (&rgid, &egid, &sgid) != 0) in g_check_setuid() 3081 sgid = rgid = getgid (); in g_check_setuid() 3087 rgid != egid || rgid != sgid); in g_check_setuid()
|
/third_party/ntfs-3g/libfuse-lite/ |
D | fusermount.c | 143 gid_t rgid, egid, sgid; in restore_privs() local 145 if (getresgid(&rgid, &egid, &sgid) < 0) { in restore_privs()
|
/third_party/ltp/testcases/kernel/connectors/pec/ |
D | pec_listener.c | 211 pe->event_data.id.e.egid, pe->event_data.id.r.rgid); in process_event()
|
/third_party/python/Modules/clinic/ |
D | posixmodule.c.h | 3872 os_setregid_impl(PyObject *module, gid_t rgid, gid_t egid); 3878 gid_t rgid; in os_setregid() local 3884 if (!_Py_Gid_Converter(args[0], &rgid)) { in os_setregid() 3890 return_value = os_setregid_impl(module, rgid, egid); in os_setregid() 7598 os_setresgid_impl(PyObject *module, gid_t rgid, gid_t egid, gid_t sgid); 7604 gid_t rgid; in os_setresgid() local 7611 if (!_Py_Gid_Converter(args[0], &rgid)) { in os_setresgid() 7620 return_value = os_setresgid_impl(module, rgid, egid, sgid); in os_setresgid()
|
/third_party/mingw-w64/mingw-w64-headers/direct-x/include/ |
D | dsound.h | 1273 … STDMETHOD(Get)(THIS_ REFGUID rgid,ULONG x1,LPVOID p1,ULONG x2,LPVOID p2,ULONG x3,ULONG *px4) PURE; in DECLARE_INTERFACE_() 1274 STDMETHOD(Set)(THIS_ REFGUID rgid,ULONG x1,LPVOID p1,ULONG x2,LPVOID p2,ULONG x3) PURE; in DECLARE_INTERFACE_() 1275 STDMETHOD(QuerySupport)(THIS_ REFGUID rgid,ULONG x1,ULONG *px2) PURE; in DECLARE_INTERFACE_()
|
/third_party/python/Modules/ |
D | posixmodule.c | 7983 os_setregid_impl(PyObject *module, gid_t rgid, gid_t egid) in os_setregid_impl() argument 7986 if (setregid(rgid, egid) < 0) in os_setregid_impl() 12471 os_setresgid_impl(PyObject *module, gid_t rgid, gid_t egid, gid_t sgid) in os_setresgid_impl() argument 12474 if (setresgid(rgid, egid, sgid) < 0) in os_setresgid_impl() 12513 gid_t rgid, egid, sgid; in os_getresgid_impl() local 12514 if (getresgid(&rgid, &egid, &sgid) < 0) in os_getresgid_impl() 12516 return Py_BuildValue("(NNN)", _PyLong_FromGid(rgid), in os_getresgid_impl()
|
/third_party/flutter/skia/third_party/externals/icu/source/data/locales/ |
D | et.txt | 975 format_whitespace{"vorming ja tühimärgid"}
|
/third_party/icu/icu4c/source/data/locales/ |
D | et.txt | 983 format_whitespace{"vorming ja tühimärgid"}
|
/third_party/skia/third_party/externals/icu/source/data/locales/ |
D | et.txt | 984 format_whitespace{"vorming ja tühimärgid"}
|
/third_party/python/Doc/library/ |
D | os.rst | 408 Return a tuple (rgid, egid, sgid) denoting the current process's 530 .. function:: setregid(rgid, egid) 537 .. function:: setresgid(rgid, egid, sgid)
|
/third_party/glib/po/ |
D | et.po | 5889 #~ msgstr "tõstumuutmise märgid (\\l, \\L, \\u, \\U) pole siin lubatud"
|