HomeSort by relevance Sort by last modified time
    Searched refs:AUTH (Results 1 - 25 of 39) 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() {
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.6/sysroot/usr/include/rpc/
auth.h 2 * auth.h, Authentication interface.
34 * is required to pass a AUTH * to routines that create rpc
83 enum_t oa_flavor; /* flavor of auth */
84 caddr_t oa_base; /* address of more auth stuff */
89 * Auth handle, interface to client side authenticators.
91 typedef struct AUTH AUTH;
92 struct AUTH {
97 void (*ah_nextverf) (AUTH *);
98 int (*ah_marshal) (AUTH *, XDR *); /* nextverf & serialize *
    [all...]
clnt.h 40 #include <rpc/auth.h>
107 enum auth_stat RE_why; /* why the auth error occurred */
127 * Client is responsible for initializing auth, see e.g. auth_none.c.
131 AUTH *cl_auth; /* authenticator */
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/sysroot/usr/include/rpc/
auth.h 2 * auth.h, Authentication interface.
34 * is required to pass a AUTH * to routines that create rpc
83 enum_t oa_flavor; /* flavor of auth */
84 caddr_t oa_base; /* address of more auth stuff */
89 * Auth handle, interface to client side authenticators.
91 typedef struct AUTH AUTH;
92 struct AUTH {
97 void (*ah_nextverf) (AUTH *);
98 int (*ah_marshal) (AUTH *, XDR *); /* nextverf & serialize *
    [all...]
clnt.h 40 #include <rpc/auth.h>
107 enum auth_stat RE_why; /* why the auth error occurred */
127 * Client is responsible for initializing auth, see e.g. auth_none.c.
131 AUTH *cl_auth; /* authenticator */
  /external/robolectric/src/test/java/com/xtremelabs/robolectric/shadows/
UriMatcherTest.java 19 static final String AUTH = "com.foo";
27 URI = Uri.parse("content://" + AUTH);
43 matcher.addURI(AUTH, path, 1);
44 assertThat(node.map.keySet(), hasItem(AUTH));
46 node = node.map.get(AUTH);
57 matcher.addURI(AUTH, "#", 1);
58 matcher.addURI(AUTH, "*", 2);
59 MatchNode node = root.map.get(AUTH);
66 matcher.addURI(AUTH, "bar", 1);
69 matcher.addURI(AUTH, "bar/#", 2)
    [all...]
  /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/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/smack/src/org/jivesoftware/smack/packet/
XMPPError.java 33 * <tr><td>403</td><td>forbidden</td><td>AUTH</td></tr>
42 * <tr><td>401</td><td>not-authorized</td><td>AUTH</td></tr>
43 * <tr><td>402</td><td>payment-required</td><td>AUTH</td></tr>
46 * <tr><td>407</td><td>registration-required</td><td>AUTH</td></tr>
52 * <tr><td>407</td><td>subscription-required</td><td>AUTH</td></tr>
299 * <li>XMPPError.Type.AUTH - retry after providing credentials
307 AUTH,
373 Type.AUTH, 403));
391 Condition.not_authorized, Type.AUTH, 401));
393 Condition.payment_required, Type.AUTH, 402))
    [all...]
  /external/wpa_supplicant_8/src/drivers/
driver_common.c 42 E2S(AUTH);
  /external/smack/src/org/xbill/DNS/
WKSRecord.java 398 public static final int AUTH = 113;
489 services.add(MSG_AUTH, "msg-auth");
531 services.add(AUTH, "auth");
  /external/ppp/pppd/plugins/radius/
radiusclient.h 42 #define AUTH 0
  /external/robolectric/lib/main/
httpclient-4.0.3.jar 
  /prebuilts/eclipse/maven/apache-maven-3.2.1/lib/
aether-api-0.9.0.M2.jar 
  /external/chromium_org/third_party/libaddressinput/src/java/testlibs/
httpclient-4.1.1.jar 
  /external/smack/asmack-master/lib/
httpclient-4.1.3.jar 
  /prebuilts/devtools/tools/lib/
httpclient-4.1.1.jar 
  /prebuilts/eclipse/mavenplugins/tycho/tycho-dependencies-m2repo/org/eclipse/tycho/tycho-bundles-external/0.20.0/eclipse/plugins/
org.apache.httpcomponents.httpclient_4.1.3.v201209201135.jar 
  /prebuilts/tools/common/http-client/
httpclient-4.1.1.jar 

Completed in 412 milliseconds

1 2