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

1 2

  /external/nist-sip/java/gov/nist/javax/sip/header/
AuthorizationList.java 42 public class AuthorizationList extends SIPHeaderList<Authorization> {
60 super(Authorization.class, Authorization.NAME);
Authorization.java 36 * Authorization SIP header.
45 public class Authorization
56 public Authorization() {
NameMap.java 115 putNameMap(AUTHORIZATION, Authorization.class.getName()); //19
AuthenticationHeader.java 35 * Authorization header - removed quoting of string according to
122 if (((this instanceof Authorization) || (this instanceof ProxyAuthorization))
124 // NOP, QOP not quoted in authorization headers
HeaderFactoryImpl.java 219 Authorization auth = new Authorization();
    [all...]
  /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/chromium/chrome/browser/cocoa/
authorization_util.h 28 #include <Security/Authorization.h>
46 OSStatus ExecuteWithPrivilegesAndGetPID(AuthorizationRef authorization,
58 OSStatus ExecuteWithPrivilegesAndWait(AuthorizationRef authorization,
scoped_authorizationref.h 9 #include <Security/Authorization.h>
19 explicit scoped_AuthorizationRef(AuthorizationRef authorization = NULL)
20 : authorization_(authorization) {
29 void reset(AuthorizationRef authorization = NULL) {
30 if (authorization_ != authorization) {
34 authorization_ = authorization;
  /external/chromium_org/base/mac/
authorization_util.h 27 #include <Security/Authorization.h>
50 OSStatus ExecuteWithPrivilegesAndGetPID(AuthorizationRef authorization,
63 OSStatus ExecuteWithPrivilegesAndWait(AuthorizationRef authorization,
scoped_authorizationref.h 8 #include <Security/Authorization.h>
21 explicit ScopedAuthorizationRef(AuthorizationRef authorization = NULL)
22 : authorization_(authorization) {
31 void reset(AuthorizationRef authorization = NULL) {
32 if (authorization_ != authorization) {
36 authorization_ = authorization;
  /external/chromium_org/chrome/browser/mac/
keystone_registration.h 9 #include <Security/Authorization.h>
62 authorization:(AuthorizationRef)authorization;
  /packages/apps/Contacts/src/com/android/contacts/detail/
ContactLoaderFragment.java 395 uriBundle.putParcelable(ContactsContract.Authorization.KEY_URI_TO_AUTHORIZE, uri);
398 ContactsContract.Authorization.AUTHORIZATION_METHOD,
403 ContactsContract.Authorization.KEY_AUTHORIZED_URI);
  /external/nist-sip/java/gov/nist/javax/sip/message/
ListMap.java 95 headerListTable.put(Authorization.class, AuthorizationList.class);
SIPMessage.java 35 import gov.nist.javax.sip.header.Authorization;
188 || sipHeader instanceof Authorization || sipHeader instanceof MaxForwards
    [all...]
  /external/dnsmasq/contrib/dynamic-dnsmasq/
dynamic-dnsmasq.pl 117 } elsif ( $header =~ /^Authorization: basic (.+)$/ ) {
  /external/chromium_org/remoting/webapp/
host_list.js 139 var headers = { 'Authorization': 'OAuth ' + token };
312 'Authorization': 'OAuth ' + token,
341 var headers = { 'Authorization': 'OAuth ' + token };
oauth2_api.js 113 * Asynchronously exchanges an authorization code for access and refresh tokens.
122 * @param {string} code OAuth2 authorization code.
189 var headers = { 'Authorization': 'OAuth ' + token };
host_controller.js 194 'Authorization': 'OAuth ' + oauthToken,
session_connector.js 331 { 'Authorization': 'OAuth ' + token });
  /external/chromium_org/chrome/common/extensions/docs/examples/extensions/gdocs/
chrome_ex_oauth.js 61 * Authorization token URL. For an example, 'hd', 'hl', 'btmpl':
193 * Generates the Authorization header based on the oauth parameters.
196 * @return {String} An Authorization header containing the oauth_* params.
238 * Authorization token URL. For an example, 'hd', 'hl', 'btmpl':
426 * Starts an OAuth authorization flow for the current page. If a token exists,
500 * secret for later use and sends the authorization url to the supplied
  /external/chromium_org/chrome/common/extensions/docs/examples/extensions/oauth_contacts/
chrome_ex_oauth.js 61 * Authorization token URL. For an example, 'hd', 'hl', 'btmpl':
193 * Generates the Authorization header based on the oauth parameters.
196 * @return {String} An Authorization header containing the oauth_* params.
238 * Authorization token URL. For an example, 'hd', 'hl', 'btmpl':
426 * Starts an OAuth authorization flow for the current page. If a token exists,
500 * secret for later use and sends the authorization url to the supplied
  /external/chromium/chrome/browser/resources/picasaweb_uploader/js/
picasa_client.js 258 var headers = {'Authorization': 'GoogleLogin auth=' + this.authToken_};
278 headers['Authorization'] = 'GoogleLogin auth=' + this.authToken_;
  /external/chromium_org/chrome/browser/resources/file_manager/js/
share_dialog.js 34 * Wraps a Web View element and adds authorization headers to it.
47 * Initializes the web view by installing hooks injecting the authorization
92 name: 'Authorization',
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
org.eclipse.osgi.services_3.2.100.v20100503.jar 
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
urllib2.py 737 req.add_header('Proxy-authorization', 'Basic ' + creds)
892 auth_header = 'Authorization'
904 auth_header = 'Proxy-authorization'
    [all...]

Completed in 470 milliseconds

1 2