HomeSort by relevance Sort by last modified time
    Searched defs:cryptohome (Results 1 - 18 of 18) sorted by null

  /external/chromium_org/chromeos/cryptohome/
mock_async_method_caller.h 12 #include "chromeos/cryptohome/async_method_caller.h"
15 namespace cryptohome { namespace
100 } // namespace cryptohome
async_method_caller.h 16 namespace cryptohome { namespace
18 // Note: This file is placed in ::cryptohome instead of ::chromeos::cryptohome
19 // since there is already a namespace ::cryptohome which holds the error code
20 // enum (MountError) and referencing ::chromeos::cryptohome and ::cryptohome
27 CREATE_IF_MISSING = 1, // Create a cryptohome if it does not exist yet.
31 // This class manages calls to Cryptohome service's 'async' methods.
42 // Asks cryptohomed to asynchronously try to find the cryptohome for
49 // Asks cryptohomed to asynchronously try to find the cryptohome fo
    [all...]
mock_async_method_caller.cc 5 #include "chromeos/cryptohome/mock_async_method_caller.h"
11 namespace cryptohome { namespace
21 : success_(false), return_code_(cryptohome::MOUNT_ERROR_NONE) {
105 } // namespace cryptohome
async_method_caller.cc 5 #include "chromeos/cryptohome/async_method_caller.h"
16 namespace cryptohome { namespace
70 "Couldn't initiate async mount of cryptohome."));
91 "Couldn't initiate async mount of cryptohome."));
102 "Couldn't initiate async mount public of cryptohome."));
112 "Couldn't initiate async removal of cryptohome."));
267 // 3. Cryptohome will return the result asynchronously as a signal with
370 } // namespace cryptohome
  /external/chromium_org/chrome/test/functional/
chromeos_oobe.py 16 from autotest.cros import cryptohome namespace
32 cryptohome.remove_all_vaults()
chromeos_volume.py 16 from autotest.cros import cryptohome namespace
30 cryptohome.remove_all_vaults()
chromeos_accessibility.py 17 from autotest.cros import cryptohome namespace
34 cryptohome.remove_all_vaults()
chromeos_ephemeral.py 14 from autotest.cros import cryptohome namespace
21 cryptohome shadow directories or local state prefs should be created for
38 user_hash = cryptohome.get_user_hash(self._usernames[user_index])
74 cryptohome.is_vault_mounted(device_regex=device_regex,
82 self.assertFalse(cryptohome.is_vault_mounted(allow_fail=True),
chromeos_login.py 18 from autotest.cros import cryptohome namespace
33 cryptohome.remove_all_vaults()
289 cryptohome.remove_all_vaults()
334 cryptohome.remove_all_vaults()
  /external/chromium_org/chromeos/attestation/
attestation_flow.h 19 namespace cryptohome { namespace
23 } // namespace cryptohome
57 AttestationFlow(cryptohome::AsyncMethodCaller* async_caller,
125 // not_used - An artifact of the cryptohome D-Bus interface; ignored.
129 cryptohome::MountError not_used);
186 cryptohome::AsyncMethodCaller* async_caller_;
  /external/chromium/chrome/browser/chromeos/login/
enterprise_enrollment_screen.cc 26 chromeos::CryptohomeLibrary* cryptohome = local
28 if (cryptohome) {
29 if (cryptohome->TpmIsEnabled() &&
30 !cryptohome->TpmIsBeingOwned() &&
31 !cryptohome->TpmIsOwned()) {
32 cryptohome->TpmCanAttemptOwnership();
77 chromeos::CryptohomeLibrary* cryptohome = local
79 if (cryptohome &&
80 cryptohome->InstallAttributesIsReady() &&
81 !cryptohome->InstallAttributesIsFirstInstall())
    [all...]
eula_view.cc 229 chromeos::CryptohomeLibrary* cryptohome = local
233 if (password_->empty() && cryptohome->TpmIsReady()) {
234 password_acquired = cryptohome->TpmGetPassword(password_);
login_utils.cc 309 CryptohomeLibrary* cryptohome = CrosLibrary::Get()->GetCryptohomeLibrary(); local
310 if (cryptohome->TpmIsEnabled() && !cryptohome->TpmIsBeingOwned()) {
311 if (cryptohome->TpmIsOwned()) {
312 cryptohome->TpmClearStoredPassword();
314 cryptohome->TpmCanAttemptOwnership();
  /external/chromium_org/chrome/test/pyautolib/chromeos/
suid_actions.py 24 from autotest.cros import cryptohome namespace
85 """Remove any existing cryptohome vaults."""
86 cryptohome.remove_all_vaults()
  /external/chromium_org/chrome/browser/extensions/api/enterprise_platform_keys_private/
enterprise_platform_keys_private_api.h 27 namespace cryptohome { namespace
61 cryptohome::AsyncMethodCaller* async_caller,
101 cryptohome::AsyncMethodCaller* async_caller_;
133 cryptohome::AsyncMethodCaller* async_caller,
168 cryptohome::AsyncMethodCaller* async_caller,
194 cryptohome::MountError return_code);
  /external/chromium_org/chrome/browser/policy/
browser_policy_connector.cc 72 #include "chromeos/cryptohome/cryptohome_library.h"
117 chromeos::CryptohomeLibrary* cryptohome = local
122 new EnterpriseInstallAttributes(cryptohome, cryptohome_client));
  /external/chromium/chrome/browser/ui/webui/options/
certificate_manager_handler.cc 978 chromeos::CryptohomeLibrary* cryptohome = local
    [all...]
  /external/chromium_org/chrome/browser/chromeos/login/
login_utils.cc 67 #include "chromeos/cryptohome/cryptohome_library.h"
497 CryptohomeLibrary* cryptohome = CryptohomeLibrary::Get(); local
499 if (cryptohome->TpmIsEnabled() && !cryptohome->TpmIsBeingOwned()) {
500 if (cryptohome->TpmIsOwned()) {
501 cryptohome->TpmClearStoredPassword();
503 cryptohome->TpmCanAttemptOwnership();

Completed in 817 milliseconds