Searched refs:users (Results 1 - 25 of 51) sorted by relevance

123

/freebsd-9.3-release/usr.bin/users/
H A DMakefile4 PROG= users
/freebsd-9.3-release/contrib/cvs/contrib/
H A Dmfpipe.in39 # change notices to a group of users. Obviously you probably wouldn't want
41 # accessed by a group of users who would benefit from an email notice.
53 # Description: Tee standard input to mail a list of users and to
85 $users = "$users $arg";
89 if ($users) {
90 $mailcmd = "$mailcmd $users";
105 print MAIL $_ if ($users);
H A Dlog.in97 my $users;
109 $users = "$users " . shift @ARGV;
155 if ($users) {
156 $mailcmd = "$mailcmd $users";
/freebsd-9.3-release/usr.sbin/lpr/lprm/
H A Dlprm.c53 * and startup a new daemon. Priviledged users may remove anyone's spool
76 char *user[MAXUSERS]; /* users to process */
77 int users; /* # of users in user array */ variable
128 if (!users) {
129 users = -1;
136 if (users < 0)
143 if (users >= MAXUSERS)
144 fatal(0, "Too many users");
145 user[users
[all...]
/freebsd-9.3-release/usr.sbin/lpr/common_source/
H A Drequest.c54 TAILQ_INIT(&rp->users);
72 while ((ru = TAILQ_FIRST(&rp->users)) != 0) {
73 TAILQ_REMOVE(&rp->users, ru, ru_link);
H A Drmjob.c98 if (users < 0) {
103 users = 1;
263 if (users == 0 && requests == 0)
274 for (u = user; u < &user[users]; u++)
284 * Normal users can only remove the file from where it was sent.
324 * 2 * users == " " + user[i] for each user
331 if (users > 0)
332 niov = 4 + 2 * users + requests + 1;
343 for (i = 0; i < users; i++) {
H A Dlp.h144 struct req_user_head users; /* list of users to query/delete */ member in struct:request
175 extern char *user[]; /* users to process */
176 extern int users; /* # of users in user array */
/freebsd-9.3-release/tools/LibraryReport/
H A DLibraryReport.tcl243 set users [lsort $Libs($lib)];
244 puts [format "%-30s %s" $lib $users];
250 set users [lsort $Libs($lib)];
251 puts [format "%-30s %s" $lib $users];
/freebsd-9.3-release/sys/ofed/drivers/infiniband/core/
H A Dsa.h42 atomic_inc(&client->users);
47 if (atomic_dec_and_test(&client->users))
/freebsd-9.3-release/usr.sbin/lpr/lpq/
H A Dlpq.c72 char *user[MAXUSERS]; /* users to process */
73 int users; /* # of users in user array */ variable
124 if (users >= MAXUSERS)
125 fatal(0, "too many users");
126 user[users++] = *argv;
/freebsd-9.3-release/usr.sbin/pc-sysinstall/backend/
H A DMakefile9 functions-upgrade.sh functions-users.sh \
H A Dparseconfig.sh49 . ${BACKEND}/functions-users.sh
/freebsd-9.3-release/contrib/sendmail/contrib/
H A Dexpn.pl84 # @users = $users{@hosts[0]} : addresses to expand at this server
85 # $u = $users[0] : the current address being expanded
86 # $names{"$users[0] *** $server"} : the 'name' associated with the address
87 # $mxbacktrace{"$users[0] *** $server"} : record of mx expansion
89 # $domainify_fallback{"$users[0] *** $server"} : alternative names to try
91 # $temporary_redirect{"$users[0] *** $server"} : when trying alternates,
150 @users = split(' ',$users{$server});
151 delete $users{
[all...]
/freebsd-9.3-release/usr.sbin/quot/
H A Dquot.c232 } *users; variable in typeref:struct:user
243 if (!(users =
245 errx(1, "allocate users");
247 for (usr = users, i = nusers; --i >= 0; usr++) {
261 svusr = users;
263 if (!(users = (struct user *)calloc(nusers,sizeof(struct user))))
264 errx(1, "allocate users");
266 for (usrn = users + (usr->uid&(nusers - 1)); usrn->name;
268 if (usrn <= users)
269 usrn = users
[all...]
/freebsd-9.3-release/usr.sbin/config/
H A Dmkoptions.c51 static struct users { struct
55 } users = { 8, 2, 512 }; variable in typeref:struct:users
81 } else if (maxusers < users.u_min) {
83 users.u_min);
84 maxusers = users.u_min;
85 } else if (maxusers > users.u_max)
87 users.u_max, maxusers);
/freebsd-9.3-release/contrib/amd/scripts/
H A Dexpn.186 # @users = $users{@hosts[0]} : addresses to expand at this server
87 # $u = $users[0] : the current address being expanded
88 # $names{"$users[0] *** $server"} : the 'name' associated with the address
89 # $mxbacktrace{"$users[0] *** $server"} : record of mx expansion
91 # $domainify_fallback{"$users[0] *** $server"} : alternative names to try
93 # $temporary_redirect{"$users[0] *** $server"} : when trying alternates,
158 @users = split(' ',$users{$server});
159 delete $users{
[all...]
H A Dexpn.in85 # @users = $users{@hosts[0]} : addresses to expand at this server
86 # $u = $users[0] : the current address being expanded
87 # $names{"$users[0] *** $server"} : the 'name' associated with the address
88 # $mxbacktrace{"$users[0] *** $server"} : record of mx expansion
90 # $domainify_fallback{"$users[0] *** $server"} : alternative names to try
92 # $temporary_redirect{"$users[0] *** $server"} : when trying alternates,
157 @users = split(' ',$users{$server});
158 delete $users{
[all...]
/freebsd-9.3-release/crypto/heimdal/appl/login/
H A Dlogin_access.c30 /* Delimiters for fields and for lists of users, ttys or hosts. */
63 char *users; /* becomes list of login names */ local
101 || !(users = strtok_r(NULL, fs, &foo))
116 && list_match(users, &item, user_match));
/freebsd-9.3-release/crypto/heimdal/appl/rsh/
H A Dlogin_access.c30 /* Delimiters for fields and for lists of users, ttys or hosts. */
63 char *users; /* becomes list of login names */ local
101 || !(users = strtok_r(NULL, fs, &foo))
116 && list_match(users, &item, user_match));
/freebsd-9.3-release/lib/libpam/modules/pam_login_access/
H A Dlogin_access.c34 /* Delimiters for fields and for lists of users, ttys or hosts. */
59 char *users; /* becomes list of login names */ local
89 || !(users = strtok((char *) 0, fs))
102 && list_match(users, user, user_match));
/freebsd-9.3-release/release/
H A Dfixit.services14 systat 11/tcp users #Active Users
15 systat 11/udp users #Active Users
64 biff 512/udp comsat #used by mail system to notify users
/freebsd-9.3-release/contrib/cvs/src/
H A Dadmin.c31 "\t-a users Append (comma-separated) user names to access list.\n",
35 "\t-e[users] Remove (comma-separated) user names from access list\n",
706 char **users; local
716 line2argv (&argc, &users, arg + 2, " ,\t\n");
719 RCS_addaccess (rcs, users[u]);
724 RCS_delaccess (rcs, users[u]);
725 free_names (&argc, users);
745 line2argv (&argc, &users, p, " \t\n");
750 RCS_addaccess (rcs, users[u]);
751 free_names (&argc, users);
[all...]
/freebsd-9.3-release/tools/regression/acltools/
H A Drun168 my ($group, $passwd, $gid, $users) = split /:/;
169 foreach my $u (split /,/, $users) {
/freebsd-9.3-release/tools/tools/portsinfo/
H A Dportsinfo.sh22 The FreeBSD Ports Collection offers a simple way for users and
/freebsd-9.3-release/usr.sbin/lpr/lpd/
H A Dlpd.c55 * \3printer [users ...] [jobs ...]\n
57 * \4printer [users ...] [jobs ...]\n
59 * \5printer person [users ...] [jobs ...]\n
453 char *user[MAXUSERS]; /* users to process */
454 int users; /* # of users in user array */ variable
532 if (users >= MAXUSERS)
533 fatal(0, "Too many users");
534 user[users++] = cp;
569 if (users >
[all...]

Completed in 240 milliseconds

123