Searched refs:user (Results 26 - 50 of 1496) sorted by relevance

1234567891011>>

/macosx-10.10/Heimdal-398.1.2/lib/gssapi/mech/
H A Dgss_authorize_localname.c36 sizeof("local-login-user") - 1,
37 "local-login-user"
43 const struct _gss_name *user)
58 &user->gn_value,
59 &user->gn_type);
73 const struct _gss_name *user)
78 if (!gss_oid_equal(&user->gn_type, GSS_C_NT_USER_NAME))
102 value.length == user->gn_value.length &&
103 memcmp(value.value, user->gn_value.value, user
41 mech_authorize_localname(OM_uint32 *minor_status, const struct _gss_name *name, const struct _gss_name *user) argument
71 attr_authorize_localname(OM_uint32 *minor_status, const struct _gss_name *name, const struct _gss_name *user) argument
122 const struct _gss_name *user = (const struct _gss_name *) gss_user; local
166 gss_userok(const gss_name_t name, const char *user) argument
[all...]
/macosx-10.10/CPANInternal-159.1/Class-DBI-v3.0.17/t/testlib/
H A DPgBase.pm7 my $user = $ENV{DBD_PG_USER} || 'postgres';
10 __PACKAGE__->connection("dbi:Pg:dbname=$db", $user, $pass,
/macosx-10.10/curl-83.1.2/curl/lib/
H A Dfileinfo.c44 void Curl_fileinfo_dtor(void *user, void *element) argument
47 (void) user;
/macosx-10.10/ncurses-44/ncurses/panel/
H A Dp_user.c35 * Set/Get panels user pointer
47 pan->user = uptr;
55 returnCVoidPtr(pan ? pan->user : (NCURSES_CONST void *)0);
/macosx-10.10/Heimdal-398.1.2/lib/krb5/
H A Dtest_alname.c39 const char *user, const char *inst,
47 ret = krb5_make_principal(context, &p, realm, user, inst, NULL);
104 char *user; local
123 errx(1, "first argument should be a local user that in root .k5login");
125 user = argv[0];
135 test_alname(context, realm, user, NULL, user, 1);
136 test_alname(context, realm, user, "root", "root", 1);
138 test_alname(context, "FOO.BAR.BAZ.KAKA", user, NULL, user,
38 test_alname(krb5_context context, krb5_const_realm realm, const char *user, const char *inst, const char *localuser, int ok) argument
[all...]
/macosx-10.10/OpenLDAP-499.27/OpenLDAP/servers/slapd/
H A Duser.c0 /* user.c - set user id, group id and group access list */
40 * Set real and effective user id and group id, and group access list
41 * The user and group arguments are freed.
45 slap_init_user( char *user, char *group ) argument
51 if ( user ) {
53 if ( isdigit( (unsigned char) *user ) ) {
57 if ( lutil_atou( &u, user ) != 0 ) {
58 Debug( LDAP_DEBUG_ANY, "Unble to parse user %s\n",
59 user,
[all...]
/macosx-10.10/OpenPAM-20/openpam/lib/
H A Dpam_get_user.c53 * Retrieve user name
58 const char **user,
66 if (pamh == NULL || user == NULL)
68 r = pam_get_item(pamh, PAM_USER, (const void **)user);
69 if (r == PAM_SUCCESS && *user != NULL)
85 r = pam_get_item(pamh, PAM_USER, (const void **)user);
99 * The =pam_get_user function returns the name of the target user, as
101 * If no user was specified, nor set using =pam_set_item, =pam_get_user
102 * will prompt for a user name.
103 * Either way, a pointer to the user nam
57 pam_get_user(pam_handle_t *pamh, const char **user, const char *prompt) argument
[all...]
/macosx-10.10/ruby-106/ruby/lib/webrick/
H A Dhttpauth.rb22 # To enable authentication for requests in WEBrick you will need a user
58 user = pass = nil
61 user, pass = userpass.unpack("m*")[0].split(":", 2)
63 if block.call(user, pass)
64 req.user = user
/macosx-10.10/SmartCardServices-55111/installPhase/scripts/
H A Dsc_auth6 # of your user record contains an entry of the form
13 # the appropriate authority entry in a user account. It also lets you list
35 Usage: $(basename $0) accept [-v] [-u user] [-d domain] [-k keyname] # by key on inserted card(s)
36 $(basename $0) accept [-v] [-u user] [-d domain] -h hash # by known pubkey hash
37 $(basename $0) remove [-v] [-u user] [-d domain] # remove all public keys for this user
39 $(basename $0) list [-v] [-u user] [-d domain] # list pubkey hashes that can authenticate this user
49 user=${USER:-$(logname)}
59 u) user
[all...]
/macosx-10.10/emacs-93/emacs/lisp/url/
H A Durl-irc.el50 (defun url-irc-zenirc (host port channel user password)
51 (let ((zenirc-buffer-name (if (and user host port)
52 (format "%s@%s:%d" user host port)
56 (list host port password nil user))))
64 (defun url-irc-rcirc (host port channel user password)
66 (rcirc-connect host port user nil nil (when chan (list chan)))
70 (defun url-irc-erc (host port channel user password)
71 (erc-handle-irc-url host port channel user password))
78 (user (url-user ur
[all...]
H A Durl-misc.el50 (defun url-do-terminal-emulator (type server port user)
52 (generate-new-buffer (format "%s%s" (if user (concat user "@") "") server))
61 (if user
62 (list server "-l" user)
65 (if user (message "Please log in as user: %s" user))
70 (if user (message "Please log in as user
[all...]
/macosx-10.10/Security-57031.1.35/SecurityTests/regressions/kc/
H A Dkc-24-login.c13 const char *user = getenv("USER"); local
14 ok((user != NULL && strlen(user) != 0), "USER must be non-nil and non-zero length");
15 fprintf(stdout, "Testing login for user \"%s\"\n", user);
21 ok_status(SecKeychainLogin(strlen(user), user, 4, "test"), "login user");
60 sprintf(testuser_path, "Library/Keychains/%s", user);
66 ok_status(SecKeychainLogin(strlen(user), use
[all...]
/macosx-10.10/bind9-45.101/bind9/contrib/dbus/
H A Dnamed-dbus-system.conf5 <policy user="named">
10 <policy user="root">
/macosx-10.10/pam_modules-140/modules/pam_self/
H A Dpam_self.c42 const char *user = NULL, *ruser = NULL; local
49 if (pam_get_user(pamh, &user, NULL) != PAM_SUCCESS ||
50 NULL == user || 0 != getpwnam_r(user, &pwdbuf, pwbuffer, sizeof(pwbuffer), &pwd) || NULL == pwd) {
51 openpam_log(PAM_LOG_DEBUG, "Invalid user.");
59 openpam_log(PAM_LOG_DEBUG, "Invalid remote user.");
66 openpam_log(PAM_LOG_DEBUG, "The provided user and remote user do not match.");
/macosx-10.10/tcl-105/tcl_ext/expect/expect/example/
H A Dvrfy4 # separate address into user and host
5 regexp (.*)@(.*) $argv ignore user host
25 send "vrfy $user\r"
/macosx-10.10/xnu-2782.1.97/bsd/sys/
H A Dpthread_internal.h32 #include <sys/user.h>
H A Dvfs_context.h9 #include <sys/user.h>
15 * XXX <sys/user.h>
/macosx-10.10/tcl-105/tcl_ext/tcllib/tcllib/examples/sasl/
H A Dsaslclient.tcl17 variable user
18 array set user {username "" password ""}
20 set user(username) $env(http_proxy_user)
23 set user(username) $env(USERNAME)
27 set user(password) $env(http_proxy_pass)
47 variable user
54 return $user(username)
57 return $user(password)
199 variable user
200 if {$username ne {}} {set user(usernam
[all...]
/macosx-10.10/Heimdal-398.1.2/lib/roken/
H A Dverify.c46 unix_verify_user(char *user, char *password) argument
50 pw = k_getpwnam(user);
/macosx-10.10/Security-57031.1.35/SecurityTests/clxutils/certcrl/testSubjects/emptySubject/
H A DemptySubject.scr12 cert = user.pem
/macosx-10.10/bind9-45.101/bind9/bin/confgen/unix/
H A Dos.c34 set_user(FILE *fd, const char *user) { argument
37 pw = getpwnam(user);
/macosx-10.10/configd-699.1.5/SystemConfiguration.fproj/
H A DSCDynamicStoreSetSpecificPrivate.h44 @param user A pointer to a character buffer containing the name of
47 @param uid The user ID of the current/primary "Console" user.
48 @param gid The group ID of the current/primary "Console" user.
61 const char *user,
69 @discussion Sets the name, user ID, and group ID of the currently
70 logged in user.
74 @param user A pointer to a character buffer containing the name of
75 the current "Console" user. If NULL, any current "Console"
76 user informatio
[all...]
/macosx-10.10/cups-408/cups/tools/
H A Dpdftops-darwin.sh40 /usr/libexec/cups/filter/cgpdftops job user title 1 "$options" "$option"
/macosx-10.10/emacs-93/emacs/lisp/net/
H A Drcompile.el33 ;; called was loaded remotely (ange-ftp), the host and user name are obtained
38 ;; loaded locally, remote-compile prompts for a host and user and assumes the
41 ;; See the user defined variables section for more info.
72 ;;;; user defined variables
85 (defcustom remote-compile-user nil
87 nil means use the value returned by \\[user-login-name]."
105 (defcustom remote-compile-prompt-for-user nil
106 "*Non-nil means prompt for user if not available from filename."
114 (defvar remote-compile-user-history nil)
122 ;; functions to provide user, hos
[all...]
/macosx-10.10/OpenSSH-189/openssh/
H A Dsshlogin.c7 * easily use something like login -p -h host -f user, because there are
67 * Returns the time when the user last logged in. Returns 0 if the
69 * The host the user logged in from will be returned in buf.
87 store_lastlog_message(const char *user, uid_t uid) argument
97 time_string = sys_auth_get_lastlogin_msg(user, uid);
103 last_login_time = get_last_login_time(uid, user, hostname,
122 * Records that the user has logged in. I wish these parts of operating
126 record_login(pid_t pid, const char *tty, const char *user, uid_t uid, argument
132 store_lastlog_message(user, uid);
134 li = login_alloc_entry(pid, user, hos
142 record_utmp_only(pid_t pid, const char *ttyname, const char *user, const char *host, struct sockaddr *addr, socklen_t addrlen) argument
156 record_logout(pid_t pid, const char *tty, const char *user) argument
[all...]

Completed in 164 milliseconds

1234567891011>>