Searched refs:user (Results 1 - 25 of 646) sorted by relevance

1234567891011>>

/openbsd-current/usr.sbin/user/
H A DMakefile3 PROG= user
4 SRCS= user.c main.c
9 LINKS+= ${BINDIR}/user ${BINDIR}/useradd
10 LINKS+= ${BINDIR}/user ${BINDIR}/userdel
11 LINKS+= ${BINDIR}/user ${BINDIR}/usermod
12 LINKS+= ${BINDIR}/user ${BINDIR}/group
13 LINKS+= ${BINDIR}/user ${BINDIR}/groupadd
14 LINKS+= ${BINDIR}/user ${BINDIR}/groupdel
15 LINKS+= ${BINDIR}/user ${BINDIR}/groupmod
16 LINKS+= ${BINDIR}/user
[all...]
/openbsd-current/regress/usr.bin/ssh/unittests/misc/
H A Dtest_parse.c3 * Regress test for misc user/host/URI parsing functions.
25 char *user, *host, *path; local
29 &user, &host, &path), 0);
30 ASSERT_STRING_EQ(user, "someuser");
33 free(user); free(host); free(path);
38 &user, &host, &path), 0);
39 ASSERT_STRING_EQ(user, "someuser");
42 free(user); free(host); free(path);
47 &user, &host, &path), 0);
48 ASSERT_STRING_EQ(user, "someuse
[all...]
/openbsd-current/regress/usr.bin/ssh/
H A Daddrmatch.sh10 user="$1"; addr="$2"; host="$3"; laddr="$4"; lport="$5"
13 verbose "test $descr for $user $addr $host"
15 -C user=${user},addr=${addr},host=${host},laddr=${laddr},lport=${lport} | \
35 run_trial user 192.168.0.1 somehost 1.2.3.4 1234 match1 "first entry"
36 run_trial user 192.168.30.1 somehost 1.2.3.4 1234 nomatch "negative match"
37 run_trial user 19.0.0.1 somehost 1.2.3.4 1234 nomatch "no match"
38 run_trial user 10.255.255.254 somehost 1.2.3.4 1234 match1 "list middle"
39 run_trial user 192.168.30.1 192.168.0.1 1.2.3.4 1234 nomatch "faked IP in hostname"
40 run_trial user 1.
[all...]
/openbsd-current/usr.bin/tmux/
H A Dserver-acl.c63 /* Find user entry. */
94 /* Allow a user. */
98 struct server_acl_user *user; local
100 user = server_acl_user_find(uid);
101 if (user == NULL) {
102 user = xcalloc(1, sizeof *user);
103 user->uid = uid;
104 RB_INSERT(server_acl_entries, &server_acl_entries, user);
108 /* Deny a user (remov
112 struct server_acl_user *user; local
125 struct server_acl_user *user; local
144 struct server_acl_user *user; local
166 struct server_acl_user *user; local
183 server_acl_get_uid(struct server_acl_user *user) argument
[all...]
/openbsd-current/gnu/llvm/llvm/utils/TableGen/jupyter/tablegen_kernel/
H A Dinstall.py10 def install_my_kernel_spec(user=True, prefix=None):
11 """Install the kernel spec for user in given prefix."""
15 os.path.join(pkgroot, "assets"), "tablegen", user=user, prefix=prefix
20 """Returns whether the current user is root."""
35 "--user", help="Install in user home directory", action="store_true"
43 user = args.user or not _is_root()
46 install_my_kernel_spec(user
[all...]
/openbsd-current/usr.bin/skey/
H A Dskeyprune.pl51 while (defined($user = readdir(SKEYDIR))) {
52 next if $user =~ /^\./;
53 if (!sysopen(SKEY, $user, 0, O_RDWR | O_NONBLOCK | O_NOFOLLOW)) {
54 warn "$0: Can't open $user: $!\n";
58 warn "$0: Can't lock $user: $!\n";
64 warn "$0: Can't stat $user: $!\n";
71 warn "$0: $user is not a regular file\n";
76 printf STDERR ("%s: Bad mode for %s: 0%o\n", $0, $user,
82 printf STDERR ("%s: Bad link count for %s: %d\n", $0, $user,
90 unlink($user) || war
[all...]
/openbsd-current/usr.sbin/cron/
H A Dfuncs.h26 job_add(entry *, user *),
27 job_remove(entry *, user *),
29 free_user(user *),
37 pid_t do_command(entry *, user *);
54 user *load_user(FILE *, struct passwd *, const char *),
H A DMakefile4 SRCS= cron.c database.c user.c entry.c job.c do_command.c \
/openbsd-current/regress/usr.sbin/snmpd/
H A Dsnmpd.conf17 user noauthpriv
18 user auth_md5 authkey testpass auth hmac-md5
19 user auth_sha1 authkey testpass auth hmac-sha1
20 user auth_sha224 authkey testpass auth hmac-sha224
21 user auth_sha256 authkey testpass auth hmac-sha256
22 user auth_sha384 authkey testpass auth hmac-sha384
23 user auth_sha512 authkey testpass auth hmac-sha512
24 user authpriv_md5_des authkey testpass auth hmac-md5 enckey testpass enc des
25 user authpriv_md5_aes authkey testpass auth hmac-md5 enckey testpass enc aes
26 user authpriv_sha1_de
[all...]
/openbsd-current/regress/bin/ps/
H A DMakefile3 REGRESS_TARGETS= valid_keywords invalid_keywords command cwd user
22 user: shortsleep
23 sh ${.CURDIR}/user.sh
/openbsd-current/sys/sys/
H A Duser.h1 /* $OpenBSD: user.h,v 1.9 2014/07/08 23:31:22 deraadt Exp $ */
2 /* $NetBSD: user.h,v 1.10 1996/04/09 20:55:49 cgd Exp $ */
32 * @(#)user.h 8.2 (Berkeley) 9/23/93
46 struct user { struct
/openbsd-current/gnu/usr.bin/gcc/gcc/testsuite/g++.old-deja/g++.mike/
H A Dp11110.C11 class user { class
18 data* user::data1() const {
/openbsd-current/lib/libpanel/
H A Dp_user.c38 * Set/Get panels user pointer
50 pan->user = uptr;
58 returnCVoidPtr(pan ? pan->user : (NCURSES_CONST void *)0);
H A Dpanel.c83 text, USER_PTR(pan->user, 1),
84 (pan->below) ? USER_PTR(pan->below->user, 2) : "--",
85 (pan->above) ? USER_PTR(pan->above->user, 3) : "--",
103 (_nc_bottom_panel) ? USER_PTR(_nc_bottom_panel->user, 1) : "--",
104 (_nc_top_panel) ? USER_PTR(_nc_top_panel->user, 2) : "--");
106 _tracef("pan id=%s", USER_PTR(pan->user, 1));
/openbsd-current/usr.sbin/amd/amd/
H A Dinfo_passwd.c81 * /anydir/dom1/dom2/dom3/user
84 * rfs:=/anydir/dom3;rhost:=dom3.dom2.dom1;sublink:=user
90 char *user, *p, *q; local
94 * Find user name. If no / then Invalid...
96 user = strrchr(dir, '/');
97 if (!user)
99 *user++ = '\0';
127 if (*rhost == '\0' || *user == '\0' || *dir == '\0')
137 dir, rhost, rhost, user, pw->pw_dir);
/openbsd-current/usr.bin/finger/
H A Dfinger.c47 * certain fields (e.g. the full user name, office, and phone numbers) are
52 * per user and displays login name, tty, login time, real name, idle time,
169 struct utmp user; local
176 while (fread((char *)&user, sizeof(user), 1, stdin) == 1) {
177 if (!user.ut_name[0])
179 if ((pn = find_person(user.ut_name)) == NULL) {
180 bcopy(user.ut_name, name, UT_NAMESIZE);
185 enter_where(&user, pn);
198 struct utmp user; local
[all...]
/openbsd-current/gnu/gcc/gcc/
H A Dbt-load.c335 /* Create a new target register user structure, for a use in block BB,
336 instruction INSN. Return the new user. */
346 btr_user user = NULL;
360 user = obstack_alloc (&migrate_btrl_obstack, sizeof (struct btr_user_s));
361 user->bb = bb;
362 user->luid = insn_luid;
363 user->insn = insn;
364 user->use = use;
365 user->other_use_this_block = 0;
366 user
345 btr_user user = NULL; local
408 btr_user user; local
516 btr_user user; local
532 btr_user user = new_btr_user (bb, insn_luid, insn); local
691 btr_user user = use_array[insn_uid]; local
825 btr_user user; local
1018 btr_user user; local
1081 btr_user user; local
1165 btr_user user; local
1284 btr_user user; local
[all...]
/openbsd-current/usr.sbin/smtpd/
H A Daliases.c45 /* first, check if entry has a user-part tag */
56 /* no user-part tag, try looking up user */
86 char user[LINE_MAX]; local
98 if (!bsnprintf(user, sizeof(user), "%s", maddr->user))
102 xlowercase(user, user, sizeof(user));
[all...]
/openbsd-current/etc/
H A Dpf.conf13 # Port build user does not need network
14 block return out log proto {tcp udp} user _pbuild
/openbsd-current/regress/usr.sbin/syslogd/
H A Dargs-ttymsg-wall.pl7 # Find the message in client, file, pipe, console, user, syslogd, server log.
8 # Check that the special message is in the user's tty log twice.
25 user => {
/openbsd-current/usr.sbin/chroot/
H A Dchroot.c56 char *user, *group, *grouplist; local
64 user = grouplist = NULL;
68 user = optarg;
69 if (*user == '\0')
87 if (user != NULL) {
88 if ((pwd = getpwnam(user)) == NULL)
89 errx(1, "no such user `%s'", user);
91 err(1, "unable to get login class for `%s'", user);
145 (void)fprintf(stderr, "usage: %s [-g group,group,...] [-u user] "
[all...]
/openbsd-current/lib/libfido2/src/
H A Dtouch.c19 fido_user_t user; local
27 memset(&user, 0, sizeof(user));
38 (user.name = strdup(FIDO_DUMMY_USER_NAME)) == NULL) {
43 if (fido_blob_set(&user.id, &user_id, sizeof(user_id)) < 0) {
50 (argv[2] = cbor_encode_user_entity(&user)) == NULL ||
76 free(user.name);
77 free(user.id.ptr);
/openbsd-current/gnu/usr.bin/binutils/gas/config/
H A Dtc-h8500.c633 the user*/
636 h8500_operand_info *user = operands + i; local
642 if (user->type == RNIND_D8 && user->reg == 6)
644 displacement = user->exp;
649 if (user->type == RNIND_D16)
651 displacement = user->exp;
652 rd = user->reg;
657 if (user->type == RNIND_D8)
659 displacement = user
[all...]
/openbsd-current/gnu/usr.bin/binutils/bfd/hosts/
H A Dsymmetry.h10 #define TRAD_CORE_USER_OFFSET ((UPAGES * NBPG) - sizeof (struct user))
/openbsd-current/gnu/usr.bin/binutils-2.17/bfd/hosts/
H A Dsymmetry.h10 #define TRAD_CORE_USER_OFFSET ((UPAGES * NBPG) - sizeof (struct user))

Completed in 206 milliseconds

1234567891011>>