Home
last modified time | relevance | path

Searched refs:link_path (Results 1 – 3 of 3) sorted by relevance

/aosp12/build/make/tools/warn/
H A Dwarn_common.py165 link_path = flags.url + '/' + normalized_path
167 link_path += flags.separator + line_number_str
168 return link_path
178 link_path = None
192 link_path = remove_prefix(raw_path, '/src/third_party/')
195 link_path = link_path[len('/chrome_root'):] # remove chrome_root
197 link_path = remove_prefix(raw_path, '/chrome_root/src/')
198 link_path = link_path[len('/chrome_root'):] # remove chrome_root
204 link_path = '/src/out/Debug/gen/' + normalized_path
208 if not link_path and (raw_path.startswith('src/') or
[all …]
/aosp12/system/core/init/
H A Ddevices.cpp360 auto link_path = "/dev/block/" + type + "/" + device; in GetBlockDeviceSymlinks() local
370 links.emplace_back(link_path + "/by-name/" + partition_name_sanitized); in GetBlockDeviceSymlinks()
382 links.emplace_back(link_path + "/" + uevent.path.substr(last_slash + 1)); in GetBlockDeviceSymlinks()
402 std::string link_path; in RemoveDeviceMapperLinks() local
407 if (Readlink(path, &link_path) && link_path == devpath) { in RemoveDeviceMapperLinks()
430 } else if (std::string link_path; in HandleDevice() local
431 Readlink(link, &link_path) && link_path != devpath) { in HandleDevice()
433 << ", which already links to: " << link_path; in HandleDevice()
444 std::string link_path; in HandleDevice() local
445 if (Readlink(link, &link_path) && link_path == devpath) { in HandleDevice()
/aosp12/bionic/tests/
H A Ddlfcn_symlink_support.cpp70 std::string link_path = path_dir + "/" + symlink_name_prefix + suffix + ".so"; in create_dlfcn_test_symlink() local
72 ASSERT_TRUE(symlink(source_file_path.c_str(), link_path.c_str()) == 0) << strerror(errno); in create_dlfcn_test_symlink()
73 *result = link_path; in create_dlfcn_test_symlink()