Home
last modified time | relevance | path

Searched full:who (Results 1 – 25 of 1057) sorted by relevance

12345678910>>...43

/freebsd-src/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-src/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-src/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-src/usr.bin/who/
H A Dwho.132 .Nm who
33 .Nd display who is on the system
141 Show a brief summary of who is logged in:
143 $ who -q
148 Show who is logged in along with the line and time fields (without the headers):
150 $ who -s
158 $ who am i
165 $ who -a
174 $ who -aH
/freebsd-src/bin/chmod/
H A Dchmod.1183 clause ::= [who ...] [action ...] action
191 .Ar who
195 .Ar who
238 .Ar who ,
246 .Ar who
255 .Ar who ,
261 .Ar who
267 .Ar who
269 .Ar who
273 .Ar who ,
[all …]
/freebsd-src/share/doc/psd/05.sysman/
H A D1.6.t44 prio = getpriority(which, who);
45 result int prio; int which, who;
47 setpriority(which, who, prio);
48 int which, who, prio;
68 getrusage(who, rusage)
69 int who; result struct rusage *rusage;
91 The \fIwho\fP parameter specifies whose resource usage is to be returned.
/freebsd-src/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-src/lib/libsys/
H A Dgetpriority.241 .Fn getpriority "int which" "int who"
43 .Fn setpriority "int which" "int who" "int prio"
49 .Fa who
64 .Fa who
75 .Fa who
116 .Fa who
H A Dgetrusage.244 .Fn getrusage "int who" "struct rusage *rusage"
52 .Fa who
161 .Fa who
/freebsd-src/share/man/man5/
H A Dstyle.mdoc.5185 \&.Fl -meet Cm = Ar who Oo Cm \&, Ar who " " Ar "..." Oc Cm @ Ar where
192 .Fl -meet Cm = Ar who Oo Cm \&, Ar who " " Ar "..." Oc Cm @ Ar where
199 \&.Fl -meet No = Ar who Oo , Ar who " " Ar "..." Oc @ Ar where
206 .Fl -meet No = Ar who Oo , Ar who " " Ar "..." Oc @ Ar where
/freebsd-src/contrib/tcsh/
H A Dtc.who.c2 * tc.who.c: Watch logins and logouts...
137 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;
383 wpnew->who_next = wp; /* link in a new 'who' */
457 debugwholist(struct who *new, struct who *wp)
[all …]
/freebsd-src/sys/kern/
H A Dkern_resource.c85 int who;
92 return (kern_getpriority(td, uap->which, uap->who));
96 kern_getpriority(struct thread *td, int which, int who) in kern_getpriority()
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()
83 int who; global() member
94 kern_getpriority(struct thread * td,int which,int who) kern_getpriority() argument
171 int who; global() member
183 kern_setpriority(struct thread * td,int which,int who,int prio) kern_setpriority() argument
1045 int who; global() member
1062 kern_getrusage(struct thread * td,int who,struct rusage * rup) kern_getrusage() argument
[all...]
/freebsd-src/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()
/freebsd-src/cddl/contrib/opensolaris/lib/pyzfs/common/
H A Dallow.py134 def args_to_perms(parser, options, who, perms): argument
138 # perms is not set if we are doing a "zfs unallow <who> <fs>" to
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-src/usr.bin/rwho/
H A Drwho.133 .Nd who is logged in on local machines
41 .Xr who 1 ,
67 .Xr who 1 ,
/freebsd-src/usr.bin/rusers/
H A Drusers.133 .Nd who is logged in to machines on local network
42 .Xr who 1 ,
91 .Xr who 1 ,
/freebsd-src/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, in zfs_copy_fuid_2_ace()
803 uint64_t who; zfs_acl_xform() local
891 uint64_t who; zfs_mode_compute() local
1325 uint64_t who; zfs_acl_chmod() local
1491 uint64_t who; zfs_acl_inherit() local
1808 uint64_t who; zfs_getacl() local
2106 uint64_t who; zfs_zaccess_aces_check() local
[all...]
/freebsd-src/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-src/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, in zfs_copy_fuid_2_ace()
801 uint64_t who; zfs_acl_xform() local
909 uint64_t who; zfs_mode_compute() local
1510 uint64_t who; zfs_acl_chmod() local
1674 uint64_t who; zfs_acl_inherit() local
1998 uint64_t who; zfs_getacl() local
2293 uint64_t who; zfs_zaccess_aces_check() local
[all...]
/freebsd-src/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-src/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-src/usr.bin/compress/doc/
H A DNOTES41 The concept is still exotic for those who learned in school the rule of thumb
61 >The concept is still exotic for those who learned in school the rule of thumb
69 attorneys who don't even specialize in patents. one other interesting
111 into the fold. the guy who crammed 12-bit compress into the modem
/freebsd-src/lib/libpmc/pmu-events/arch/x86/sapphirerapids/
H A Dfrontend.json25 "BriefDescription": "Retired Instructions who experienced DSB miss.",
40 "BriefDescription": "Retired Instructions who experienced a critical DSB miss.",
55 "BriefDescription": "Retired Instructions who experienced iTLB true miss.",
70 "BriefDescription": "Retired Instructions who experienced Instruction L1 Cache true miss.",
79 …"PublicDescription": "Counts retired Instructions who experienced Instruction L1 Cache true miss.",
85 "BriefDescription": "Retired Instructions who experienced Instruction L2 Cache true miss.",
94 …"PublicDescription": "Counts retired Instructions who experienced Instruction L2 Cache true miss.",
279 "BriefDescription": "Retired Instructions who experienced STLB (2nd level TLB) true miss.",
/freebsd-src/lib/libpmc/pmu-events/arch/x86/icelake/
H A Dfrontend.json41 "BriefDescription": "Retired Instructions who experienced DSB miss.",
56 "BriefDescription": "Retired Instructions who experienced a critical DSB miss.",
71 "BriefDescription": "Retired Instructions who experienced iTLB true miss.",
86 "BriefDescription": "Retired Instructions who experienced Instruction L1 Cache true miss.",
95 …"PublicDescription": "Counts retired Instructions who experienced Instruction L1 Cache true miss.",
101 "BriefDescription": "Retired Instructions who experienced Instruction L2 Cache true miss.",
110 …"PublicDescription": "Counts retired Instructions who experienced Instruction L2 Cache true miss.",
281 "BriefDescription": "Retired Instructions who experienced STLB (2nd level TLB) true miss.",
/freebsd-src/lib/libc/rpc/
H A Drpc_soc.31549 This routine is useful for users who
1580 This routine is useful for users who wish to generate
1594 This routine is useful for users who wish to generate
1608 This routine is useful for users who wish to generate
1625 This routine is useful for users who wish to generate
1636 This routine is useful for users who wish to generate
1649 This routine is useful for users who wish to generate
1663 This routine is useful for users who wish to generate

12345678910>>...43