Searched refs:gid (Results 51 - 75 of 510) sorted by relevance

1234567891011>>

/macosx-10.9.5/files-638.1.4/System/Library/DirectoryServices/DefaultLocalDB/Default/
H A Dgroups.py14 gid = deref(group["gid"])
18 str = "%s:*:%s:%s" % (name, gid, users)
22 x = int(deref(x["gid"]))
23 y = int(deref(y["gid"]))
H A Dusers.py15 gid = deref(user["gid"])
20 (name, uid, gid, realname, home, shell)
/macosx-10.9.5/llvmCore-3425.0.33/lib/Archive/
H A DArchiveInternals.h49 char gid[6]; ///< group id in ASCII decimal member in class:llvm::ArchiveMemberHeader
62 memset(gid,' ',6);
/macosx-10.9.5/OpenSSH-186/openssh/
H A Dsftp-common.h38 u_int32_t gid; member in struct:Attrib
/macosx-10.9.5/file_cmds-230/pax/
H A Dsel_subs.h52 gid_t gid; member in struct:grpt
53 struct grpt *fow; /* next gid */
/macosx-10.9.5/Security-55471.14.18/include/security_cdsa_utilities/
H A Dacl_process.cpp56 // match gid
57 if (select.uses(CSSM_ACL_MATCH_GID) && select.gid != env->getgid())
105 n2hi(selector.gid);
124 temp.gid = h2n (select.gid);
154 Debug::dump("gid=%d", int(select.gid));
/macosx-10.9.5/Security-55471.14.18/libsecurity_cdsa_utilities/lib/
H A Dacl_process.cpp56 // match gid
57 if (select.uses(CSSM_ACL_MATCH_GID) && select.gid != env->getgid())
105 n2hi(selector.gid);
124 temp.gid = h2n (select.gid);
154 Debug::dump("gid=%d", int(select.gid));
/macosx-10.9.5/system_cmds-597.90.1/login.tproj/
H A Dlogin_audit.c71 gid_t gid = pwd->pw_gid; local
121 if ((tok = au_to_subject32_ex(uid, geteuid(), getegid(), uid, gid, pid,
145 gid_t gid; local
171 gid = pwd->pw_gid;
173 gid, pid, pid, &tid)) == NULL)
201 gid_t gid = pwd->pw_gid; local
218 if ((tok = au_to_subject32_ex(uid, geteuid(), getegid(), uid, gid, pid,
/macosx-10.9.5/system_cmds-597.90.1/system_cmds-597.1.1/login.tproj/
H A Dlogin_audit.c71 gid_t gid = pwd->pw_gid; local
121 if ((tok = au_to_subject32_ex(uid, geteuid(), getegid(), uid, gid, pid,
145 gid_t gid; local
171 gid = pwd->pw_gid;
173 gid, pid, pid, &tid)) == NULL)
201 gid_t gid = pwd->pw_gid; local
218 if ((tok = au_to_subject32_ex(uid, geteuid(), getegid(), uid, gid, pid,
/macosx-10.9.5/ksh-20/ksh/src/lib/libcmd/
H A Dcksum.c124 gid_t gid; /* caller gid */ member in struct:State_s
244 (st->st_gid != state->gid && ((st->st_mode & S_ISGID) || (st->st_mode & S_IRGRP) && !(st->st_mode & S_IROTH) || (st->st_mode & S_IXGRP) && !(st->st_mode & S_IXOTH))) ? fmtgid(st->st_gid) : "-");
266 int gid; local
294 gid = -1;
298 gid = struid(t);
338 if (gid < 0 || gid == st.st_gid)
339 gid = -1;
345 error(2, "%s: gid shoul
[all...]
/macosx-10.9.5/BerkeleyDB-21/db/test/
H A Drecd15scr.tcl63 set gid [make_gid recd015script:$t]
64 puts $gfd $gid
65 error_check_good txn_prepare:$t [$t prepare $gid] 0
/macosx-10.9.5/bash-92/bash-3.2/lib/sh/
H A Deaccess.c131 /* Do the same thing access(2) does, but use the effective uid and gid,
169 /* Version to call when uid != euid or gid != egid. We temporarily swap
170 the effective and real uid and gid as appropriate. */
180 if (current_user.gid != current_user.egid)
181 setregid (current_user.egid, current_user.gid);
188 if (current_user.gid != current_user.egid)
189 setregid (current_user.gid, current_user.egid);
213 if (current_user.uid != current_user.euid || current_user.gid != current_user.egid)
217 if (current_user.uid == current_user.euid && current_user.gid == current_user.egid)
/macosx-10.9.5/emacs-92/emacs/src/
H A Dsyssignal.h186 #define EMACS_KILLPG(gid, signo) (killpg ( (gid), (signo)))
189 #define EMACS_KILLPG(gid, signo) (kill (gid, signo))
191 #define EMACS_KILLPG(gid, signo) (kill (-(gid), (signo)))
/macosx-10.9.5/libarchive-29/libarchive/libarchive/
H A Darchive_read_disk.c38 static const char *trivial_lookup_gname(void *, gid_t gid);
55 archive_read_disk_gname(struct archive *_a, gid_t gid) argument
59 return ((*a->lookup_gname)(a->lookup_gname_data, gid));
75 const char * (*lookup_gname)(void *private, gid_t gid),
185 trivial_lookup_gname(void *private_data, gid_t gid) argument
188 (void)gid; /* UNUSED */
73 archive_read_disk_set_gname_lookup(struct archive *_a, void *private_data, const char * (*lookup_gname)(void *private, gid_t gid), void (*cleanup_gname)(void *private)) argument
H A Darchive_write_disk_set_standard_lookup.c75 * use the uid/gid without the lookup. Or define your own custom functions
97 lookup_gid(void *private_data, const char *gname, gid_t gid) argument
103 /* If no gname, just use the gid provided. */
105 return (gid);
142 gid = result->gr_gid;
147 /* TODO: do a gname->gid lookup for Windows. */
149 #error No way to perform gid lookups on this platform
151 b->id = gid;
153 return (gid);
/macosx-10.9.5/postfix-252/postfix/src/util/
H A Dspawn_command.c111 gid_t gid; /* privileges */ member in struct:spawn_args
134 args->gid = (gid_t) - 1;
172 args->gid = va_arg(ap, gid_t);
173 if (args->gid == (gid_t) (-1))
246 if (args.uid != (uid_t) - 1 || args.gid != (gid_t) - 1)
247 set_ugid(args.uid, args.gid);
/macosx-10.9.5/ruby-104/ruby/lib/rubygems/package/
H A Dtar_header.rb13 # char gid[8]; # ditto
39 :gid,
60 'a8' + # gid
80 'A8' + # gid
108 :gid => fields.shift.oct,
134 vals[:gid] ||= 0
164 @gid == other.gid and
203 oct(gid, 7),
/macosx-10.9.5/ICU-511.35/icuSources/layout/
H A DLETypes.h174 #define LE_GET_GLYPH(gid) ((gid & LE_GLYPH_MASK) >> LE_GLYPH_SHIFT)
182 #define LE_GET_SUB_FONT(gid) ((gid & LE_SUB_FONT_MASK) >> LE_SUB_FONT_SHIFT)
190 #define LE_GET_CLIENT(gid) ((gid & LE_CLIENT_MASK) >> LE_CLIENT_SHIFT)
199 #define LE_SET_GLYPH(gid, glyph) ((gid & ~LE_GLYPH_MASK) | ((glyph << LE_GLYPH_SHIFT) & LE_GLYPH_MASK))
207 #define LE_SET_SUB_FONT(gid, font) ((gid
[all...]
/macosx-10.9.5/apache-786.1/httpd/modules/generators/
H A Dmod_suexec.c60 const char *uid, const char *gid)
70 cfg->ugid.gid = ap_gname2id(gid);
59 set_suexec_ugid(cmd_parms *cmd, void *mconfig, const char *uid, const char *gid) argument
/macosx-10.9.5/apache-786.1/httpd/srclib/apr/user/win32/
H A Dgroupinfo.c25 APR_DECLARE(apr_status_t) apr_gid_get(apr_gid_t *gid,
57 *gid = apr_palloc(p, sidlen);
59 rv = LookupAccountName(domain, groupname, *gid, &sidlen,
/macosx-10.9.5/apr-30/apr/apr/user/win32/
H A Dgroupinfo.c25 APR_DECLARE(apr_status_t) apr_gid_get(apr_gid_t *gid,
57 *gid = apr_palloc(p, sidlen);
59 rv = LookupAccountName(domain, groupname, *gid, &sidlen,
/macosx-10.9.5/libarchive-29/libarchive/libarchive/test/
H A Dtest_write_disk_perms.c41 * * An "alt gid" that this user can create files with
42 * * An "invalid gid" that this user is not permitted to create
52 gid_t gid = 0; local
64 failure("Couldn't create a file for gid testing.");
73 /* This loop stops when we wrap the gid or examine 10,000 gids. */
74 for (gid = 1, n = 1; gid == n && n < 10000 ; n++, gid++) {
75 if (fchown(fd, uid, gid) != 0) {
76 _invalid_gid = gid;
[all...]
/macosx-10.9.5/ppp-727.90.1/Controller/
H A Dppp_client.h68 uid_t gid; // user gid at the end of the control api member in struct:client
94 struct client *client_new_socket (CFSocketRef ref, int priviledged, uid_t uid, gid_t gid);
95 struct client *client_new_mach (CFMachPortRef port, CFRunLoopSourceRef rls, CFStringRef serviceID, uid_t uid, gid_t gid, mach_port_t bootstrap, mach_port_t notify_port);
H A Dscnc_client.h69 uid_t gid; // user gid at the end of the control api member in struct:client
97 struct client *client_new_socket (CFSocketRef ref, int priviledged, uid_t uid, gid_t gid);
98 struct client *client_new_mach (CFMachPortRef port, CFRunLoopSourceRef rls, CFStringRef serviceID, uid_t uid, gid_t gid, pid_t pid, mach_port_t bootstrap, mach_port_t notify_port, mach_port_t au_session, Boolean has_machport_priv);
/macosx-10.9.5/shell_cmds-175/id/
H A Did.c265 gid_t gid, egid, lastgid; local
285 gid = pw->pw_gid;
289 gid = getgid();
295 ngroups = getgrouplist_2(pw->pw_name, gid, &groups);
298 getgrouplist(pw->pw_name, gid, groups, &ngroups);
317 printf(" gid=%u", gid);
318 if ((gr = getgrgid(gid)))
325 if (p_egid && (egid = getegid()) != gid) {
332 if (lastgid == (gid
[all...]

Completed in 324 milliseconds

1234567891011>>