HomeSort by relevance Sort by last modified time
    Searched refs:Credentials (Results 76 - 100 of 149) sorted by null

1 2 34 5 6

  /packages/apps/Settings/src/com/android/settings/vpn2/
VpnSettings.java 39 import android.security.Credentials;
469 for (String key : keyStore.list(Credentials.VPN)) {
470 final VpnProfile profile = VpnProfile.decode(key, keyStore.get(Credentials.VPN + key));
  /frameworks/opt/net/wifi/service/java/com/android/server/wifi/hotspot2/pps/
Credential.java 4 import android.security.Credentials;
155 byte[] octets = keyStore.get(Credentials.USER_CERTIFICATE + alias);
  /prebuilts/eclipse/mavenplugins/tycho/tycho-dependencies-m2repo/org/eclipse/tycho/tycho-bundles-external/0.20.0/eclipse/plugins/
org.eclipse.equinox.p2.repository_2.3.0.v20130412-2032.jar 
  /prebuilts/tools/common/m2/repository/org/eclipse/tycho/tycho-bundles-external/0.18.1/eclipse/plugins/
org.eclipse.equinox.p2.repository_2.3.0.v20130412-2032.jar 
  /external/libchrome/sandbox/linux/services/
namespace_sandbox.cc 26 #include "sandbox/linux/services/credentials.h"
178 CHECK(Credentials::DropAllCapabilitiesOnCurrentThread());
  /packages/apps/CertInstaller/src/com/android/certinstaller/
WiFiInstaller.java 14 import android.security.Credentials;
  /prebuilts/tools/common/m2/repository/com/google/auth/google-auth-library-oauth2-http/0.3.0/
google-auth-library-oauth2-http-0.3.0.jar 
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
org.eclipse.equinox.p2.repository_2.0.1.R36x_v20100823.jar 
  /external/chromium-trace/catapult/third_party/gsutil/third_party/gcs-oauth2-boto-plugin/gcs_oauth2_boto_plugin/
oauth2_client.py 53 from oauth2client.client import Credentials
387 credentials = self.GetCredentials()
389 credentials.refresh(http)
390 return AccessToken(credentials.access_token, credentials.token_expiry,
446 Credentials.NON_SERIALIZED_MEMBERS)
468 raise Exception('Your JSON credentials are invalid; '
577 """Fetches a credentials objects from the provider's token endpoint."""
579 credentials = OAuth2Credentials(
582 return credentials
    [all...]
  /external/apache-http/src/org/apache/http/impl/client/
DefaultRequestDirector.java 59 import org.apache.http.auth.Credentials;
737 Credentials creds = this.proxyAuthState.getCredentials();
    [all...]
  /frameworks/base/services/core/java/com/android/server/connectivity/
Vpn.java 73 import android.security.Credentials;
    [all...]
  /frameworks/opt/net/wifi/tests/wifitests/src/com/android/server/wifi/
WifiConfigManagerTest.java 39 import android.security.Credentials;
    [all...]
  /packages/apps/Settings/src/com/android/settings/wifi/
WifiConfigController.java 39 import android.security.Credentials;
    [all...]
  /external/chromium-trace/catapult/third_party/gsutil/third_party/boto/
README.rst 188 Your credentials can be passed into the methods that create
190 following environment variables to ascertain your credentials:
196 Credentials and other boto-related settings can also be stored in a
  /external/chromium-trace/catapult/third_party/gsutil/third_party/oauth2client/tests/
test_appengine.py 62 from oauth2client.client import Credentials
162 credentials = AppAssertionCredentials(scope)
164 self.assertRaises(AccessTokenRefreshError, credentials.refresh, http)
177 credentials = AppAssertionCredentials(scope)
179 credentials.refresh(http)
180 self.assertEqual('a_token_123', credentials.access_token)
182 json = credentials.to_json()
183 credentials = Credentials.new_from_json(json)
186 credentials.scope
    [all...]
test_oauth2client.py 49 from oauth2client.client import Credentials
127 credentials = Credentials()
128 json = credentials.to_json()
129 restored = Credentials.new_from_json(json)
190 def validate_service_account_credentials(self, credentials):
191 self.assertTrue(isinstance(credentials, _ServiceAccountCredentials))
192 self.assertEqual('123', credentials._service_account_id)
193 self.assertEqual('dummy@google.com', credentials._service_account_email)
194 self.assertEqual('ABCDEF', credentials._private_key_id
    [all...]
  /frameworks/base/services/core/java/com/android/server/pm/
DefaultPermissionGrantPolicy.java 40 import android.security.Credentials;
302 Intent certInstallerIntent = new Intent(Credentials.INSTALL_ACTION);
    [all...]
  /prebuilts/eclipse/mavenplugins/tycho/tycho-dependencies-m2repo/org/eclipse/tycho/org.eclipse.tycho.core.shared/0.20.0/
org.eclipse.tycho.core.shared-0.20.0.jar 
  /prebuilts/tools/common/m2/repository/org/eclipse/tycho/org.eclipse.tycho.core.shared/0.18.1/
org.eclipse.tycho.core.shared-0.18.1.jar 
  /external/chromium-trace/catapult/third_party/gsutil/third_party/httplib2/python2/httplib2/
__init__.py 458 # For credentials we need two things, first
467 def __init__(self, credentials, host, request_uri, headers, response, content, http):
471 self.credentials = credentials
501 def __init__(self, credentials, host, request_uri, headers, response, content, http):
502 Authentication.__init__(self, credentials, host, request_uri, headers, response, content, http)
507 headers['authorization'] = 'Basic ' + base64.b64encode("%s:%s" % self.credentials).strip()
513 def __init__(self, credentials, host, request_uri, headers, response, content, http):
514 Authentication.__init__(self, credentials, host, request_uri, headers, response, content, http)
524 self.A1 = "".join([self.credentials[0], ":", self.challenge['realm'], ":", self.credentials[1]]
    [all...]
  /external/chromium-trace/catapult/third_party/gsutil/third_party/httplib2/python3/httplib2/
__init__.py 408 # For credentials we need two things, first
417 def __init__(self, credentials, host, request_uri, headers, response, content, http):
421 self.credentials = credentials
471 def __init__(self, credentials, host, request_uri, headers, response, content, http):
472 Authentication.__init__(self, credentials, host, request_uri, headers, response, content, http)
477 headers['authorization'] = 'Basic ' + base64.b64encode(("%s:%s" % self.credentials).encode('utf-8')).strip().decode('utf-8')
483 def __init__(self, credentials, host, request_uri, headers, response, content, http):
484 Authentication.__init__(self, credentials, host, request_uri, headers, response, content, http)
494 self.A1 = "".join([self.credentials[0], ":", self.challenge['realm'], ":", self.credentials[1]]
    [all...]
  /external/okhttp/okhttp-tests/src/test/java/com/squareup/okhttp/
CallTest.java 321 String credential = Credentials.basic("jesse", "secret");
344 String credential = Credentials.basic("jesse", "secret");
358 String credential = Credentials.basic("jesse", "secret");
    [all...]
URLConnectionTest.java     [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/
bits1_5.h 87 BG_AUTH_CREDENTIALS_UNION Credentials;
102 virtual HRESULT WINAPI SetCredentials(BG_AUTH_CREDENTIALS *credentials) = 0;
149 HRESULT (WINAPI *SetCredentials)(IBackgroundCopyJob2 *This,BG_AUTH_CREDENTIALS *credentials);
198 #define IBackgroundCopyJob2_SetCredentials(This,credentials) (This)->lpVtbl->SetCredentials(This,credentials)
214 HRESULT WINAPI IBackgroundCopyJob2_SetCredentials_Proxy(IBackgroundCopyJob2 *This,BG_AUTH_CREDENTIALS *credentials);
  /frameworks/base/core/java/android/app/admin/
DevicePolicyManager.java 50 import android.security.Credentials;
489 * copied, along with its credentials to the managed profile and removed from the primary user.
    [all...]

Completed in 2074 milliseconds

1 2 34 5 6