/external/nist-sip/java/gov/nist/javax/sip/clientauthutils/ |
D | AuthenticationHelperImpl.java | 229 AuthorizationHeader authorization = null; in handleChallenge() local 236 authorization = this.getAuthorization(reoriginatedRequest in handleChallenge() 250 authorization = this.getAuthorization(reoriginatedRequest in handleChallenge() 257 "Created authorization header: " + authorization.toString()); in handleChallenge() 261 authorization, cacheTime); in handleChallenge() 263 reoriginatedRequest.addHeader(authorization); in handleChallenge() 312 AuthorizationHeader authorization = null; in getAuthorization() local 315 authorization = headerFactory.createProxyAuthorizationHeader(authHeader in getAuthorization() 318 authorization = headerFactory.createAuthorizationHeader(authHeader.getScheme()); in getAuthorization() 321 authorization.setUsername(userCredentials.getUserName()); in getAuthorization() [all …]
|
D | CredentialsCache.java | 62 AuthorizationHeader authorization, int cacheTime) { in cacheAuthorizationHeader() argument 63 String user = authorization.getUsername(); in cacheAuthorizationHeader() 65 if ( authorization == null) throw new NullPointerException("Null authorization domain"); in cacheAuthorizationHeader() 72 String realm = authorization.getRealm(); in cacheAuthorizationHeader() 81 authHeaders.add(authorization); in cacheAuthorizationHeader()
|
/external/chromium_org/base/mac/ |
D | scoped_authorizationref.h | 21 explicit ScopedAuthorizationRef(AuthorizationRef authorization = NULL) 22 : authorization_(authorization) { in authorization_() argument 31 void reset(AuthorizationRef authorization = NULL) { 32 if (authorization_ != authorization) { 36 authorization_ = authorization;
|
D | authorization_util.mm | 30 ScopedAuthorizationRef authorization; 34 &authorization); 68 status = AuthorizationCopyRights(authorization, 81 return authorization.release(); 95 OSStatus ExecuteWithPrivilegesAndGetPID(AuthorizationRef authorization, 115 OSStatus status = AuthorizationExecuteWithPrivileges(authorization, 155 OSStatus ExecuteWithPrivilegesAndWait(AuthorizationRef authorization, 162 OSStatus status = ExecuteWithPrivilegesAndGetPID(authorization,
|
D | authorization_util.h | 59 OSStatus ExecuteWithPrivilegesAndGetPID(AuthorizationRef authorization, 72 OSStatus ExecuteWithPrivilegesAndWait(AuthorizationRef authorization,
|
/external/chromium_org/net/http/ |
D | http_auth_handler_digest.cc | 354 std::string authorization = (std::string("Digest username=") + in AssembleCredentials() local 357 authorization += ", realm=" + HttpUtil::Quote(original_realm_); in AssembleCredentials() 358 authorization += ", nonce=" + HttpUtil::Quote(nonce_); in AssembleCredentials() 359 authorization += ", uri=" + HttpUtil::Quote(path); in AssembleCredentials() 362 authorization += ", algorithm=" + AlgorithmToString(algorithm_); in AssembleCredentials() 368 authorization += ", response=\"" + response + "\""; in AssembleCredentials() 371 authorization += ", opaque=" + HttpUtil::Quote(opaque_); in AssembleCredentials() 375 authorization += ", qop=" + QopToString(qop_); in AssembleCredentials() 376 authorization += ", nc=" + nc; in AssembleCredentials() 377 authorization += ", cnonce=" + HttpUtil::Quote(cnonce); in AssembleCredentials() [all …]
|
/external/chromium_org/chrome/browser/password_manager/ |
D | password_manager_util_mac.mm | 30 // authorization and not prompting the user when future requests are made. 31 base::mac::ScopedAuthorizationRef authorization( 35 return authorization.get() != NULL;
|
/external/nist-sip/java/gov/nist/javax/sip/parser/ |
D | AuthorizationParser.java | 47 public AuthorizationParser(String authorization) { in AuthorizationParser() argument 48 super(authorization); in AuthorizationParser()
|
/external/chromium_org/chrome/browser/mac/ |
D | keystone_registration.h | 62 authorization:(AuthorizationRef)authorization;
|
D | install_from_dmg.mm | 269 // Potentially shows an authorization dialog to request authentication to 271 // obtain authorization, which may result in the display of the dialog. 272 // Returns NULL if authorization is not performed because it does not appear 274 // application_directory. Returns NULL if authorization fails. 292 // authorization reference, and will attempt Keystone ticket promotion. 297 base::mac::ScopedAuthorizationRef authorization(authorization_arg); 300 if (authorization) { 307 authorization, 342 if (authorization) { 347 [keystone_glue promoteTicketWithAuthorization:authorization.release() [all …]
|
D | keystone_glue_unittest.mm | 34 authorization:(AuthorizationRef)authorization {
|
D | keystone_glue.mm | 116 // -registerWithParameters: or -promoteWithParameters:authorization: call. 810 base::mac::ScopedAuthorizationRef authorization( 813 if (!authorization.get()) { 817 [self promoteTicketWithAuthorization:authorization.release() synchronous:NO]; 822 base::mac::ScopedAuthorizationRef authorization(authorization_arg); 854 // -[KSRegistration promoteWithParameters:authorization:] is currently 879 authorization, 901 authorization_.swap(authorization); 916 authorization:authorization_]) {
|
/external/chromium_org/chrome/installer/util/ |
D | legacy_firewall_manager_win.cc | 82 base::win::ScopedComPtr<INetFwAuthorizedApplication> authorization = in SetAllowIncomingConnection() local 84 if (!authorization.get()) in SetAllowIncomingConnection() 86 HRESULT hr = authorized_apps->Add(authorization); in SetAllowIncomingConnection()
|
/external/chromium_org/chrome/browser/net/ |
D | probe_message.proto | 33 required bytes hash = 2; // 16-byte MD5 hash value for authorization. 37 optional Token token = 2; // For authorization.
|
/external/chromium_org/third_party/sqlite/src/test/ |
D | auth3.test | 13 # authorization callback returns SQLITE_IGNORE. 43 # by an SQLITE_DELETE authorization callback triggered by a
|
/external/lldb/source/Host/macosx/launcherXPCService/ |
D | LauncherXPCService.mm | 11 // Returns 0 if successful. This is launching as self. No need for further authorization.
|
D | LauncherRootXPCService.mm | 40 …// On Lion, because the rights initially doesn't exist in /etc/authorization, if an admin user log…
|
/external/chromium_org/chrome/common/extensions/api/ |
D | identity.idl | 95 // initiated by UI in your app explaining what the authorization is for. 96 // Failing to do this will cause your users to get authorization requests, 138 // initiated by UI in your app explaining what the authorization is for. 139 // Failing to do this will cause your users to get authorization requests
|
/external/oauth/core/src/main/java/net/oauth/ |
D | OAuthMessage.java | 360 public static List<OAuth.Parameter> decodeAuthorization(String authorization) { in decodeAuthorization() argument 362 if (authorization != null) { in decodeAuthorization() 363 Matcher m = AUTHORIZATION.matcher(authorization); in decodeAuthorization()
|
/external/chromium_org/remoting/host/mac/ |
D | me2me_preference_pane.mm | 164 OSStatus ExecuteWithPrivilegesAndGetPID(AuthorizationRef authorization, 184 OSStatus status = AuthorizationExecuteWithPrivileges(authorization, 330 // Ensure the authorization token is up-to-date before using it. 353 // Ensure the authorization token is up-to-date before using it. 546 AuthorizationRef authorization = 547 [[authorization_view_ authorization] authorizationRef]; 548 if (!authorization) { 560 authorization,
|
/external/chromium_org/third_party/libxslt/ |
D | Copyright | 24 ings in this Software without prior written authorization from him. 52 ings in this Software without prior written authorization from him.
|
/external/openssl/crypto/krb5/ |
D | krb5_asn.h | 216 KRB5_AUTHDATA *authorization; member
|
D | krb5_asn.c | 156 (KRB5_AUTHENTBODY, authorization, KRB5_AUTHDATA, 8),
|
/external/openssl/include/openssl/ |
D | krb5_asn.h | 216 KRB5_AUTHDATA *authorization; member
|
/external/chromium_org/third_party/libxml/src/ |
D | Copyright | 26 ings in this Software without prior written authorization from him.
|