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

1234567891011>>

/macosx-10.10/Heimdal-398.1.2/lib/roken/
H A Dget_default_username.c46 const char *user; local
48 user = getenv ("USER");
49 if (user == NULL)
50 user = getenv ("LOGNAME");
51 if (user == NULL)
52 user = getenv ("USERNAME");
55 if (user == NULL) {
56 user = (const char *)getlogin ();
57 if (user != NULL)
58 return user;
[all...]
H A Dinnetgr.c40 const char *user, const char *domain)
39 innetgr(const char *netgroup, const char *machine, const char *user, const char *domain) argument
H A Dk_getpwnam.c42 k_getpwnam (const char *user) argument
46 p = getpwnam (user);
52 spwd = getspnam (user);
/macosx-10.10/ruby-106/ruby/lib/webrick/httpauth/
H A Duserdb.rb14 # User database mixin for HTTPAuth. This mixin dispatches user record
28 # Creates an obscured password in +realm+ with +user+ and +password+
31 def make_passwd(realm, user, pass)
32 @auth_type::make_passwd(realm, user, pass)
36 # Sets a password in +realm+ with +user+ and +password+ for the
39 def set_passwd(realm, user, pass)
40 self[user] = pass
44 # Retrieves a password in +realm+ for +user+ for the auth_type of this
47 def get_passwd(realm, user, reload_db=false)
48 make_passwd(realm, user, sel
[all...]
H A Dhtdigest.rb56 user, realm, pass = line.split(/:/, 3)
60 @digest[realm][user] = pass
84 # Retrieves a password from the database for +user+ in +realm+. If
87 def get_passwd(realm, user, reload_db)
90 hash[user]
95 # Sets a password in the database for +user+ in +realm+ to +pass+.
97 def set_passwd(realm, user, pass)
102 @digest[realm][user] = make_passwd(realm, user, pass)
107 # Removes a password from the database for +user
[all...]
H A Dhtpasswd.rb25 # To create an Htpasswd database with a single user:
58 user, pass = line.split(":")
65 @passwd[user] = pass
89 # Retrieves a password from the database for +user+ in +realm+. If
92 def get_passwd(realm, user, reload_db)
94 @passwd[user]
98 # Sets a password in the database for +user+ in +realm+ to +pass+.
100 def set_passwd(realm, user, pass)
101 @passwd[user] = make_passwd(realm, user, pas
[all...]
/macosx-10.10/postfix-255/postfix/src/smtpd/
H A Dsmtpd_check_dsn.in39 mail user@4.1.1_dsn
40 mail user@4.1.2_dsn
41 mail user@4.1.3_dsn
42 mail user@4.1.4_dsn
43 mail user@4.1.5_dsn
44 mail user@4.1.6_dsn
45 mail user@4.1.7_dsn
46 mail user@4.1.8_dsn
47 mail user@4.4.0_dsn
52 rcpt user
[all...]
/macosx-10.10/ruby-106/ruby/lib/rake/contrib/
H A Drubyforgepublisher.rb6 attr_reader :project, :proj_id, :user
8 def initialize(projname, user)
10 "#{user}@rubyforge.org",
/macosx-10.10/apache-793/httpd/os/bs2000/
H A Dos.h37 extern pid_t os_fork(const char *user);
/macosx-10.10/Heimdal-398.1.2/lib/gssapi/krb5/
H A Dauthorize_localname.c43 char *user; local
51 user = malloc(user_name->length + 1);
52 if (user == NULL) {
57 memcpy(user, user_name->value, user_name->length);
58 user[user_name->length] = '\0';
61 user_ok = krb5_kuserok(context, princ, user);
63 free(user);
/macosx-10.10/OpenSSH-189/openssh/regress/
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...]
/macosx-10.10/Heimdal-398.1.2/lib/krb5/
H A Dget_default_principal.c43 const char *user = getenv("USER"); local
44 if(user == NULL)
45 user = getenv("LOGNAME");
46 if(user == NULL)
47 user = getenv("USERNAME");
48 return user;
64 const char *user; local
71 user = getlogin();
72 if(user == NULL)
73 user
[all...]
/macosx-10.10/files-662.1.1/System/Library/DirectoryServices/DefaultLocalDB/Default/
H A Dusers.py12 def printuser(user):
13 name = deref(user["name"])
14 uid = deref(user["uid"])
15 gid = deref(user["gid"])
16 realname = deref(user["realname"])
17 home = deref(user["home"])
18 shell = deref(user["shell"])
37 # in single-user mode. At other times this information is provided by
44 for user in users:
45 printuser(user)
[all...]
/macosx-10.10/sudo-73/src/
H A Dnonunix.h41 sudo_nonunix_groupcheck( const char* group, const char* user, const struct passwd* pwd );
H A Daix.c69 aix_getlimit(user, lim, valp)
70 char *user;
76 if (getuserattr(user, lim, &val, SEC_INT) != 0)
83 aix_setlimits(user)
84 char *user;
94 * For each resource limit, get the soft/hard values for the user
102 if (aix_getlimit(user, aix_limits[n].hard, &val) == 0) {
104 if (aix_getlimit(user, aix_limits[n].soft, &val) == 0)
110 if (aix_getlimit(user, aix_limits[n].soft, &val) == -1)
135 * Look up administrative domain for user (SYSTE
[all...]
/macosx-10.10/system_cmds-643.1.1/nologin.tproj/
H A Dnologin.c39 const char *user, *tt; local
43 if ((user = getlogin()) == NULL)
44 user = "UNKNOWN";
46 syslog(LOG_CRIT, "Attempted login by %s on %s", user, tt);
/macosx-10.10/Heimdal-398.1.2/appl/popper/
H A Dpop_user.c11 * user: Prompt for the user name at the start of a POP session
17 strlcpy(p->user, p->pop_parm[1], sizeof(p->user));
23 if(otp_challenge (&p->otp_ctx, p->user, ss, sizeof(ss)) == 0)
25 ss, p->user);
34 return pop_msg(p, POP_SUCCESS, "Password required for %s.", p->user);
/macosx-10.10/top-100.1.2/
H A Duser.c27 #include "user.h"
32 const char *user; local
34 user = libtop_username(psamp->uid);
35 if(NULL == user) {
36 user = "";
39 return generic_insert_cell(s, user);
/macosx-10.10/tcl-105/tcl_ext/tcllib/tcllib/modules/pop3d/
H A Dpop3d_udb.tcl4 # Implementation of a simple user database for the pop3 server
16 # One array per object containing the db contents. Keyed by user name.
41 # Create a new user database with a given name; if no name is given, use
45 # name name of the user database; if null, generate one.
48 # name name of the user database created
61 unable to create user database"
66 variable user ; array set user {}
70 # Create the command to manipulate the user database
81 # Command that processes all user databas
[all...]
/macosx-10.10/Heimdal-398.1.2/appl/otp/
H A Dotp.c44 static char *user; variable
55 { "user", 'u', arg_string, &user,
56 "user other than current user (root only)", "user" },
71 * Renew the OTP for a user.
76 renew (int argc, char **argv, OtpAlgorithm *alg, char *user) argument
85 newctx.user = user;
139 set(int argc, char **argv, OtpAlgorithm *alg, char *user) argument
181 delete_otp(int argc, char **argv, char *user) argument
202 has_an_otp(char *user) argument
226 print_otp_entry_for_name(void *db, char *user) argument
245 open_otp(int argc, char **argv, char *user) argument
268 list_otps(int argc, char **argv, char *user) argument
[all...]
/macosx-10.10/Heimdal-398.1.2/lib/otp/
H A Dotp_challenge.c42 otp_challenge (OtpContext *ctx, char *user, char *str, size_t len) argument
49 ctx->user = strdup(user);
50 if (ctx->user == NULL) {
/macosx-10.10/apache-793/httpd/os/unix/
H A Dos.h48 pid_t os_fork(const char *user);
/macosx-10.10/bind9-45.101/bind9/bin/confgen/include/confgen/
H A Dos.h29 int set_user(FILE *fd, const char *user);
31 * Set the owner of the file referenced by 'fd' to 'user'.
34 * -1 insufficient permissions, or 'user' does not exist.
/macosx-10.10/bind9-45.101/bind9/bin/rndc/include/rndc/
H A Dos.h30 int set_user(FILE *fd, const char *user);
32 * Set the owner of the file referenced by 'fd' to 'user'.
35 * -1 insufficient permissions, or 'user' does not exist.
/macosx-10.10/ruby-106/ruby/sample/
H A Dtime.rb9 user = tms.cutime
12 STDERR.printf("%11.1f real %11.1f user %11.1f sys\n", real, user, sys)

Completed in 182 milliseconds

1234567891011>>