HomeSort by relevance Sort by last modified time
    Searched refs:AUTH (Results 1 - 25 of 26) sorted by null

1 2

  /external/apache-http/src/org/apache/http/auth/
AUTH.java 2 * $HeadURL: http://svn.apache.org/repos/asf/httpcomponents/httpclient/trunk/module-client/src/main/java/org/apache/http/auth/AUTH.java $
32 package org.apache.http.auth;
46 public final class AUTH {
68 private AUTH() {
  /external/ltp/testcases/network/rpc/rpc-tirpc/tests_pack/rpc_suite/tirpc/tirpc_auth_authdes_create/
tirpc_authdes_create.c 45 AUTH *authDes = NULL;
53 test_status = ((AUTH *) authDes != NULL) ? 0 : 1;
  /external/ltp/testcases/network/rpc/rpc-tirpc/tests_pack/rpc_suite/tirpc/tirpc_auth_authnone_create/
tirpc_authnone_create.c 45 AUTH *authNone = NULL;
50 test_status = ((AUTH *) authNone != NULL) ? 0 : 1;
  /external/ltp/testcases/network/rpc/rpc-tirpc/tests_pack/rpc_suite/tirpc/tirpc_auth_authsys_create_default/
tirpc_authsys_create_default.c 45 AUTH *authSys = NULL;
50 test_status = ((AUTH *) authSys != NULL) ? 0 : 1;
  /external/ltp/testcases/network/rpc/rpc-tirpc/tests_pack/rpc_suite/rpc/rpc_auth_authnone_create/
rpc_authnone_create.c 48 AUTH *authNone = NULL;
53 test_status = ((AUTH *) authNone != NULL) ? 0 : 1;
  /external/ltp/testcases/network/rpc/rpc-tirpc/tests_pack/rpc_suite/tirpc/tirpc_auth_authdes_seccreate/
tirpc_authdes_seccreate.c 50 AUTH *authDes = NULL;
58 test_status = ((AUTH *) authDes != NULL) ? 0 : 1;
  /external/ltp/testcases/network/rpc/rpc-tirpc/tests_pack/rpc_suite/rpc/rpc_auth_authunix_create_default/
rpc_authunix_create_default.c 51 //This is only a test case, normally use, clnt->cl_auth instead of an AUTH structure
52 AUTH *authUnx = NULL;
57 test_status = ((AUTH *) authUnx != NULL) ? 0 : 1;
  /external/ltp/testcases/network/rpc/rpc-tirpc/tests_pack/rpc_suite/tirpc/tirpc_auth_authsys_create/
tirpc_authsys_create.c 46 AUTH *authSys = NULL;
60 test_status = ((AUTH *) authSys != NULL) ? 0 : 1;
  /external/apache-http/src/org/apache/http/impl/client/
DefaultProxyAuthenticationHandler.java 39 import org.apache.http.auth.AUTH;
40 import org.apache.http.auth.MalformedChallengeException;
73 Header[] headers = response.getHeaders(AUTH.PROXY_AUTH);
DefaultTargetAuthenticationHandler.java 39 import org.apache.http.auth.AUTH;
40 import org.apache.http.auth.MalformedChallengeException;
73 Header[] headers = response.getHeaders(AUTH.WWW_AUTH);
  /external/ltp/testcases/network/rpc/rpc-tirpc/tests_pack/rpc_suite/rpc/rpc_auth_authunix_create/
rpc_authunix_create.c 56 AUTH *authUnx = NULL;
84 test_status = ((AUTH *) authUnx != NULL) ? 0 : 1;
  /external/ltp/testcases/network/rpc/rpc-tirpc/tests_pack/rpc_suite/rpc/rpc_auth_auth_destroy/
rpc_auth_destroy.c 48 AUTH *authNone = NULL;
  /external/apache-http/src/org/apache/http/impl/auth/
AuthSchemeBase.java 2 * $HeadURL: http://svn.apache.org/repos/asf/httpcomponents/httpclient/trunk/module-client/src/main/java/org/apache/http/impl/auth/AuthSchemeBase.java $
31 package org.apache.http.impl.auth;
35 import org.apache.http.auth.AUTH;
36 import org.apache.http.auth.AuthScheme;
37 import org.apache.http.auth.MalformedChallengeException;
81 if (authheader.equalsIgnoreCase(AUTH.WWW_AUTH)) {
83 } else if (authheader.equalsIgnoreCase(AUTH.PROXY_AUTH)) {
BasicScheme.java 2 * $HeadURL: http://svn.apache.org/repos/asf/httpcomponents/httpclient/trunk/module-client/src/main/java/org/apache/http/impl/auth/BasicScheme.java $
31 package org.apache.http.impl.auth;
36 import org.apache.http.auth.AuthenticationException;
37 import org.apache.http.auth.Credentials;
38 import org.apache.http.auth.AUTH;
39 import org.apache.http.auth.MalformedChallengeException;
40 import org.apache.http.auth.params.AuthParams;
128 * @throws org.apache.http.auth.InvalidCredentialsException if authentication credentials
180 buffer.append(AUTH.PROXY_AUTH_RESP)
    [all...]
NTLMScheme.java 2 * $HeadURL: http://svn.apache.org/repos/asf/httpcomponents/httpclient/trunk/module-client/src/main/java/org/apache/http/impl/auth/NTLMScheme.java $
31 package org.apache.http.impl.auth;
35 import org.apache.http.auth.AUTH;
36 import org.apache.http.auth.AuthenticationException;
37 import org.apache.http.auth.Credentials;
38 import org.apache.http.auth.InvalidCredentialsException;
39 import org.apache.http.auth.MalformedChallengeException;
40 import org.apache.http.auth.NTCredentials;
41 import org.apache.http.impl.auth.AuthSchemeBase
    [all...]
DigestScheme.java 2 * $HeadURL: http://svn.apache.org/repos/asf/httpcomponents/httpclient/trunk/module-client/src/main/java/org/apache/http/impl/auth/DigestScheme.java $
31 package org.apache.http.impl.auth;
40 import org.apache.http.auth.AuthenticationException;
41 import org.apache.http.auth.Credentials;
42 import org.apache.http.auth.AUTH;
43 import org.apache.http.auth.MalformedChallengeException;
44 import org.apache.http.auth.params.AuthParams;
55 * Currently only qop=auth or no qop is supported. qop=auth-in
    [all...]
  /external/apache-http/src/org/apache/http/client/protocol/
RequestProxyAuthentication.java 41 import org.apache.http.auth.AUTH;
42 import org.apache.http.auth.AuthScheme;
43 import org.apache.http.auth.AuthState;
44 import org.apache.http.auth.AuthenticationException;
45 import org.apache.http.auth.Credentials;
77 if (request.containsHeader(AUTH.PROXY_AUTH_RESP)) {
RequestTargetAuthentication.java 41 import org.apache.http.auth.AUTH;
42 import org.apache.http.auth.AuthScheme;
43 import org.apache.http.auth.AuthState;
44 import org.apache.http.auth.AuthenticationException;
45 import org.apache.http.auth.Credentials;
77 if (request.containsHeader(AUTH.WWW_AUTH_RESP)) {
  /external/wpa_supplicant_8/tests/
test-eapol.c 18 enum { AUTH, SUPP } test_peer;
37 struct wpa_state_machine *auth; member in struct:wpa
57 "usage: test-eapol <auth/supp> <read/write> <file>");
123 wpa_printf(MSG_DEBUG, "AUTH: RX EAPOL frame");
125 wpa_receive(wpa->auth_group, wpa->auth, wpa->supp_eapol,
131 "AUTH: No response was sent - process next message");
176 if (wpa->test_peer == AUTH && wpa->test_oper == READ)
351 wpa_printf(MSG_DEBUG, "AUTH: " MACSTR " - %s",
354 wpa_printf(MSG_DEBUG, "AUTH: %s", txt);
374 wpa_printf(MSG_DEBUG, "AUTH: %s(addr=" MACSTR " data_len=%lu
    [all...]
  /external/ppp/pppd/plugins/radius/
radiusclient.h 42 #define AUTH 0
  /external/wpa_supplicant_8/src/drivers/
driver_common.c 41 E2S(AUTH);
  /external/python/cpython3/Lib/test/
test_smtplib.py 680 AUTH = 99 # Add protocol state to enable auth testing.
688 # AUTH related stuff. It would be nice if support for this were in smtpd.
690 if self.smtp_state == self.AUTH:
707 if not self.extended_smtp or 'AUTH' not in self._extrafeatures:
708 self.push('500 Error: command "AUTH" not recognized')
716 self.push('501 Syntax: AUTH <mechanism> [initial-response]')
725 self.smtp_state = self.AUTH
781 # end AUTH related stuff.
    [all...]
  /external/curl/tests/
ftpserver.pl 590 'AUTH' => \&AUTH_pop3,
758 push @data, "AUTH $mechs";
1009 sendcontrol "214 HELO EHLO RCPT DATA RSET MAIL VRFY EXPN QUIT HELP AUTH\r\n";
    [all...]
  /external/caliper/lib/
jersey-client-1.11.jar 
  /external/guice/extensions/struts2/lib/
jetty-6.1.0.jar 

Completed in 1235 milliseconds

1 2