Home
last modified time | relevance | path

Searched refs:who (Results 1 – 25 of 281) sorted by relevance

12345678910>>...12

/freebsd/sys/contrib/openzfs/module/zcommon/
H A Dzfs_deleg.c105 zfs_validate_who(const char *who) in zfs_validate_who() argument
109 if (who[2] != ZFS_DELEG_FIELD_SEP_CHR) in zfs_validate_who()
112 switch (who[0]) { in zfs_validate_who()
117 if (who[1] != ZFS_DELEG_LOCAL && who[1] != ZFS_DELEG_DESCENDENT) in zfs_validate_who()
119 for (p = &who[3]; *p; p++) in zfs_validate_who()
126 if (who[1] != ZFS_DELEG_NA) in zfs_validate_who()
128 return (permset_namecheck(&who[3], NULL, NULL)); in zfs_validate_who()
132 if (who[1] != ZFS_DELEG_NA) in zfs_validate_who()
134 if (who[3] != '\0') in zfs_validate_who()
140 if (who[1] != ZFS_DELEG_LOCAL && who[1] != ZFS_DELEG_DESCENDENT) in zfs_validate_who()
[all …]
/freebsd/lib/libc/gen/
H A Dsetmode.c171 mode_t mask, perm, permXbits, who; in setmode() local
224 for (who = 0;; ++p) { in setmode()
227 who |= STANDARD_BITS; in setmode()
230 who |= S_ISUID|S_IRWXU; in setmode()
233 who |= S_ISGID|S_IRWXG; in setmode()
236 who |= S_IRWXO; in setmode()
250 who &= ~S_ISTXT; in setmode()
258 if (!who || who & ~S_IRWXO) in setmode()
263 if (!who || who & ~S_IRWXO) { in setmode()
264 who |= S_ISTXT; in setmode()
[all …]
/freebsd/usr.bin/renice/
H A Drenice.c59 int errs = 0, prio = 0, who = 0, which = PRIO_PROCESS; in main() local
98 who = pwd->pw_uid; in main()
99 else if (getnum("uid", *argv, &who)) { in main()
102 } else if (who < 0) { in main()
108 if (getnum("pid", *argv, &who)) { in main()
112 if (who < 0) { in main()
118 errs += donice(which, who, prio, incr); in main()
126 donice(int which, int who, int prio, bool incr) in donice() argument
131 oldprio = getpriority(which, who); in donice()
133 warn("%d: getpriority", who); in donice()
[all …]
/freebsd/contrib/sendmail/src/
H A Dtls.c726 char *who;
729 who = srv ? "server" : "client";
764 who, SSL_USE_CERT, certfile);
765 tlslogerr(LOG_WARNING, 9, who);
777 who, keyfile);
778 tlslogerr(LOG_WARNING, 9, who);
793 who, keyfile, r);
794 tlslogerr(LOG_WARNING, 9, who);
823 char *who;
828 who = srv ? "server" : "client";
[all …]
/freebsd/contrib/tcsh/
H A Dtc.who.c137 struct who { struct
138 struct who *who_next; argument
139 struct who *who_prev; argument
150 static struct who whohead, whotail;
154 static void debugwholist (struct who *, struct who *);
156 static void print_who (struct who *);
205 struct who *wp, *wpnew;
457 debugwholist(struct who *new, struct who *wp)
459 struct who *a;
491 print_who(struct who *wp)
[all …]
/freebsd/sbin/ipf/libipf/
H A Dmutex_emul.c63 eMmutex_init(eMmutex_t *mtx, char *who, char *file, int line) in eMmutex_init() argument
69 file, line, mtx, who); in eMmutex_init()
78 if (who != NULL) in eMmutex_init()
79 mtx->eMm_owner = strdup(who); in eMmutex_init()
H A Drwlock_emul.c113 void eMrwlock_init(eMrwlock_t *rw, char *who) in eMrwlock_init() argument
124 if (who != NULL) in eMrwlock_init()
125 rw->eMrw_owner = strdup(who); in eMrwlock_init()
/freebsd/tests/sys/cddl/zfs/tests/acl/nontrivial/
H A Dzfs_acl_chmod_aclmode_001_pos.ksh210 typeset who prefix acltemp action
213 who=${acl%%:*}
214 prefix=$who
284 who=${expect1%%:*}
285 prefix=$who
292 case $who in
/freebsd/cddl/contrib/opensolaris/lib/pyzfs/common/
H A Dallow.py134 def args_to_perms(parser, options, who, perms): argument
172 storeperm("s", "-", who)
176 for w in who:
363 who = args[0]
370 who = None
377 who = ["everyone"]
380 who = args[0].split(",")
386 d = args_to_perms(parser, options, who, perms)
/freebsd/sys/kern/
H A Dkern_resource.c85 int who; member
92 return (kern_getpriority(td, uap->which, uap->who)); in sys_getpriority()
96 kern_getpriority(struct thread *td, int which, int who) in kern_getpriority() argument
106 if (who == 0) in kern_getpriority()
109 p = pfind(who); in kern_getpriority()
120 if (who == 0) { in kern_getpriority()
124 pg = pgfind(who); in kern_getpriority()
144 if (who == 0) in kern_getpriority()
145 who = td->td_ucred->cr_uid; in kern_getpriority()
151 p->p_ucred->cr_uid == who) { in kern_getpriority()
[all …]
/freebsd/sys/contrib/openzfs/module/os/freebsd/zfs/
H A Dzfs_acl.c142 zfs_ace_v0_set_who(void *acep, uint64_t who) in zfs_ace_v0_set_who() argument
144 ((zfs_oldace_t *)acep)->z_fuid = who; in zfs_ace_v0_set_who()
240 zfs_ace_fuid_set_who(void *arg, uint64_t who) in zfs_ace_fuid_set_who() argument
249 acep->z_fuid = who; in zfs_ace_fuid_set_who()
573 zfs_acl_next_ace(zfs_acl_t *aclp, void *start, uint64_t *who, in zfs_acl_next_ace() argument
623 *who = aclp->z_ops->ace_who_get(acep); in zfs_acl_next_ace()
639 uint64_t who; in zfs_ace_walk() local
641 acep = zfs_acl_next_ace(aclp, acep, &who, mask, in zfs_ace_walk()
717 uint64_t who; in zfs_copy_fuid_2_ace() local
728 &who, &access_mask, &iflags, &type))) { in zfs_copy_fuid_2_ace()
[all …]
/freebsd/sys/contrib/openzfs/module/os/linux/zfs/
H A Dzfs_acl.c142 zfs_ace_v0_set_who(void *acep, uint64_t who) in zfs_ace_v0_set_who() argument
144 ((zfs_oldace_t *)acep)->z_fuid = who; in zfs_ace_v0_set_who()
240 zfs_ace_fuid_set_who(void *arg, uint64_t who) in zfs_ace_fuid_set_who() argument
249 acep->z_fuid = who; in zfs_ace_fuid_set_who()
571 zfs_acl_next_ace(zfs_acl_t *aclp, void *start, uint64_t *who, in zfs_acl_next_ace() argument
621 *who = aclp->z_ops->ace_who_get(acep); in zfs_acl_next_ace()
637 uint64_t who; in zfs_ace_walk() local
639 acep = zfs_acl_next_ace(aclp, acep, &who, mask, in zfs_ace_walk()
715 uint64_t who; in zfs_copy_fuid_2_ace() local
726 &who, &access_mask, &iflags, &type))) { in zfs_copy_fuid_2_ace()
[all …]
/freebsd/sys/dev/mpt/
H A Dmpt_debug.c306 const char *who; in mpt_who() local
309 case MPT_DB_INIT_NOONE: who = "No One"; break; in mpt_who()
310 case MPT_DB_INIT_BIOS: who = "BIOS"; break; in mpt_who()
311 case MPT_DB_INIT_ROMBIOS: who = "ROM BIOS"; break; in mpt_who()
312 case MPT_DB_INIT_PCIPEER: who = "PCI Peer"; break; in mpt_who()
313 case MPT_DB_INIT_HOST: who = "Host Driver"; break; in mpt_who()
314 case MPT_DB_INIT_MANUFACTURE: who = "Manufacturing"; break; in mpt_who()
315 default: who = "Unknown"; break; in mpt_who()
317 return who; in mpt_who()
/freebsd/contrib/tzdata/
H A Dfactory6 # For distributors who don't want to specify a timezone in their
7 # installation procedures. Users who run 'date' will get the
/freebsd/crypto/heimdal/appl/login/
H A Dshadow.c45 change_passwd(const struct passwd *who) in change_passwd() argument
55 execlp(_PATH_CHPASS, "passwd", who->pw_name, (char *) 0); in change_passwd()
/freebsd/contrib/netbsd-tests/usr.bin/grep/
H A Dd_context_d.out3 d_context_a.in:A pig is a pal, who'll boost your morale,
12 d_context_b.in:Dave was a happy pig who wandered around the orchard eating
/freebsd/contrib/atf/atf-c++/detail/
H A Dexceptions.cpp47 atf::system_error::system_error(const std::string& who, in system_error() argument
50 std::runtime_error(who + ": " + message), in system_error()
/freebsd/lib/libutil/
H A Dlogin_class.c50 rlim_t (*who)(login_cap_t *, const char *, rlim_t, rlim_t); member
107 rcur = (*lr->who)(lc, lr->what, rcur, rcur); in setclassresources()
108 rmax = (*lr->who)(lc, lr->what, rmax, rmax); in setclassresources()
109 rlim.rlim_cur = (*lr->who)(lc, name_cur, rcur, rcur); in setclassresources()
110 rlim.rlim_max = (*lr->who)(lc, name_max, rmax, rmax); in setclassresources()
/freebsd/contrib/unbound/daemon/
H A Dstats.c383 void server_stats_obtain(struct worker* worker, struct worker* who, in server_stats_obtain() argument
388 if(worker == who) { in server_stats_obtain()
396 worker_send_cmd(who, worker_cmd_stats); in server_stats_obtain()
397 else worker_send_cmd(who, worker_cmd_stats_noreset); in server_stats_obtain()
404 memcpy(&pthid, &who->thr_id, sizeof(unsigned long)); in server_stats_obtain()
417 who->thread_num in server_stats_obtain()
419 , (unsigned)who->thread_tid in server_stats_obtain()
/freebsd/sys/compat/linux/
H A Dlinux_misc.c1531 error = kern_getpriority(td, args->which, args->who); in linux_getpriority()
2790 if (args->who == 0) { in linux_ioprio_get()
2794 } else if (args->who > PID_MAX) { in linux_ioprio_get()
2795 td1 = linux_tdfind(td, args->who, -1); in linux_ioprio_get()
2799 p = pfind(args->who); in linux_ioprio_get()
2818 if (args->who == 0) { in linux_ioprio_get()
2822 pg = pgfind(args->who); in linux_ioprio_get()
2844 if (args->who == 0) in linux_ioprio_get()
2845 args->who = td->td_ucred->cr_uid; in linux_ioprio_get()
2850 p->p_ucred->cr_uid == args->who && in linux_ioprio_get()
[all …]
/freebsd/contrib/one-true-awk/testdir/
H A DT.getline5 who >foo1
15 who >foo1
/freebsd/usr.bin/who/
H A DMakefile1 PROG= who
/freebsd/contrib/llvm-project/compiler-rt/include/sanitizer/
H A Dlinux_syscall_hooks.h302 #define __sanitizer_syscall_pre_setpriority(which, who, niceval) \ argument
303 __sanitizer_syscall_pre_impl_setpriority((long)(which), (long)(who), \
305 #define __sanitizer_syscall_post_setpriority(res, which, who, niceval) \ argument
306 __sanitizer_syscall_post_impl_setpriority(res, (long)(which), (long)(who), \
308 #define __sanitizer_syscall_pre_getpriority(which, who) \ argument
309 __sanitizer_syscall_pre_impl_getpriority((long)(which), (long)(who))
310 #define __sanitizer_syscall_post_getpriority(res, which, who) \ argument
311 __sanitizer_syscall_post_impl_getpriority(res, (long)(which), (long)(who))
1282 #define __sanitizer_syscall_pre_getrusage(who, ru) \ argument
1283 __sanitizer_syscall_pre_impl_getrusage((long)(who), (long)(ru))
[all …]
/freebsd/tools/build/options/
H A DWITHOUT_UTMPX4 .Xr who 1 ,
/freebsd/usr.bin/id/
H A Did.c58 static struct passwd *who(char *);
147 pw = *argv ? who(*argv) : NULL; in main()
432 who(char *u) in who() function

12345678910>>...12