Home
last modified time | relevance | path

Searched refs:key_paths (Results 1 – 4 of 4) sorted by relevance

/aosp12/system/core/init/
H A Dfirst_stage_mount.cpp469 std::vector<std::string> key_paths; in PreloadAvbKeys() local
482 key_paths.emplace_back(std::move(full_path)); in PreloadAvbKeys()
484 std::sort(key_paths.begin(), key_paths.end()); in PreloadAvbKeys()
487 key_paths = Split(entry.avb_keys, ":"); in PreloadAvbKeys()
492 for (const auto& path : key_paths) { in PreloadAvbKeys()
/aosp12/packages/modules/adb/client/
H A Dauth.cpp424 const auto& key_paths = get_vendor_keys(); in adb_auth_init() local
427 adb_auth_inotify_init(key_paths); in adb_auth_init()
430 for (const std::string& path : key_paths) { in adb_auth_init()
/aosp12/system/update_engine/payload_consumer/
H A Ddelta_performer_integration_test.cc675 vector<string> key_paths{GetBuildArtifactsPath(kUnittestPrivateKeyPath)}; in ApplyDeltaFile() local
677 key_paths = {GetBuildArtifactsPath(kUnittestPrivateKeyECPath)}; in ApplyDeltaFile()
680 key_paths.push_back(GetBuildArtifactsPath(kUnittestPrivateKey2Path)); in ApplyDeltaFile()
684 key_paths, &expected_sig_data_length)); in ApplyDeltaFile()
/aosp12/frameworks/native/libs/adbd_auth/
H A Dadbd_auth.cpp391 static constexpr const char* key_paths[] = {"/adb_keys", "/data/misc/adb/adb_keys"};
393 for (const auto& path : key_paths) { in IteratePublicKeys()