Searched defs:user (Results 126 - 150 of 268) sorted by relevance

1234567891011

/external/nist-sip/java/gov/nist/javax/sip/address/
H A DAddressImpl.java123 /** Get the user@host:port for the address field. This assumes
127 *@return string containing user@host:port.
322 /** Set the user name for the imbedded URI.
324 *@param user -- user name to set for the imbedded URI.
326 public void setUser(String user) { argument
327 ((SipUri) this.address).setUser(user);
/external/nist-sip/java/gov/nist/javax/sip/parser/
H A DURLParser.java624 String userOrHost = user();// Note: user may contain ';', host may not...
760 protected String user() throws ParseException { method in class:URLParser
762 dbg_enter("user");
777 dbg_leave("user");
/external/nist-sip/java/javax/sip/address/
H A DSipURI.java37 void setUser(String user); argument
/external/openssh/
H A Daudit-bsm.c177 /* get flags for non-attributable (to a real user) events */
203 sel = selected(the_authctxt->user, uid, event_no, rc);
242 (void) au_user_mask(the_authctxt->user, &mask);
262 gettext("invalid %s for user %s"),
263 what, the_authctxt->user);
267 gettext("invalid user name \"%s\""),
268 the_authctxt->user);
324 const char *user = the_authctxt ? the_authctxt->user : "(unknown user)"; local
[all...]
H A Dauth.c86 * Check if the user is allowed to log in via ssh. If user is listed
87 * in DenyUsers or one of user's groups is listed in DenyGroups, false
88 * will be returned. If AllowUsers isn't empty and user isn't listed
89 * there, or if AllowGroups isn't empty and one of user's groups isn't
91 * If the user's shell is not executable, false will be returned.
186 /* Return false if user is listed in DenyUsers */
197 /* Return false if AllowUsers isn't empty and user isn't listed there */
211 /* Get the user's group access list (primary and supplementary) */
218 /* Return false if one of user'
546 getpwnamallow(const char *user) argument
[all...]
H A Dauth2-jpake.c90 if (authctxt->user != NULL) {
194 /* Generate ASCII salt bytes for user */
196 makesalt(u_int want, const char *user) argument
205 derive_rawsalt(user, rawsalt, sizeof(rawsalt));
240 xasprintf(salt, "$1$%s$", makesalt(8, authctxt->user));
243 *salt = xstrdup(makesalt(2, authctxt->user));
251 makesalt(4, authctxt->user));
258 makesalt(22, authctxt->user));
262 debug3("%s: fake %s salt for user %s: %s",
263 __func__, *scheme, authctxt->user, *sal
[all...]
H A Dgss-genr.c240 ssh_gssapi_buildmic(Buffer *b, const char *user, const char *service, argument
246 buffer_put_cstring(b, user);
/external/openssh/openbsd-compat/
H A Dbsd-misc.c73 const char *user, const char *domain)
72 innetgr(const char *netgroup, const char *host, const char *user, const char *domain) argument
/external/openssl/crypto/srp/
H A Dsrp_lib.c203 BIGNUM *SRP_Calc_x(BIGNUM *s, const char *user, const char *pass) argument
210 (user == NULL) ||
219 EVP_DigestUpdate(&ctxt, user, strlen(user));
/external/openssl/ssl/
H A Dtls_srp.c257 int SSL_set_srp_server_param_pw(SSL *s, const char *user, const char *pass, const char *grp) argument
273 if(!SRP_create_verifier_BN(user, pass, &s->srp_ctx.s, &s->srp_ctx.v, GN->N, GN->g)) return -1;
/external/ppp/pppd/
H A Dupap.c149 upap_authwithpeer(unit, user, password)
151 char *user, *password;
156 u->us_user = user;
157 u->us_userlen = strlen(user);
401 * Parse user/passwd.
621 char *user, *pwd, *msg; local
649 user = (char *) (p + 1);
653 printer(arg, " user=");
654 print_string(user, ulen, printer, arg);
/external/smack/src/org/jivesoftware/smack/
H A DBOSHConnection.java110 * The full JID of the authenticated user.
112 private String user = null; field in class:BOSHConnection
132 * (e.g. domain.lt for the user alice@domain.lt)
249 // If this is the first time the user has asked for the roster after calling
250 // login, we want to wait for the server to send back the user's roster.
279 return user;
329 // Set the user.
331 this.user = response;
335 this.user = username + "@" + getServiceName();
337 this.user
[all...]
/external/smack/src/org/jivesoftware/smack/packet/
H A DRosterPacket.java104 private String user; field in class:RosterPacket.Item
113 * @param user the user.
114 * @param name the user's name.
116 public Item(String user, String name) { argument
117 this.user = user.toLowerCase();
125 * Returns the user.
127 * @return the user.
130 return user;
[all...]
/external/smack/src/org/jivesoftware/smackx/entitycaps/
H A DEntityCapsManager.java93 * key is formed as user@server/resource (resource is required) In case of
94 * link-local connection the key is formed as user@host (no resource) In
142 * @param user
143 * the user (Full JID)
160 * Get the discover info given a user name. The discover info is returned if
161 * the user has a node#ver associated with it and the node#ver has a
164 * @param user
165 * user name (Full JID)
168 public static DiscoverInfo getDiscoverInfoByUser(String user) { argument
169 NodeVerHash nvh = jidCaps.get(user);
370 removeUserCapsNode(String user) argument
[all...]
/external/smack/src/org/jivesoftware/smackx/workgroup/user/
H A DWorkgroup.java17 package org.jivesoftware.smackx.workgroup.user;
111 * Internal handling of an invitation.Recieving an invitation removes the user from the queue.
143 * Returns true if the user is currently waiting in the workgroup queue.
184 * the user is next in line to be routed; therefore, if the queue position
185 * is being displayed to the end user it is usually a good idea to add 1 to
186 * the value this method returns before display. If the user is not currently
190 * @return the user's current position in the workgroup queue, or -1 if the
191 * position isn't available or if the user isn't in the queue.
198 * Returns the estimated time (in seconds) that the user has to left wait in
199 * the workgroup queue before being routed. If the user i
[all...]
/external/webkit/Source/WebKit/chromium/tests/
H A DKURLTest.cpp56 const char* user; member in struct:__anon16009::ComponentCase
72 const char* user; member in struct:__anon16009::GetterCase
93 EXPECT_EQ(cases[i].user, kurl.user());
107 EXPECT_EQ(cases[i].user, kurl.user());
121 // url protocol host port user pass path lastPath query ref
144 EXPECT_EQ(cases[i].user, kurl.user());
198 const char* user; member in struct:__anon16009::ExpectedComponentCase
[all...]
/external/webkit/Source/WebKit2/Shared/
H A DWebCoreArgumentCoders.h171 encoder->encode(CoreIPC::In(credential.user(), credential.password(), static_cast<uint32_t>(credential.persistence())));
176 String user; local
179 if (!decoder->decode(CoreIPC::Out(user, password, persistence)))
182 credential = WebCore::Credential(user, password, static_cast<WebCore::CredentialPersistence>(persistence));
/external/webkit/Tools/DumpRenderTree/win/
H A DResourceLoadDelegate.cpp302 const char* user = gLayoutTestController->authenticationUsername().c_str(); local
305 printf("%S - didReceiveAuthenticationChallenge - Responding with %s:%s\n", descriptionSuitableForTestResult(identifier).c_str(), user, password);
310 credential->initWithUser(_bstr_t(user), _bstr_t(password), WebURLCredentialPersistenceForSession);
/external/wpa_supplicant_8/hostapd/src/l2_packet/
H A Dl2_packet_pcap.c146 static void l2_packet_receive_cb(u_char *user, const struct pcap_pkthdr *hdr, argument
149 struct l2_packet_data *l2 = (struct l2_packet_data *) user;
H A Dl2_packet_winpcap.c102 static void l2_packet_receive_cb(u_char *user, const struct pcap_pkthdr *hdr, argument
105 struct l2_packet_data *l2 = (struct l2_packet_data *) user;
/external/wpa_supplicant_8/src/l2_packet/
H A Dl2_packet_pcap.c146 static void l2_packet_receive_cb(u_char *user, const struct pcap_pkthdr *hdr, argument
149 struct l2_packet_data *l2 = (struct l2_packet_data *) user;
H A Dl2_packet_winpcap.c102 static void l2_packet_receive_cb(u_char *user, const struct pcap_pkthdr *hdr, argument
105 struct l2_packet_data *l2 = (struct l2_packet_data *) user;
/external/wpa_supplicant_8/wpa_supplicant/src/l2_packet/
H A Dl2_packet_pcap.c146 static void l2_packet_receive_cb(u_char *user, const struct pcap_pkthdr *hdr, argument
149 struct l2_packet_data *l2 = (struct l2_packet_data *) user;
H A Dl2_packet_winpcap.c102 static void l2_packet_receive_cb(u_char *user, const struct pcap_pkthdr *hdr, argument
105 struct l2_packet_data *l2 = (struct l2_packet_data *) user;
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.apache.ant_1.7.1.v20090120-1145/lib/
H A Dant-swing.jar ... int FIVE_SECONDS private String imgurl private String proxy private String user private String password private String port private int showDuration private ...

Completed in 1832 milliseconds

1234567891011