Searched refs:uid (Results 76 - 100 of 685) sorted by relevance

1234567891011>>

/freebsd-11-stable/contrib/sendmail/libsm/
H A Dt-sem.c131 drop_priv(uid, gid)
132 uid_t uid;
140 r = setuid(uid);
158 semtest(owner, uid, gid)
160 uid_t uid;
166 if (!owner && uid != 0)
168 r = drop_priv(uid, gid);
184 if (uid != 0)
186 r = sm_semsetowner(semid, uid, gid, 0660);
192 r = drop_priv(uid, gi
326 uid_t uid; local
[all...]
H A Dshm.c113 ** uid -- uid to use
123 sm_shmsetowner(shmid, uid, gid, mode)
125 uid_t uid;
135 shmid_ds.shm_perm.uid = uid;
/freebsd-11-stable/contrib/groff/src/preproc/eqn/
H A Dlist.cpp142 printf(".nr " WIDTH_FORMAT " %dM", uid, total_spacing);
145 printf("+\\n[" WIDTH_FORMAT "]", list.p[i]->uid);
147 printf(".nr " HEIGHT_FORMAT " 0", uid);
150 printf(">?\\n[" HEIGHT_FORMAT "]", list.p[i]->uid);
152 printf(".nr " DEPTH_FORMAT " 0", uid);
155 printf(">?\\n[" DEPTH_FORMAT "]", list.p[i]->uid);
161 printf(".nr " WIDTH_FORMAT " +\\w" DELIMITER_CHAR, uid);
167 uid, uid);
169 uid, ui
[all...]
/freebsd-11-stable/crypto/heimdal/kcm/
H A Dkcm_locl.h47 kcm_log(1, "%s request by process %d/uid %d", \
48 kcm_op2string(_opcode), (_client)->pid, (_client)->uid); \
52 kcm_log(1, "%s request for cache %s by process %d/uid %d", \
53 kcm_op2string(_opcode), (_name), (_client)->pid, (_client)->uid); \
71 uid_t uid; member in struct:kcm_default_cache
91 uid_t uid; member in struct:kcm_ccache_data
147 uid_t uid; member in struct:kcm_client
152 #define CLIENT_IS_ROOT(client) ((client)->uid == 0)
/freebsd-11-stable/contrib/pjdfstest/tests/chown/
H A D09.t22 expect 65534,65534 stat ${n0}/${n1} uid,gid
25 expect 65534,65534 stat ${n0}/${n1} uid,gid
28 expect 65533,65533 stat ${n0}/${n1} uid,gid
/freebsd-11-stable/contrib/netbsd-tests/fs/umapfs/
H A Dt_basic.c43 xchown(const char *path, uid_t uid, gid_t gid) argument
46 if (rump_sys_chown(path, uid, gid) == -1)
51 testuidgid(const char *path, uid_t uid, gid_t gid) argument
57 if (uid != (uid_t)-1) {
58 if (sb.st_uid != uid)
59 atf_tc_fail("%s: expected uid %d, got %d",
60 path, uid, sb.st_uid);
92 * Map td1 uid 555 to td2 uid 777 (yes, IMHO the umapfs
/freebsd-11-stable/usr.sbin/pw/
H A Dpwupd.h54 struct passwd * (*_getpwuid)(uid_t uid);
100 #define GETPWUID(uid) PWF._getpwuid(uid)
140 struct passwd * vgetpwuid(uid_t uid);
149 void copymkdir(int rootfd, char const * dir, int skelfd, mode_t mode, uid_t uid,
151 void rm_r(int rootfd, char const * dir, uid_t uid);
/freebsd-11-stable/crypto/heimdal/lib/kafs/
H A Dafskrb5.c48 v5_to_kt(krb5_creds *cred, uid_t uid, struct kafs_token *kt, int local524) argument
103 kt->ct.ViceId = uid;
107 _kafs_fixup_viceid(&kt->ct, uid);
114 krb5_creds *cred, uid_t uid,
132 ret = v5_to_kt(cred, uid, kt, 1);
134 ret = v5_to_kt(cred, uid, kt, 0);
147 const char *realm, uid_t uid, struct kafs_token *kt)
187 ret = v5_convert(d->context, d->id, out_creds, uid,
210 uid_t uid, const char *homedir)
219 return _kafs_afslog_all_local_cells (data, uid, homedi
113 v5_convert(krb5_context context, krb5_ccache id, krb5_creds *cred, uid_t uid, const char *cell, struct kafs_token *kt) argument
146 get_cred(struct kafs_data *data, const char *name, const char *inst, const char *realm, uid_t uid, struct kafs_token *kt) argument
209 afslog_uid_int(struct kafs_data *data, const char *cell, const char *rh, uid_t uid, const char *homedir) argument
252 krb5_afslog_uid_home(krb5_context context, krb5_ccache id, const char *cell, krb5_const_realm realm, uid_t uid, const char *homedir) argument
293 krb5_afslog_uid(krb5_context context, krb5_ccache id, const char *cell, krb5_const_realm realm, uid_t uid) argument
342 kafs_settoken5(krb5_context context, const char *cell, uid_t uid, krb5_creds *cred) argument
[all...]
H A Dcommon.c120 _kafs_fixup_viceid(struct ClearToken *ct, uid_t uid) argument
130 if (uid != 0) /* valid ViceId */
214 afslog_cells(struct kafs_data *data, char **cells, int max, uid_t uid, argument
220 int er = (*data->afslog_uid)(data, cells[i], 0, uid, homedir);
229 uid_t uid, const char *homedir)
255 ret = afslog_cells(data, cells, idx, uid, homedir);
344 const char *realm, uid_t uid, struct kafs_token *kt)
348 ret = (*data->get_cred)(data, user, cell, realm, uid, kt);
370 uid_t uid,
403 cell, realm_hint, uid, k
228 _kafs_afslog_all_local_cells(struct kafs_data *data, uid_t uid, const char *homedir) argument
343 _kafs_try_get_cred(struct kafs_data *data, const char *user, const char *cell, const char *realm, uid_t uid, struct kafs_token *kt) argument
366 _kafs_get_cred(struct kafs_data *data, const char *cell, const char *realm_hint, const char *realm, uid_t uid, struct kafs_token *kt) argument
[all...]
/freebsd-11-stable/contrib/netbsd-tests/sbin/fsck_ffs/
H A Dquotas_common.sh7 local uid=$(id -u)
14 -o 'match:USER QUOTA MISMATCH FOR ID '${uid}': 0/0 SHOULD BE 1/1' \
/freebsd-11-stable/contrib/sendmail/contrib/
H A Dpasswd-to-alias.pl13 ($name,$passwd,$uid,$gid,$quota,$comment,$gcos,$dir,$shell) = @a;
/freebsd-11-stable/sys/compat/linuxkpi/common/include/linux/
H A Dpid.h45 #define from_kuid_munged(a, uid) (uid)
/freebsd-11-stable/contrib/dialog/samples/
H A Dform112 uid=`echo "$ids" | sed -e 's/^uid=//' -e 's/ .*//'`
27 "UID:" 2 1 "$uid" 2 10 8 0 \
H A Dform1-both9 uid=`echo "$ids" | sed -e 's/^uid=//' -e 's/ .*//'`
25 "UID:" 2 1 "$uid" 2 10 8 0 \
H A Dform1-extra9 uid=`echo "$ids" | sed -e 's/^uid=//' -e 's/ .*//'`
25 "UID:" 2 1 "$uid" 2 10 8 0 \
H A Dform1-help9 uid=`echo "$ids" | sed -e 's/^uid=//' -e 's/ .*//'`
25 "UID:" 2 1 "$uid" 2 10 8 0 \
H A Dform1-utf811 uid=`echo "$ids" | sed -e 's/^uid=//' -e 's/ .*//'`
27 "UID:" 2 1 "$uid" 2 10 8 0 \
H A Dform310 uid=`echo "$ids" | sed -e 's/^uid=//' -e 's/ .*//'`
26 "UID:" 2 1 "$uid" 2 10 8 0 \
H A Dform410 uid=`echo "$ids" | sed -e 's/^uid=//' -e 's/ .*//'`
27 "UID:" 2 1 "$uid" 2 10 8 0 "User ID" \
H A Dform510 uid=`echo "$ids" | sed -e 's/^uid=//' -e 's/ .*//'`
28 "UID:" 2 1 "$uid" 2 10 8 0 "User ID" \
H A Dform610 uid=`echo "$ids" | sed -e 's/^uid=//' -e 's/ .*//'`
28 "UID:" 2 1 "$uid" 2 10 8 0 "User ID" \
H A Dpasswordform19 uid=`echo "$ids" | sed -e 's/^uid=//' -e 's/ .*//'`
25 "UID:" 2 1 "$uid" 2 10 8 0 \
H A Dpasswordform1-utf811 uid=`echo "$ids" | sed -e 's/^uid=//' -e 's/ .*//'`
27 "UID:" 2 1 "$uid" 2 10 8 0 \
/freebsd-11-stable/bin/pax/
H A Dsel_subs.h38 * data structure for storing uid/grp selects (-U, -G non standard options)
45 uid_t uid; member in struct:usrt
46 struct usrt *fow; /* next uid */
/freebsd-11-stable/crypto/openssh/
H A Dsftp-common.h38 u_int32_t uid; member in struct:Attrib

Completed in 108 milliseconds

1234567891011>>