HomeSort by relevance Sort by last modified time
    Searched full:credentials (Results 76 - 100 of 981) sorted by null

1 2 34 5 6 7 8 91011>>

  /external/wpa_supplicant_8/wpa_supplicant/examples/
wpas-dbus-new-wps.py 33 def credentials(cred): function
34 print "WPS credentials: %s" % (cred)
62 bus.add_signal_receiver(credentials,
64 signal_name="Credentials")
  /frameworks/base/docs/html/training/
building-userinfo.jd 8 credentials they use for Google. These features allow your app to connect users with people they
  /prebuilts/tools/common/m2/repository/com/google/auth/google-auth-library-credentials/
maven-metadata.xml 4 <artifactId>google-auth-library-credentials</artifactId>
  /external/chromium-trace/catapult/third_party/gsutil/third_party/boto/tests/integration/s3/
test_https_cert_validation.py 77 # Set up bogus credentials so that the auth module is willing to go
80 boto.config.add_section('Credentials')
81 boto.config.set('Credentials', 'gs_access_key_id', 'xyz')
82 boto.config.set('Credentials', 'gs_secret_access_key', 'xyz')
83 boto.config.set('Credentials', 'aws_access_key_id', 'xyz')
84 boto.config.set('Credentials', 'aws_secret_access_key', 'xyz')
97 # credentials" errors since the config used does not contain any
98 # credentials.
122 boto.config.set('Credentials', 'gs_host', INVALID_HOSTNAME_HOST)
123 boto.config.set('Credentials', 's3_host', INVALID_HOSTNAME_HOST
    [all...]
  /external/dbus/dbus/
dbus-keyring.h 29 #include <dbus/dbus-credentials.h>
35 DBusKeyring* _dbus_keyring_new_for_credentials (DBusCredentials *credentials,
44 DBusCredentials *credentials);
  /external/libchrome/sandbox/linux/services/
namespace_sandbox_unittest.cc 23 #include "sandbox/linux/services/credentials.h"
51 if (!Credentials::CanCreateProcessInNewUserNS()) {
115 CHECK(sandbox::Credentials::MoveToNewUserNS());
116 CHECK(sandbox::Credentials::DropFileSystemAccess(ProcUtil::OpenProc().get()));
153 if (!Credentials::CanCreateProcessInNewUserNS()) {
157 CHECK(sandbox::Credentials::MoveToNewUserNS());
175 if (!Credentials::CanCreateProcessInNewUserNS()) {
179 CHECK(sandbox::Credentials::MoveToNewUserNS());
186 CHECK(!Credentials::HasAnyCapability());
197 if (!Credentials::CanCreateProcessInNewUserNS())
    [all...]
namespace_utils_unittest.cc 15 #include "sandbox/linux/services/credentials.h"
24 const bool can_create_user_ns = Credentials::CanCreateProcessInNewUserNS();
36 if (!Credentials::CanCreateProcessInNewUserNS()) {
  /external/okhttp/okhttp/src/main/java/com/squareup/okhttp/
Credentials.java 21 /** Factory for HTTP authorization credentials. */
22 public final class Credentials {
23 private Credentials() {
  /frameworks/base/core/java/android/net/
Credentials.java 20 * A class for representing UNIX credentials passed via ancillary data
23 public class Credentials {
31 public Credentials (int pid, int uid, int gid) {
  /frameworks/base/packages/Keyguard/src/com/android/keyguard/
KeyguardSecurityCallback.java 22 * @param securityVerified true if the user correctly entered credentials for the given screen.
32 * Checks if keyguard is in "verify credentials" mode.
40 * @param success set to 'true' if user correctly entered security credentials.
  /frameworks/base/core/java/android/webkit/
WebViewDatabase.java 43 * Note that these are unrelated to HTTP authentication credentials.
55 * Note that these are unrelated to HTTP authentication credentials.
65 * Gets whether there are any saved credentials for HTTP authentication.
67 * @return whether there are any saved credentials
75 * Clears any saved credentials for HTTP authentication.
  /external/jetty/src/java/org/eclipse/jetty/security/authentication/
BasicAuthenticator.java 67 String credentials = request.getHeader(HttpHeaders.AUTHORIZATION); local
74 if (credentials != null)
76 int space=credentials.indexOf(' ');
79 String method=credentials.substring(0,space);
82 credentials = credentials.substring(space+1);
83 credentials = B64Code.decode(credentials,StringUtil.__ISO_8859_1);
84 int i = credentials.indexOf(':');
87 String username = credentials.substring(0,i)
    [all...]
  /external/apache-http/src/org/apache/http/auth/
AuthScope.java 40 * {@link Credentials Credentials} apply to.
82 /** The authentication scheme the credentials apply to. */
85 /** The realm the credentials apply to. */
88 /** The host the credentials apply to. */
91 /** The port the credentials apply to. */
94 /** Creates a new credentials scope for the given
98 * @param host the host the credentials apply to. May be set
101 * @param port the port the credentials apply to. May be set
104 * @param realm the realm the credentials apply to. May be set
    [all...]
  /external/chromium-trace/catapult/third_party/gsutil/third_party/oauth2client/tests/
test_jwt.py 34 from oauth2client.client import Credentials
212 credentials = SignedJwtAssertionCredentials(
221 http = credentials.authorize(http)
227 credentials = SignedJwtAssertionCredentials(
232 json = credentials.to_json()
233 restored = Credentials.new_from_json(json)
234 self.assertEqual(credentials.private_key, restored.private_key)
235 self.assertEqual(credentials.private_key_password,
237 self.assertEqual(credentials.kwargs, restored.kwargs)
239 def _credentials_refresh(self, credentials)
    [all...]
  /packages/apps/Settings/src/com/android/settings/
UserCredentialsSettings.java 32 import android.security.Credentials;
175 Log.w(TAG, "Removing credentials", e);
195 * Opens a background connection to KeyStore to list user credentials.
196 * The credentials are stored in a {@link CredentialAdapter} attached to the main
203 SortedMap<String, Credential> credentials = new TreeMap<>(); local
207 // Do not show work profile keys in user credentials
212 Credential c = credentials.get(alias);
214 credentials.put(alias, (c = new Credential(alias)));
219 return credentials;
223 protected void onPostExecute(SortedMap<String, Credential> credentials) {
    [all...]
  /external/chromium-trace/catapult/third_party/gsutil/third_party/oauth2client/oauth2client/
multistore_file.py 18 credentials can be stored in one file. That file supports locking
39 # JSON serialized Credentials.
55 from oauth2client.client import Credentials
81 filename: The JSON file storing a set of credentials
107 filename: The JSON file storing a set of credentials
130 filename: The JSON file storing a set of credentials
150 filename: The JSON file storing a set of credentials
156 get the actual credentials.
171 filename: The JSON file storing a set of credentials
188 """A file backed store for multiple credentials.""
    [all...]
client.py 72 # The value representing user credentials.
75 # The value representing service account credentials.
79 # Application Default Credentials.
81 # The ~/.config subdirectory containing gcloud credentials. Intended
88 # Default Credentials.
90 'The Application Default Credentials are not available. They are available '
93 ' must be defined pointing to a file defining the credentials. See '
94 'https://developers.google.com/accounts/docs/application-default-credentials' # pylint:disable=line-too-long
144 """Error retrieving the Application Default Credentials."""
175 class Credentials(object)
    [all...]
  /developers/samples/android/security/ConfirmCredential/
template-params.xml 32 This sample demonstrates how you can use device credentials (PIN, Pattern, Password) in your app
68 A sample that demonstrates how to use device credentials (PIN, Pattern, Password) in your app
74 This sample demonstrates how you can use device credentials (PIN, Pattern, Password) in your app
79 with their device credentials and pass [KeyGenParameterSpec][2].
83 user as authenticated if the user has been authenticated with the device credentials
87 to confirm device credentials to the user.
  /system/tpm/attestation/server/
database_impl_test.cc 92 database_->GetProtobuf().credentials().conformance_credential());
138 database_->GetProtobuf().credentials().conformance_credential());
146 database_->GetProtobuf().credentials().platform_credential());
149 database_->GetProtobuf().credentials().platform_credential());
157 database_->GetProtobuf().credentials().platform_credential());
160 database_->GetProtobuf().credentials().platform_credential());
  /external/chromium-trace/catapult/third_party/gsutil/third_party/boto/boto/pyami/
copybot.cfg 2 # Your AWS Credentials
4 [Credentials]
9 # If you want to use a separate set of credentials when writing
  /frameworks/support/v4/java/android/support/v4/os/
UserManagerCompat.java 31 * unlocked only after they've entered their credentials (such as a lock
45 * is unlocked only after they've entered their credentials (such as a lock
59 * is unlocked only after they've entered their credentials (such as a lock
  /external/autotest/client/site_tests/login_CryptohomeOwnerQuery/
control 16 status. The test will wipe credentials from the device and verify that the
  /external/chromium-trace/catapult/third_party/apiclient/googleapiclient/
sample_tools.py 41 credentials are stored in a file named apiname.dat, and the
83 # Prepare credentials, and authorize HTTP object with them.
84 # If the credentials don't exist or are invalid run through the native client
86 # credentials will get written back to a file.
88 credentials = storage.get()
89 if credentials is None or credentials.invalid:
90 credentials = tools.run_flow(flow, storage, flags)
91 http = credentials.authorize(http = httplib2.Http())
  /external/curl/tests/data/
test838 37 IMAP external authentication without credentials
test840 38 IMAP external authentication with initial response without credentials

Completed in 6595 milliseconds

1 2 34 5 6 7 8 91011>>