HomeSort by: relevance | last modified time | path
    Searched refs:users (Results 1 - 25 of 40) sorted by relevancy

1 2

  /src/usr.bin/users/
Makefile 6 PROG= users
7 SRCS= users.c utmpentry.c
  /src/sys/external/bsd/drm2/dist/drm/nouveau/nvif/
nouveau_nvif_user.c 48 } users[] = { local
57 cid = nvif_mclass(&device->object, users);
61 ret = nvif_object_init(&device->object, 0, users[cid].oclass, NULL, 0,
67 device->user.func = users[cid].func;
  /src/usr.sbin/lpr/lprm/
lprm.c 51 * and startup a new daemon. Privileged 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;
137 if (users < 0)
144 if (users >= MAXUSERS)
145 fatal("Too many users");
146 user[users++] = arg
    [all...]
  /src/usr.sbin/lpr/lpq/
lpq.c 70 char *user[MAXUSERS]; /* users to process */
71 int users; /* # of users in user array */ variable
126 if (users >= MAXUSERS)
127 fatal("too many users");
128 user[users++] = *argv;
  /src/sys/sys/
entropy.h 36 #error This header is known to the state of California to cause cancer in users.
  /src/usr.sbin/lpr/common_source/
rmjob.c 62 extern char *user[]; /* users to process */
63 extern int users; /* # of users in user array */
91 if (users < 0) {
96 users = 1;
255 if (users == 0 && requests == 0)
268 for (u = user; u < &user[users]; u++)
278 * Normal users can only remove the file from where it was sent.
315 for (i = 0; i < users; i++) {
330 for (i = 0; i < users; i++)
    [all...]
displayq.c 69 extern char *user[]; /* users to process */
70 extern int users; /* # of users in user array */
230 i < users && cp - line + 1 + strlen(user[i]) < sizeof(line) - 2;
369 if (users == 0 && requests == 0)
374 for (u = user; u < &user[users]; u++)
  /src/usr.sbin/quot/
quot.c 206 } *users; variable in typeref:struct:user
217 if (!(users = calloc(nusers, sizeof(*users))))
218 err(1, "allocate users");
220 for (usr = users, i = nusers; --i >= 0; usr++) {
234 svusr = users;
236 if (!(users = calloc(nusers, sizeof(*users))))
237 err(1, "allocate users");
239 for (usrn = users + (usr->uid&(nusers - 1))
    [all...]
  /src/lib/libpam/modules/pam_login_access/
login_access.c 40 /* Delimiters for fields and for lists of users, ttys or hosts. */
79 char *users; /* becomes list of login names */ local
109 || !(users = strtok((char *) 0, fs))
122 && list_match(users, user, user_match));
  /src/share/man/man7/
Makefile 36 MAN+= users.7
  /src/distrib/utils/embedded/files/
ec2_init 52 useradd -g users -G wheel,operator -m "${EC2_USER}"
91 chown "${EC2_USER}:users" $(dirname "$SSH_KEY_FILE")
93 chown "${EC2_USER}:users" "$SSH_KEY_FILE"
  /src/games/dm/
dm.c 77 static int users(void);
225 if (isdigit((unsigned char)*s_users) && atoi(s_users) <= users())
226 errx(0, "Sorry, there are too many users logged on right now.");
246 * users --
247 * return current number of users
252 users(void) function
  /src/usr.sbin/lpr/lpd/
lpd.c 57 * \3printer [users ...] [jobs ...]\n
59 * \4printer [users ...] [jobs ...]\n
61 * \5printer person [users ...] [jobs ...]\n
73 * access files and printer. Users can't get to anything
415 char *user[MAXUSERS]; /* users to process */
416 int users; /* # of users in user array */ variable
499 if (users >= MAXUSERS)
500 fatal("Too many users");
501 user[users++] = cp
    [all...]
  /src/sys/dev/nvmm/
nvmm.c 66 unsigned users; member in struct:__anon2
95 KASSERT(suspension.users < UINT_MAX);
96 suspension.users++;
110 KASSERT(suspension.users < UINT_MAX);
111 suspension.users++;
120 KASSERT(suspension.users > 0);
121 if (--suspension.users == 0)
1069 suspension.users = 0;
1387 * Prevent new users (via ioctl) from starting.
1407 while (suspension.users)
    [all...]
  /src/sys/ufs/chfs/
ebh.h 111 * @users: counts the tasks that are using or want to use the eraseblock
117 int users; member in struct:chfs_ltree_entry
ebh.c 593 le->users = 1;
603 result->users++;
640 * lock tree is there are no more users of it.
653 le->users -= 1;
654 KASSERT(le->users >= 0);
656 if (le->users == 0) {
696 * lock tree is there are no more users of it.
709 le->users -= 1;
710 KASSERT(le->users >= 0);
712 if (le->users == 0)
    [all...]
  /src/usr.bin/
Makefile 33 uniq units unvis unzip users utoppya \
  /src/distrib/evbsh3/rom/ramdiskcommon/
ramdiskbin.conf 46 progs uniq users vmstat w wc who xargs yes
  /src/tests/usr.bin/id/
t_id.sh 44 echo "uid=100(test) gid=100(users) groups=100(users),0(wheel)" >expout
54 echo "uid=100(test) gid=100(users) euid=0(root) egid=0(wheel) groups=100(users),0(wheel)" >expout
97 echo "users wheel" >expout
129 echo "users" >expout
145 echo "users" >expout
152 echo "users" >expout
167 echo "users" >expout
174 echo "users" >expou
    [all...]
  /src/usr.sbin/ac/
ac.c 57 * this is for our list of users that are accumulating time.
81 static struct user_list *Users = NULL;
94 #define AC_U 8 /* specified users only */
256 * not found so add new user unless specified users only
310 Users = update_user(Users, argv[optind], 0L);
353 show_today(struct user_list *users, struct utmp_list *logins, time_t secs)
368 Users = update_user(Users, lp->usr.ut_name, secs);
372 for (up = users; up != NULL; up = up->next)
    [all...]
  /src/share/examples/puffs/pgfs/
newfs.sql 56 -- filetype and the dirent table. however, users expect that getattr is
  /src/sys/arch/x86/acpi/
acpi_wakeup.c 108 #error acpi_wakeup.c (acpi_md_vesa_modenum) users must be adapted for Xen
  /src/sys/arch/luna68k/stand/boot/
locore.S 562 movl %a1,%sp@(60) | the users SP
612 movl %a1,%sp@(60) | the users SP
  /src/usr.bin/crunch/examples/
really-big.conf 51 progs tty ul uname unexpand unifdef uniq units unvis users uudecode uuencode
  /src/sys/arch/cesfic/cesfic/
locore.s 655 movl %a1,%sp@(FR_SP) | the users SP
696 movl %a1,%sp@(FR_SP) | the users SP

Completed in 604 milliseconds

1 2