Searched refs:login (Results 1 - 25 of 193) sorted by relevance

12345678

/macosx-10.9.5/curl-78.94.1/curl/tests/unit/
H A Dunit1304.c26 static char login[LOGINSIZE]; variable
33 login[0] = 0;
50 result = Curl_parsenetrc("test.example.com", login, password, filename);
53 fail_unless(login[0] == 0, "login should not have been changed");
56 * Test a non existent login in our netrc file.
58 memcpy(login, "me", 2);
59 result = Curl_parsenetrc("example.com", login, password, filename);
62 fail_unless(strncmp(login, "me", 2) == 0, "login shoul
[all...]
/macosx-10.9.5/curl-78.94.1/curl/lib/
H A Dnetrc.h31 char *login,
35 * If login[0] = 0, search for login and password within a machine section
37 * If login[0] != 0, search for password within machine and login.
H A Dnetrc.c55 char *login,
61 int specific_login = (login[0] != 0);
67 char state_login=0; /* Found a login keyword */
69 int state_our_login=FALSE; /* With specific_login, found *our* login name */
112 if(login[0] && password[0]) {
122 after this we need to search for 'login' and
141 state_our_login = Curl_raw_equal(login, tok);
144 strncpy(login, tok, LOGINSIZE-1);
154 else if(Curl_raw_equal("login", tok))
54 Curl_parsenetrc(const char *host, char *login, char *password, char *netrcfile) argument
/macosx-10.9.5/passwordserver_sasl-170/cyrus_sasl/saslauthd/
H A Dauth_sia.c57 const char *login, /* I: plaintext authenticator */
68 rc = sia_validate_user(0, g_argc, g_argv, 0, login, 0, 0, 0, password);
85 const char *login __attribute__((unused)),
54 auth_sia( const char *login, const char *password, const char *service __attribute__((unused)), const char *realm __attribute__((unused)) ) argument
H A Dauth_dce.c57 const char *login, /* I: plaintext authenticator */
71 rc = authenticate(login, password, &reenter, &msg);
105 const char *login __attribute__((unused)),
54 auth_dce( const char *login, const char *password, const char *service __attribute__((unused)), const char *realm __attribute__((unused)) ) argument
H A Dauth_ldap.c61 const char *login, /* I: plaintext authenticator */
79 rc = lak_authenticate(lak, login, service, realm, password);
117 const char *login __attribute__((unused)),
58 auth_ldap( const char *login, const char *password, const char *service, const char *realm ) argument
H A Dauth_getpwent.c65 const char *login, /* I: plaintext authenticator */
76 pw = getpwnam(login);
62 auth_getpwent( const char *login, const char *password, const char *service __attribute__((unused)), const char *realm __attribute__((unused)) ) argument
H A Dauth_shadow.c76 * time-of-day and other login restrictions.
82 const char *login, /* I: plaintext authenticator */
135 pw = getpwnam_r(login, &pwbuf, pwdata, sizeof(pwdata));
137 pw = getpwnam(login);
142 syslog(LOG_DEBUG, "DEBUG: auth_shadow: getpwnam(%s) returned NULL", login);
150 sp = getspnam_r(login, &spbuf, spdata, sizeof(spdata));
152 sp = getspnam(login);
158 syslog(LOG_DEBUG, "DEBUG: auth_shadow: getspnam(%s) returned NULL", login);
172 * would allow login-id namespace probes, and violates our policy of
173 * not returning any information about a login unti
79 auth_shadow( const char *login, const char *password, const char *service __attribute__((unused)), const char *realm __attribute__((unused)) ) argument
[all...]
H A Dauth_pam.c70 const char *login; /* plaintext authenticator */ member in struct:__anon11673
118 * match, assume it to be a request for the login.
136 "login prompt string: %s",
142 my_resp[i].resp = strdup(my_appdata->login);
188 const char *login, /* I: plaintext authenticator */
202 my_appdata.login = login;
209 rc = pam_start(service, login, &my_conv, &pamh);
244 const char *login __attribute__((unused)),
184 auth_pam( const char *login, const char *password, const char *service, const char *realm __attribute__((unused)) ) argument
H A Dauth_sasldb.c118 const char *login, /* I: plaintext authenticator */
123 const char *login __attribute__((unused)),/* I: plaintext authenticator */
153 ret = _sasldb_getdata(&utils, (void *)0x1, login, use_realm,
114 auth_sasldb( const char *login, const char *password, const char *service __attribute__((unused)), const char *realm ) argument
/macosx-10.9.5/iodbc-42.5/iodbc/drvproxy/gtk/
H A Dloginbox.c136 GtkWidget *login, *dialog_vbox1, *table1, *l_user, *l_password; local
154 login = gtk_dialog_new ();
155 gtk_object_set_data (GTK_OBJECT (login), "login", login); local
157 gtk_window_set_title (GTK_WINDOW (login), buff);
158 gtk_window_set_position (GTK_WINDOW (login), GTK_WIN_POS_CENTER);
159 gtk_window_set_modal (GTK_WINDOW (login), TRUE);
160 gtk_window_set_policy (GTK_WINDOW (login), FALSE, FALSE, FALSE);
163 gtk_widget_show (login);
[all...]
/macosx-10.9.5/bind9-45.100/bind9/contrib/nslint-2.1a3/lbl/
H A Dos-irix5.h33 void login(struct utmp *);
H A Dos-solaris2.h37 void login(struct utmp *);
/macosx-10.9.5/emacs-92/emacs/lisp/erc/
H A Derc-ezbounce.el41 (defcustom erc-ezb-login-alist '()
58 (defvar erc-ezb-action-alist '(("^\\[awaiting login/pass command\\]$" . erc-ezb-identify)
80 (defun erc-ezb-get-login (server port)
81 "Return an appropriate EZBounce login for SERVER and PORT.
82 Look up entries in `erc-ezb-login-alist'. If the username or password
84 (let ((login (cdr (assoc (cons server port) erc-ezb-login-alist))))
85 (when login
86 (let ((username (car login))
87 (password (cdr login)))
[all...]
H A Derc-xdcc.el81 (defun erc-xdcc (proc nick login host to query)
85 (format "XDCC %s (%s@%s) sends %S" nick login host query)))
89 (funcall handler proc nick login host (cdr args))
95 (defun erc-xdcc-help (proc nick login host args)
103 (defun erc-xdcc-list (proc nick login host args)
116 (defun erc-xdcc-send (proc nick login host args)
/macosx-10.9.5/passwordserver_sasl-170/cyrus_sasl/plugins/
H A Dlogin_init.c41 SASL_CLIENT_PLUG_INIT( login )
42 SASL_SERVER_PLUG_INIT( login )
/macosx-10.9.5/Libc-997.90.3/util/
H A Dlogin.c62 login(struct utmp *ut) function
/macosx-10.9.5/lsof-52/lsof/scripts/
H A Dlist_fields.perl41 $cmd = $login = $pgrp = $pid = $ppid = $uid = ""; # process var.
67 if (/^L(.*)/) { $login = $1; next; }
149 $tmp = $uid; if ($login ne "") {$tmp = $login }
154 $cmd = $login = $pgrp = $pid = $uid = "";
H A Didrlogin.perl6 # network (remote) login via rlogind, sshd, or telnetd
46 $cmd = $login = $pid = $ppid = ""; # process var.
72 $cmd = $login = $ppid = "";
81 if (/^L(.*)/) { $login = $1; next; }
137 || $login eq ""
159 $shlogin{$pid} = $login;
173 $shlogin{$pid} = $login;
/macosx-10.9.5/IOFireWireSBP2-426.4.1/IOFireWireSBP2/
H A DIOFireWireSBP2UserClient.cpp377 // releasing the login flushes all orbs
612 FWKLOG(( "IOFireWireSBP2UserClient : login 0x%08lx\n", (UInt32)params->login ));
664 // login callback methods
696 FWKLOG(( "IOFireWireSBP2UserClient : login %p\n", params->login ));
702 FWKLOG(( "IOFireWireSBP2UserClient : length %d login %d\n", params->loginResponse->length,
791 FWKLOG(( "IOFireWireSBP2UserClient : login 0x%08lx\n", (UInt32)params->login ));
1023 IOFireWireSBP2Login * login local
1077 IOFireWireSBP2Login * login = NULL; local
1108 IOFireWireSBP2Login * login = NULL; local
1137 IOFireWireSBP2Login * login = NULL; local
1171 IOFireWireSBP2Login * login = NULL; local
1202 IOFireWireSBP2Login * login = NULL; local
1231 IOFireWireSBP2Login * login = NULL; local
1262 IOFireWireSBP2Login * login = NULL; local
1298 IOFireWireSBP2Login * login = NULL; local
1355 IOFireWireSBP2Login * login = NULL; local
1390 IOFireWireSBP2Login * login = NULL; local
1425 IOFireWireSBP2Login * login = NULL; local
1498 IOFireWireSBP2Login * login = NULL; local
[all...]
H A DIOFireWireSBP2LUN.h44 @discussion IOFireWireSBP2LUN objects are created by IOFireWireSBP2Target objects. Each target may have zero or more IOFireWireSBP2LUN children. The LUN object serves as the matching nub for most drivers and therefore will be the provider for most drivers. It supplies the methods that control the operation of the LUN as a whole. Methods that control the behavior and execution of an SBP2 login session are supplied in a separate IOFireWireSBP2Login object. The LUN can be used to create one of these login objects.
45 The LUN can also create IOFireWireSBP2ManagementORBs for configuring and appending non-login related management functions. Login related management functions (ie. Login, Logout, Reconnect) are supplied by the IOFireWireSBP2Login.
67 virtual void removeLogin( IOFireWireSBP2Login * login );
169 virtual bool initLoginWithLUN( IOFireWireSBP2Login * login, IOFireWireSBP2LUN * lun );
211 of the SBP2 APIs related to login maintenance and Normal Command ORB execution.
234 static IOReturn staticCreateLogin( OSObject *self, void * login, void *, void *, void * );
235 virtual IOReturn createLoginAction( IOFireWireSBP2Login ** login );
237 static IOReturn staticRemoveLoginAction( OSObject *self, void * login, void *, void *, void * );
238 virtual IOReturn removeLoginAction( IOFireWireSBP2Login * login );
[all...]
H A DIOFireWireSBP2LUN.cpp113 // create login set
207 // release login set
408 // create a login object
413 IOFireWireSBP2Login * login; local
415 status = fGate->runAction( staticCreateLogin, &login );
417 return login;
420 IOReturn IOFireWireSBP2LUN::staticCreateLogin( OSObject *self, void * login, void *, void *, void * ) argument
422 return ((IOFireWireSBP2LUN *)self)->createLoginAction( (IOFireWireSBP2Login **)login );
425 IOReturn IOFireWireSBP2LUN::createLoginAction( IOFireWireSBP2Login ** login )
435 *login
457 staticRemoveLoginAction( OSObject *self, void * login, void *, void *, void * ) argument
617 initLoginWithLUN( IOFireWireSBP2Login * login, IOFireWireSBP2LUN * lun ) argument
[all...]
/macosx-10.9.5/bash-92/bash-3.2/builtins/
H A Dexec.c44 /* If the user wants this to look like a login shell, then
63 int cleanenv, login, opt; local
66 cleanenv = login = 0;
78 login = 1;
128 args[0] = login ? mkdashname (argv0) : savestring (argv0);
130 else if (login)
/macosx-10.9.5/passwordserver_sasl-170/cyrus_sasl/lib/
H A Dstaticopen.h100 extern SPECIFIC_SERVER_PLUG_INIT_PROTO( login );
101 extern SPECIFIC_CLIENT_PLUG_INIT_PROTO( login );
151 SPECIFIC_SERVER_PLUG_INIT( login, "LOGIN" ),
152 SPECIFIC_CLIENT_PLUG_INIT( login, "LOGIN" ),
/macosx-10.9.5/Heimdal-323.92.1/tests/java/
H A DKerberosInit.java37 import javax.security.auth.login.*;
84 lc.login();
91 System.out.println("lc.login ok");

Completed in 160 milliseconds

12345678