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

1234567891011>>

/macosx-10.9.5/Heimdal-323.92.1/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.9.5/CPANInternal-140/URI/URI/
H A Dftp.pm13 sub _user { shift->SUPER::user(@_); }
16 sub user subroutine
19 my $user = $self->_user(@_);
20 $user = "anonymous" unless defined $user;
21 $user;
29 my $user = $self->user;
30 if ($user eq 'anonymous' || $user e
[all...]
/macosx-10.9.5/ruby-104/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.9.5/postfix-252/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.9.5/ruby-104/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.9.5/apache-786.1/httpd/os/bs2000/
H A Dos.h37 extern pid_t os_fork(const char *user);
/macosx-10.9.5/Heimdal-323.92.1/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.9.5/OpenSSH-186/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.9.5/Heimdal-323.92.1/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.9.5/files-638.1.4/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.9.5/apache-786.1/httpd/os/unix/
H A Dos.h44 pid_t os_fork(const char *user);
/macosx-10.9.5/sudo-72/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.9.5/system_cmds-597.90.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.9.5/system_cmds-597.90.1/system_cmds-597.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.9.5/Heimdal-323.92.1/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.9.5/top-89.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.9.5/CPANInternal-140/URI/t/
H A Dpop.t9 print "not " unless $u->user eq "aas" &&
21 $u->user("gisle");
22 print "not " unless $u->user eq "gisle" &&
32 $u->user("aas");
41 $u->user(undef);
46 $u->user('f�r;k@l');
47 print "not " unless $u->user eq 'f�r;k@l' &&
/macosx-10.9.5/tcl-102/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.9.5/cups-372.4/cups/test/
H A Drun-stp-tests.sh25 echo Please run this as a normal user. Not supported when run as root.
179 user="$USER"
180 if test -z "$user"; then
182 user=`/usr/ucb/whoami`
184 user=`whoami`
187 if test -z "$user"; then
188 user="unknown"
226 VALGRIND="valgrind --tool=memcheck --log-file=/tmp/cups-$user/log/valgrind.%p --error-limit=no --leak-check=yes --trace-children=yes --read-var-info=yes"
231 echo "Using Valgrind; log files can be found in /tmp/cups-$user/log..."
260 echo "Enabling debug printfs (level 5); log files can be found in /tmp/cups-$user/lo
[all...]
/macosx-10.9.5/Heimdal-323.92.1/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...]

Completed in 186 milliseconds

1234567891011>>