Home
last modified time | relevance | path

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

/external/avb/examples/uefi/
Duefi_avb_ops.c378 EFI_DEVICE_PATH* disk_path; in get_disk_block_io() local
398 disk_path = (EFI_DEVICE_PATH*)avb_malloc(path_bytes); in get_disk_block_io()
399 avb_memcpy(disk_path, *io_path, path_bytes); in get_disk_block_io()
407 avb_free(disk_path); in get_disk_block_io()
413 &disk_path, in get_disk_block_io()
418 avb_free(disk_path); in get_disk_block_io()
433 avb_free(disk_path); in get_disk_block_io()
444 avb_free(disk_path); in get_disk_block_io()
452 avb_free(disk_path); in get_disk_block_io()
467 avb_free(disk_path); in get_disk_block_io()
[all …]
/external/protobuf/src/google/protobuf/compiler/
Dimporter.cc377 const string& disk_path) { in MapPath() argument
378 mappings_.push_back(Mapping(virtual_path, CanonicalizePath(disk_path))); in MapPath()
391 if (ApplyMapping(canonical_disk_file, mappings_[i].disk_path, in DiskFileToVirtualFile()
407 mappings_[i].disk_path, shadowing_disk_file)) { in DiskFileToVirtualFile()
458 mappings_[i].disk_path, &temp_disk_file)) { in OpenVirtualFile()
Dimporter.h254 void MapPath(const string& virtual_path, const string& disk_path);
302 string disk_path; member
306 : virtual_path(virtual_path_param), disk_path(disk_path_param) {} in Mapping()
Dcommand_line_interface.cc1119 string disk_path; in InterpretArgument() local
1124 disk_path = parts[i]; in InterpretArgument()
1127 disk_path = parts[i].substr(equals_pos + 1); in InterpretArgument()
1130 if (disk_path.empty()) { in InterpretArgument()
1138 if (access(disk_path.c_str(), F_OK) < 0) { in InterpretArgument()
1139 std::cerr << disk_path << ": warning: directory does not exist." in InterpretArgument()
1146 proto_path_.push_back(pair<string, string>(virtual_path, disk_path)); in InterpretArgument()