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

1 2 3 4 5 6 7 8 91011>>

  /src/external/gpl2/xcvs/dist/contrib/
mfpipe.in 39 # 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);
log.in 97 my $users;
109 $users = "$users " . shift @ARGV;
155 if ($users) {
156 $mailcmd = "$mailcmd $users";
  /src/external/gpl3/gcc/dist/contrib/
git-add-user-branch.sh 41 git push users/${userpfx} ${start}:refs/users/${user}/heads/${branch}
42 git fetch -q users/${userpfx}
43 git branch ${userpfx}/${branch} remotes/users/${userpfx}/${branch}
46 echo " git push users/${userpfx} ${userpfx}/${branch}"
  /src/external/gpl3/gcc.old/dist/contrib/
git-add-user-branch.sh 41 git push users/${userpfx} ${start}:refs/users/${user}/heads/${branch}
42 git fetch -q users/${userpfx}
43 git branch ${userpfx}/${branch} remotes/users/${userpfx}/${branch}
46 echo " git push users/${userpfx} ${userpfx}/${branch}"
  /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/external/bsd/openldap/dist/tests/data/
slapd-valsort.conf 42 valsort-attr sn ou=users,o=valsort alpha-ascend
43 valsort-attr departmentNumber ou=users,o=valsort alpha-ascend
44 valsort-attr mailPreferenceOption ou=users,o=valsort numeric-ascend
45 valsort-attr ou ou=users,o=valsort weighted
46 valsort-attr employeeType ou=users,o=valsort weighted alpha-ascend
slapd-ldapgluegroups.conf 45 by users read
slapd-ldapgluepeople.conf 46 by users read
slapd-lload.conf 42 by users write
slapd-unique.conf 44 access to * by users write
  /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/external/bsd/kyua-cli/dist/utils/
passwd_test.cpp 117 std::vector< passwd_ns::user > users; local
118 users.push_back(passwd_ns::user("myself2", 20, 40));
119 users.push_back(passwd_ns::user("myself1", 10, 15));
120 users.push_back(passwd_ns::user("myself3", 30, 60));
121 passwd_ns::set_mock_users_for_testing(users);
149 std::vector< passwd_ns::user > users; local
150 users.push_back(passwd_ns::user("myself2", 20, 40));
151 users.push_back(passwd_ns::user("myself1", 10, 15));
152 users.push_back(passwd_ns::user("myself3", 30, 60));
153 passwd_ns::set_mock_users_for_testing(users);
    [all...]
passwd.cpp 55 /// If not empty, defines the current set of mock users.
186 /// Overrides the current set of users for testing purposes.
188 /// \param users The new users set. Cannot be empty.
190 passwd_ns::set_mock_users_for_testing(const std::vector< user >& users)
192 PRE(!users.empty());
193 mock_users = users;
  /src/external/bsd/openldap/dist/tests/scripts/
test023-refint 84 /dev/null 2>&1 'uid=george,ou=users,o=refint' 'uid=foster'
86 # 'uid=george,ou=users,o=refint' 'uid=foster'
123 dn: uid=foster,ou=users,o=refint
159 dn: uid=special,ou=users,o=refint
172 member: uid=alice,ou=users,o=refint
186 dn: uid=alice,ou=users,o=refint
204 member: uid=bill,ou=users,o=refint
205 member: uid=bob,ou=users,o=refint
206 member: uid=dave,ou=users,o=refint
207 member: uid=jorge,ou=users,o=refin
    [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/external/apache2/llvm/dist/llvm/lib/Analysis/
ValueLatticeUtils.cpp 31 return all_of(GV->users(), [&](User *U) {
32 // Currently all users of a global variable have to be none-volatile loads
HeatUtils.cpp 42 for (User *U : calledFunction.users()) {
  /src/external/bsd/byacc/dist/package/pkgsrc/
Makefile 9 MAINTAINER= pkgsrc-users@NetBSD.org
  /src/external/bsd/kyua-cli/dist/engine/
config_test.cpp 61 std::vector< passwd::user > users; local
62 users.push_back(passwd::user("user1", 100, 150));
63 users.push_back(passwd::user("user2", 200, 250));
64 passwd::set_mock_users_for_testing(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...]
  /src/external/apache2/llvm/dist/llvm/lib/Target/AMDGPU/
AMDGPUOpenCLEnqueuedBlockLowering.cpp 77 for (auto U : F->users()) {
97 for (auto UU : U->users())
125 for (auto U : F.users()) {
  /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/external/apache2/llvm/dist/llvm/tools/opt/
AnalysisWrappers.cpp 38 for (User *U : I->users()) {

Completed in 150 milliseconds

1 2 3 4 5 6 7 8 91011>>