Searched refs:path_name (Results 1 – 9 of 9) sorted by relevance
/system/core/libmodprobe/ |
D | libmodprobe_ext.cpp | 34 bool Modprobe::Insmod(const std::string& path_name, const std::string& parameters) { in Insmod() argument 36 TEMP_FAILURE_RETRY(open(path_name.c_str(), O_RDONLY | O_NOFOLLOW | O_CLOEXEC))); in Insmod() 38 PLOG(ERROR) << "Could not open module '" << path_name << "'"; in Insmod() 42 auto canonical_name = MakeCanonical(path_name); in Insmod() 52 LOG(INFO) << "Loading module " << path_name << " with args '" << options << "'"; in Insmod() 60 PLOG(ERROR) << "Failed to insmod '" << path_name << "' with args '" << options << "'"; in Insmod() 64 LOG(INFO) << "Loaded kernel module " << path_name; in Insmod()
|
D | libmodprobe_ext_test.cpp | 36 bool Modprobe::Insmod(const std::string& path_name, const std::string& parameters) { in Insmod() argument 37 auto deps = GetDependencies(MakeCanonical(path_name)); in Insmod() 45 if (android::base::StartsWith(*it, path_name)) { in Insmod() 50 auto options_iter = module_options_.find(MakeCanonical(path_name)); in Insmod() 58 modules_loaded.emplace_back(path_name + options); in Insmod()
|
/system/media/camera/docs/ |
D | camera_metadata_tag_info.mako | 36 ${"[%s]" %(path_name(i)) | csym,pad(36)} = "${path_name(i)}", 42 ${"[%s]" %(path_name(i)) | csym,pad(36)} = { ${path_name(i) | csym}_START, 43 ${path_name(i) | csym}_END }, 48 static tag_info_t ${path_name(sec) | csyml}[${path_name(sec) | csym}_END - 49 ${path_name(sec) | csym}_START] = { 51 [ ${entry.name | csym} - ${path_name(sec) | csym}_START ] = 60 ${path_name(i) | csyml},
|
D | camera_metadata_tags.mako | 52 ${path_name(i) | csym}, 65 ${path_name(i) + '.start' | csym,ljust(30)} = ${path_name(i) | csym,pad(64)} << 16, 81 ${path_name(find_parent_section(entry)) | csym}_START, 86 ${path_name(sec) | csym}_END,
|
D | HidlMetadata.mako | 55 ${path_name(section) | csym} = 59 ${path_name(section) | csym}, 76 ${path_name(i) + '.start' | csym} = CameraMetadataSection:${path_name(i) | csym} << 16, 110 …${entry.name + " =" | csym} CameraMetadataSectionStart:${path_name(find_parent_section(entry)) | c… 113 …oid.hardware.camera.metadata@%d.%d' % prevVersion}::CameraMetadataTag:${path_name(find_parent_sect… 121 …${path_name(sec) | csym}${'_END' if first_hal_minor_version(hal_major_version()) == hal_minor_vers…
|
D | ndk_camera_metadata_tags.mako | 59 ${ndk(path_name(i)) | csym}, 71 ${ndk(path_name(i)) + '.start' | csym,ljust(30)} = ${ndk(path_name(i)) | csym,pad(64)} << 16, 121 ${ndk(path_name(find_parent_section(entry))) | csym}_START, 123 ${ndk(path_name(find_parent_section(entry))) | csym}_START + ${idx}, 127 ${ndk(path_name(sec)) | csym}_END,
|
D | metadata_helpers.py | 109 def path_name(node): function
|
/system/core/libmodprobe/include/modprobe/ |
D | modprobe.h | 44 bool Insmod(const std::string& path_name, const std::string& parameters);
|
/system/iorap/src/inode2filename/ |
D | search_directories.cc | 701 std::string path_name; member 705 os << "StatError{" << e.err_no << "," << e.path_name in operator <<() 711 static iorap::expected<struct stat, StatError> Stat(const std::string& path_name, in Stat() argument 716 if (system_call->stat(path_name.c_str(), /*out*/&statbuf) == 0) { in Stat() 719 return iorap::unexpected(StatError{errno, path_name}); in Stat()
|