Searched refs:user (Results 101 - 125 of 834) sorted by relevance

1234567891011>>

/netbsd-6-1-5-RELEASE/sys/arch/m68k/m68k/
H A Dcompat_16_sigreturn14.s55 moveml #0xFFFF,%sp@- | save user registers
56 movl %usp,%a0 | save the user SP
62 movl %a0,%usp | user SP
78 moveml %sp@+,#0x7FFF | restore user registers
/netbsd-6-1-5-RELEASE/lib/libpam/modules/pam_nologin/
H A Dpam_nologin.c78 const char *user, *nologin; local
82 if ((retval = pam_get_user(pamh, &user, NULL)) != PAM_SUCCESS)
85 PAM_LOG("Got user: %s", user);
95 if (getpwnam_r(user, &pwres, pwbuf, sizeof(pwbuf), &pwd) != 0 ||
/netbsd-6-1-5-RELEASE/crypto/external/bsd/heimdal/dist/lib/gssapi/ntlm/
H A Dimport_name.c91 n->user = strdup(name);
96 if (n->user == NULL || n->domain == NULL) {
97 free(n->user);
H A Ddisplay_name.c64 len = asprintf(&str, "%s@%s", n->user, n->domain);
/netbsd-6-1-5-RELEASE/external/bsd/libbind/dist/irs/
H A Dnis_ng.c67 const char * user; member in struct:tmpgrp
138 ng_next(struct irs_ng *this, const char **host, const char **user, const char **domain) { argument
144 *user = pvt->cur->user;
152 const char *host, const char *user, const char *domain)
161 (!user || !cur->user || !strcmp(user, cur->user)) &&
258 tmp->user
151 ng_test(struct irs_ng *this, const char *name, const char *host, const char *user, const char *domain) argument
[all...]
/netbsd-6-1-5-RELEASE/external/gpl2/lvm2/dist/daemons/dmeventd/
H A Dlibdevmapper-event.h103 void process_event(struct dm_task *dmt, enum dm_event_mask evmask, void **user);
104 int register_device(const char *device_name, const char *uuid, int major, int minor, void **user);
106 int minor, void **user);
/netbsd-6-1-5-RELEASE/external/gpl2/lvm2/dist/include/
H A Dlibdevmapper-event.h103 void process_event(struct dm_task *dmt, enum dm_event_mask evmask, void **user);
104 int register_device(const char *device_name, const char *uuid, int major, int minor, void **user);
106 int minor, void **user);
/netbsd-6-1-5-RELEASE/sys/arch/sh3/include/
H A Ddb_machdep.h76 #define DB_VALID_ADDRESS(addr, user) \
77 ((!(user) && DB_VALID_KERN_ADDR(addr)) || \
78 ((user) && (addr) < VM_MAX_ADDRESS))
/netbsd-6-1-5-RELEASE/external/ibm-public/postfix/dist/src/virtual/
H A Ddeliver_attr.c62 attrp->user = 0;
80 msg_info("user: %s", attrp->user ? attrp->user : "null");
/netbsd-6-1-5-RELEASE/gnu/dist/gettext/gettext-tools/src/
H A Duser-email.sh.in2 # Prints the user's email address, with confirmation from the user.
68 # Find the user name on the local machine.
69 user=`id -u -n 2>/dev/null`
70 if test -z "$user"; then
71 user="$USER"
72 if test -z "$user"; then
73 user="$LOGNAME"
74 if test -z "$user"; then
75 user
[all...]
/netbsd-6-1-5-RELEASE/usr.sbin/rpc.pcnfsd/
H A Dpcnfsd.x3 /* The maximum number of bytes in a user name argument */
11 /* The maximum number of bytes in a print user name argument */
40 ** The type ident is used for passing an encoded user name for
74 ** The type username is used for passing the user name for a print job.
83 ** may be used by displayed to a human user or used for custom
104 ** The type homedir is used to return the home directory for the user.
206 ** PC_RES_NOT_OWNER means that the user does not have permission to
289 username user;
329 username user;
361 username user;
[all...]
/netbsd-6-1-5-RELEASE/sbin/reboot/
H A Dreboot.c72 const char *user; local
147 if ((user = getlogin()) == NULL)
148 user = (pw = getpwuid(getuid())) ?
152 syslog(LOG_CRIT, "halted by %s", user);
155 syslog(LOG_CRIT, "powered off by %s", user);
159 syslog(LOG_CRIT, "rebooted by %s: %s", user,
162 syslog(LOG_CRIT, "rebooted by %s", user);
205 * single-user mode.
/netbsd-6-1-5-RELEASE/external/ibm-public/postfix/dist/src/spawn/
H A Dspawn.c53 /* commands as the specified user. It is therefore security sensitive.
189 char *user; /* user name */ local
195 user = 0;
211 * user=username[:groupname]
213 if (strncasecmp("user=", *argv, sizeof("user=") - 1) == 0) {
214 user = *argv + sizeof("user=") - 1;
215 if ((group = split_at(user, '
[all...]
/netbsd-6-1-5-RELEASE/sys/arch/m68k/060sp/dist/
H A Dos.s66 # Each IO routine checks to see if the memory write/read is to/from user
69 # for user mode applications.
85 # a1 - user destination address
87 # 0x4(%a6),bit5 - 1 = supervisor mode, 0 = user mode
103 mov.l %a1,-(%sp) # pass: user dst
105 bsr.l _copyout # write byte to user mem
116 # a0 - user source address
119 # 0x4(%a6),bit5 - 1 = supervisor mode, 0 = user mode
138 mov.l %a0,-(%sp) # pass: user src
139 bsr.l _copyin # read byte from user me
[all...]
/netbsd-6-1-5-RELEASE/crypto/external/bsd/openssh/dist/
H A Dauth-rhosts.c59 char buf[1024]; /* Must not be larger than host, user, dummy below. */
83 char hostbuf[1024], userbuf[1024], dummy[1024], *host, *user, *cp; local
112 /* Got both host and user name. */
123 user = userbuf;
133 if (user[0] == '-') {
135 user++;
136 } else if (user[0] == '+')
137 user++;
139 /* Check for empty host/user names (particularly '+'). */
140 if (!host[0] || !user[
[all...]
H A Dauth1.c130 * Read user password. It is in plain text, but was
216 * Get client user name. Note that we just have to
218 * claim to be any user.
301 * read packets, try to authenticate the user and
313 authctxt->valid ? "" : "invalid user ", authctxt->user);
315 /* If the user has no password, accept authentication immediately. */
368 fatal("INTERNAL ERROR: authenticated invalid user %s",
369 authctxt->user);
382 error("Access denied for user
421 char *user, *style = NULL; local
[all...]
/netbsd-6-1-5-RELEASE/crypto/external/bsd/openssl/dist/test/
H A Dtestss.com33 $ define/user sys$output nla0:
52 $ define /user sys$output err.ss
62 $ define /user sys$output err.ss
93 $ define /user sys$output err.ss
103 $ define /user sys$output err.ss
120 $ write sys$output "The generated user certificate is ",Ucert
121 $ write sys$output "The generated user private key is ",Ukey
/netbsd-6-1-5-RELEASE/crypto/external/bsd/heimdal/dist/lib/otp/
H A Dotp_db.c97 key.dsize = strlen(ctx->user);
98 key.dptr = ctx->user;
115 key.dsize = strlen(ctx->user);
116 key.dptr = ctx->user;
189 key.dsize = strlen(ctx->user);
190 key.dptr = ctx->user;
/netbsd-6-1-5-RELEASE/external/bsd/wpa/dist/src/ap/
H A Dap_config.c129 conf->fragm_threshold = -1; /* user driver default: 2346 */
322 static void hostapd_config_free_eap_user(struct hostapd_eap_user *user) argument
324 os_free(user->identity);
325 os_free(user->password);
326 os_free(user);
343 struct hostapd_eap_user *user, *prev_user; local
362 user = conf->eap_user;
363 while (user) {
364 prev_user = user;
365 user
558 struct hostapd_eap_user *user = conf->eap_user; local
[all...]
/netbsd-6-1-5-RELEASE/external/bsd/cron/dist/
H A Duser.c26 static char rcsid[] = "Id: user.c,v 1.5 2004/01/23 18:56:43 vixie Exp";
28 +__RCSID("$NetBSD: user.c,v 1.4 2005/03/16 02:53:55 xtraeme Exp $");
38 free_user(user *u) {
49 user *
53 user *u;
65 /* file is open. build user entry, then read the crontab file.
/netbsd-6-1-5-RELEASE/external/bsd/wpa/dist/src/eap_server/
H A Deap_server.c33 static void eap_user_free(struct eap_user *user);
87 * eap_user_get - Fetch user information from the database
89 * @identity: Identity (User-Name) of the user
91 * @phase2: 0 = EAP phase1 user, 1 = EAP phase2 (tunneled) user
94 * This function is used to fetch user information for EAP. The user will be
95 * selected based on the specified identity. sm->user and
96 * sm->user_eap_method_index are updated for the new user when a matching user
102 struct eap_user *user; local
1197 eap_user_free(struct eap_user *user) argument
[all...]
/netbsd-6-1-5-RELEASE/external/ibm-public/postfix/dist/src/local/
H A Ddeliver_attr.c66 attrp->user = 0;
91 msg_info("user: %s", attrp->user ? attrp->user : "null");
/netbsd-6-1-5-RELEASE/external/bsd/bind/dist/lib/isc/win32/
H A Dntgroups.c24 * not normally seen: None and Everyone. A user account belongs to
69 wchar_t user[MAX_NAME_LENGTH]; local
71 retlen = mbstowcs(user, username, MAX_NAME_LENGTH);
80 * groups in which the user is indirectly a member.
83 user,
137 user,
/netbsd-6-1-5-RELEASE/external/bsd/bind/dist/unit/atf-src/atf-c/detail/
H A DMakefile.am.inc47 atf-c/detail/user.c \
48 atf-c/detail/user.h
/netbsd-6-1-5-RELEASE/external/bsd/ntp/dist/lib/isc/win32/
H A Dntgroups.c24 * not normally seen: None and Everyone. A user account belongs to
69 wchar_t user[MAX_NAME_LENGTH]; local
71 retlen = mbstowcs(user, username, MAX_NAME_LENGTH);
80 * groups in which the user is indirectly a member.
83 user,
137 user,

Completed in 319 milliseconds

1234567891011>>