Searched refs:abs_path (Results 1 – 2 of 2) sorted by relevance
| /rocksdb-6.9/build_tools/ |
| D | amalgamate.py | 39 def find_header(name, abs_path, include_paths): argument 40 samedir = path.join(path.dirname(abs_path), name) 49 def expand_include(include_path, f, abs_path, source_out, header_out, include_paths, public_include… argument 59 def process_file(f, abs_path, source_out, header_out, include_paths, public_include_paths): argument 65 include_path = find_header(filename, abs_path, include_paths) 74 include_path = find_header(filename, abs_path, public_include_paths) 81 … expand_include(include_path, f, abs_path, header_out, None, public_include_paths, []) 83 … sys.exit("unable to find {}, included in {} on line {}".format(filename, abs_path, line)) 86 print('#line {} "{}"'.format(line+1, abs_path), file=source_out) 104 abs_path = path.abspath(filename) [all …]
|
| /rocksdb-6.9/utilities/backupable/ |
| D | backupable_db.cc | 1284 const auto abs_path = GetAbsolutePath(file_info->filename); in VerifyBackup() local 1285 if (curr_abs_path_to_size.find(abs_path) == curr_abs_path_to_size.end()) { in VerifyBackup() 1286 return Status::NotFound("File missing: " + abs_path); in VerifyBackup() 1288 if (file_info->size != curr_abs_path_to_size[abs_path]) { in VerifyBackup() 1289 return Status::Corruption("File corrupted: " + abs_path); in VerifyBackup() 1822 std::string abs_path = backup_dir + "/" + filename; in LoadFromFile() local 1824 size = abs_path_to_size.at(abs_path); in LoadFromFile() 1826 return Status::Corruption("Size missing for pathname: " + abs_path); in LoadFromFile()
|