Home
last modified time | relevance | path

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

/system/update_engine/aosp/
Dhardware_android.cc239 base::FilePath local_path(constants::kNonVolatileDirectory); in GetNonVolatileDirectory() local
240 if (!base::DirectoryExists(local_path)) { in GetNonVolatileDirectory()
241 LOG(ERROR) << "Non-volatile directory not found: " << local_path.value(); in GetNonVolatileDirectory()
244 *path = local_path; in GetNonVolatileDirectory()
/system/apex/apexd/
Dapex_shim.cpp134 auto local_path = path.string().substr(resolved_mount_point.length() + 1); in ValidateShimApex() local
146 auto ex = expected_files.find(local_path); in ValidateShimApex()
148 expected_files.erase(local_path); in ValidateShimApex()
/system/core/fs_mgr/libsnapshot/
Dmake_cow_from_ab_ota.cpp419 auto local_path = "IMAGES/" + partition_name_ + ".img"; in OpenSourceImage() local
431 if (FindEntry(source_tf_zip_.get(), local_path, &entry)) { in OpenSourceImage()
432 LOG(ERROR) << "not found in archive: " << local_path; in OpenSourceImage()
436 LOG(ERROR) << "could not extract " << local_path; in OpenSourceImage()
444 unzip_fd.reset(openat(source_tf_fd_.get(), local_path.c_str(), O_RDONLY)); in OpenSourceImage()
446 PLOG(ERROR) << "open failed: " << FLAGS_source_tf << "/" << local_path; in OpenSourceImage()
/system/extras/simpleperf/scripts/inferno/
Dinferno.py155 def get_local_asset_content(local_path): argument
161 with open(os.path.join(os.path.dirname(__file__), local_path), 'r') as f: