Home
last modified time | relevance | path

Searched refs:has_slot (Results 1 – 5 of 5) sorted by relevance

/system/keymaster/android_keymaster/
Dpure_soft_secure_key_storage.cpp132 keymaster_error_t PureSoftSecureKeyStorage::HasSlot(bool* has_slot) { in HasSlot() argument
138 *has_slot = pure_soft_secure_storage_map_->HasSlot(); in HasSlot()
/system/keymaster/include/keymaster/
Dsecure_key_storage.h64 virtual keymaster_error_t HasSlot(bool* has_slot) = 0;
Dpure_soft_secure_key_storage.h57 keymaster_error_t HasSlot(bool* has_slot) override;
/system/core/fastboot/
Dfastboot.cpp785 std::string has_slot; in HandlePartitionExists() local
786 if (fb->GetVar("has-slot:" + partition_name, &has_slot) != fastboot::SUCCESS || in HandlePartitionExists()
787 (has_slot != "yes" && has_slot != "no")) { in HandlePartitionExists()
1225 std::string has_slot; in do_for_partition() local
1230 if (fb->GetVar("has-slot:" + part_tokens[0], &has_slot) != fastboot::SUCCESS) { in do_for_partition()
1232 has_slot = "no"; in do_for_partition()
1234 if (has_slot == "yes") { in do_for_partition()
1261 std::string has_slot; in do_for_partitions() local
1266 if (fb->GetVar("has-slot:" + part_tokens[0], &has_slot) != fastboot::SUCCESS) { in do_for_partitions()
1270 if (has_slot == "yes") { in do_for_partitions()
/system/core/fastboot/fuzzy_fastboot/
Dmain.cpp204 std::string has_slot; in TEST_F() local
205 EXPECT_EQ(fb->GetVar("has-slot:system", &has_slot), SUCCESS) << "getvar has-slot:system failed"; in TEST_F()
209 if (has_slot == "yes") { in TEST_F()