HomeSort by relevance Sort by last modified time
    Searched refs:authorization (Results 1 - 24 of 24) sorted by null

  /external/nist-sip/java/gov/nist/javax/sip/parser/
AuthorizationParser.java 32 * Parser for authorization headers.
45 * @param authorization Authorization message to parse
47 public AuthorizationParser(String authorization) {
48 super(authorization);
61 * @return SIPHeader (Authorization object)
67 headerName(TokenTypes.AUTHORIZATION);
68 Authorization auth = new Authorization();
  /external/nist-sip/java/gov/nist/javax/sip/clientauthutils/
AuthenticationHelperImpl.java 190 // Remove all authorization headers from the request (we'll re-add them
229 AuthorizationHeader authorization = null; local
236 authorization = this.getAuthorization(reoriginatedRequest
250 authorization = this.getAuthorization(reoriginatedRequest
257 "Created authorization header: " + authorization.toString());
261 authorization, cacheTime);
263 reoriginatedRequest.addHeader(authorization);
268 "Returning authorization transaction." + retryTran);
312 AuthorizationHeader authorization = null local
378 AuthorizationHeader authorization = null; local
    [all...]
CredentialsCache.java 12 * A cache of authorization headers to be used for subsequent processing when we
53 * Cache the bindings of proxyDomain and authorization header.
56 * the id of the call that the <tt>authorization</tt> header
58 * @param authorization
59 * the authorization header that we'd like to cache.
62 AuthorizationHeader authorization, int cacheTime) {
63 String user = authorization.getUsername();
65 if ( authorization == null) throw new NullPointerException("Null authorization domain");
72 String realm = authorization.getRealm()
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
CGIHTTPServer.py 177 authorization = self.headers.getheader("authorization")
178 if authorization:
179 authorization = authorization.split()
180 if len(authorization) == 2:
182 env['AUTH_TYPE'] = authorization[0]
183 if authorization[0].lower() == "basic":
185 authorization = base64.decodestring(authorization[1]
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
CGIHTTPServer.py 177 authorization = self.headers.getheader("authorization")
178 if authorization:
179 authorization = authorization.split()
180 if len(authorization) == 2:
182 env['AUTH_TYPE'] = authorization[0]
183 if authorization[0].lower() == "basic":
185 authorization = base64.decodestring(authorization[1]
    [all...]
  /prebuilts/eclipse/maven/apache-maven-3.2.1/lib/
wagon-file-2.6.jar 
wagon-provider-api-2.6.jar 
wagon-http-2.6-shaded.jar 
maven-compat-3.2.1.jar 
  /external/chromium-trace/trace-viewer/third_party/Paste/paste/auth/
basic.py 41 authorization = AUTHORIZATION(environ)
42 if not authorization:
44 (authmeth, auth) = authorization.split(' ', 1)
71 authorization. It is shown to the user and should be unique
digest.py 138 authorization = AUTHORIZATION(environ)
139 if not authorization:
141 (authmeth, auth) = authorization.split(" ", 1)
200 authorization. It is shown to the user and should be unique
  /external/selinux/policycoreutils/sepolicy/
org.selinux.conf 14 authorization is performed by PolicyKit -->
  /external/oauth/core/src/main/java/net/oauth/
OAuthMessage.java 356 * Parse the parameters from an OAuth Authorization or WWW-Authenticate
360 public static List<OAuth.Parameter> decodeAuthorization(String authorization) {
362 if (authorization != null) {
363 Matcher m = AUTHORIZATION.matcher(authorization);
387 private static final Pattern AUTHORIZATION = Pattern.compile("\\s*(\\w*)\\s+(.*)");
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_urllib.py 251 authorization = ("Authorization: Basic %s\r\n" %
253 # The authorization header must be in place
254 self.assertIn(authorization, fakehttp_wrapper.buf)
267 authorization = ("Authorization: Basic %s\r\n" %
270 # The authorization header must be in place
271 self.assertIn(authorization, fakehttp_wrapper.buf)
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
test_urllib.py 251 authorization = ("Authorization: Basic %s\r\n" %
253 # The authorization header must be in place
254 self.assertIn(authorization, fakehttp_wrapper.buf)
267 authorization = ("Authorization: Basic %s\r\n" %
270 # The authorization header must be in place
271 self.assertIn(authorization, fakehttp_wrapper.buf)
    [all...]
  /external/nanohttpd/
README.md 11 * No fixed config files, logging, authorization etc. (Implement by yourself if you need them.)
  /external/jetty/src/java/org/eclipse/jetty/client/
HttpDestination.java 149 public void addAuthorization(String pathSpec, Authentication authorization)
155 _authorizations.put(pathSpec, authorization);
  /prebuilts/eclipse/mavenplugins/tycho/tycho-dependencies-m2repo/org/apache/maven/plugins/maven-site-plugin/3.3/
maven-site-plugin-3.3.jar 
  /external/nist-sip/java/gov/nist/javax/sip/stack/
SIPDialog.java 40 import gov.nist.javax.sip.header.Authorization;
2483 Authorization authorization = this.originalRequest.getAuthorization(); local
    [all...]
  /external/chromium-trace/trace-viewer/third_party/WebOb/webob/
request.py 1039 authorization = converter( variable in class:BaseRequest
    [all...]
  /external/mdnsresponder/mDNSCore/
uDNS.c 282 #pragma mark - authorization management
    [all...]
  /external/robolectric/lib/main/
h2-1.2.147.jar 
  /prebuilts/tools/common/google-api-java-client/1.20.0/
google-api-java-client-min-repackaged-1.20.0.jar 
  /prebuilts/tools/common/google-api-java-client/1.8.0-rc/
google-api-java-client-min-repackaged.jar 

Completed in 2203 milliseconds