Home
last modified time | relevance | path

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

/system/apex/apexd/
Dapex_file_test.cpp116 const std::string keyPath = in TEST() local
119 ASSERT_TRUE(android::base::ReadFileToString(keyPath, &keyContent)) in TEST()
120 << "Failed to read " << keyPath; in TEST()
/system/vold/
DMetadataCrypt.cpp122 auto keyPath = dir + "/" + kFn_keymaster_key_blob; in commit_key() local
126 if (!android::base::ReadFileToString(keyPath, &key)) { in commit_key()
130 if (rename(newKeyPath.c_str(), keyPath.c_str()) != 0) { in commit_key()
131 PLOG(ERROR) << "Unable to move upgraded key to location: " << keyPath; in commit_key()
DVolumeManager.cpp350 std::string keyPath = android::vold::BuildKeyPath(normalizedGuid); in forgetPartition() local
351 if (unlink(keyPath.c_str()) != 0) { in forgetPartition()
352 LOG(ERROR) << "Failed to unlink " << keyPath; in forgetPartition()
/system/extras/verity/
DBootSignature.java254 String keyPath, in doSignature() argument
275 PrivateKey key = Utils.loadDERPrivateKeyFromFile(keyPath); in doSignature()