Searched refs:local_path (Results 1 – 4 of 4) sorted by relevance
239 base::FilePath local_path(constants::kNonVolatileDirectory); in GetNonVolatileDirectory() local240 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()
134 auto local_path = path.string().substr(resolved_mount_point.length() + 1); in ValidateShimApex() local146 auto ex = expected_files.find(local_path); in ValidateShimApex()148 expected_files.erase(local_path); in ValidateShimApex()
419 auto local_path = "IMAGES/" + partition_name_ + ".img"; in OpenSourceImage() local431 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()
155 def get_local_asset_content(local_path): argument161 with open(os.path.join(os.path.dirname(__file__), local_path), 'r') as f: