HomeSort by: relevance | last modified time | path
    Searched defs:users (Results 1 - 9 of 9) sorted by relevancy

  /src/sys/external/bsd/drm2/dist/drm/nouveau/nvif/
nouveau_nvif_user.c 48 } users[] = { local in function:nvif_user_init
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/lpq/
lpq.c 70 char *user[MAXUSERS]; /* users to process */
71 int users; /* # of users in user array */ variable in typeref:typename:int
126 if (users >= MAXUSERS)
127 fatal("too many users");
128 user[users++] = *argv;
  /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 in typeref:typename:int
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/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 in function:login_access
109 || !(users = strtok((char *) 0, fs))
122 && list_match(users, user, user_match));
  /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 in typeref:typename:int
  /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/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 in typeref:typename:int
499 if (users >= MAXUSERS)
500 fatal("Too many users");
501 user[users++] = cp
    [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
  /src/sys/dev/nvmm/
nvmm.c 66 unsigned users; member in struct:__anone57f7f050108
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)
1048 suspension.users = 0;
1366 * Prevent new users (via ioctl) from starting.
1386 while (suspension.users)
    [all...]

Completed in 49 milliseconds