Searched refs:path_name (Results 1 – 9 of 9) sorted by relevance
/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 | 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 | 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 | ndk_camera_metadata_tags.mako | 60 ${ndk(path_name(i)) | csym}, 72 ${ndk(path_name(i)) + '.start' | csym,ljust(30)} = ${ndk(path_name(i)) | csym,pad(64)} << 16, 122 ${ndk(path_name(find_parent_section(entry))) | csym}_START, 124 ${ndk(path_name(find_parent_section(entry))) | csym}_START + ${idx}, 128 ${ndk(path_name(sec)) | csym}_END,
|
D | metadata_helpers.py | 109 def path_name(node): function
|
/system/core/init/ |
D | modalias_handler.cpp | 103 Result<Success> ModaliasHandler::Insmod(const std::string& path_name, const std::string& args) { in Insmod() argument 105 TEMP_FAILURE_RETRY(open(path_name.c_str(), O_RDONLY | O_NOFOLLOW | O_CLOEXEC))); in Insmod() 106 if (fd == -1) return ErrnoError() << "Could not open module '" << path_name << "'"; in Insmod() 114 return ErrnoError() << "Failed to insmod '" << path_name << "' with args '" << args << "'"; in Insmod() 117 LOG(INFO) << "Loaded kernel module " << path_name; in Insmod()
|
D | modalias_handler.h | 39 Result<Success> Insmod(const std::string& path_name, const std::string& args);
|
/system/iorap/src/inode2filename/ |
D | search_directories.cc | 640 std::string path_name; member 644 os << "StatError{" << e.err_no << "," << e.path_name << "}"; in operator <<() 649 static iorap::expected<struct stat, StatError> Stat(const std::string& path_name, in Stat() argument 654 if (system_call->stat(path_name.c_str(), /*out*/&statbuf) == 0) { in Stat() 657 return iorap::unexpected(StatError{errno, path_name}); in Stat()
|
/system/iorap/tests/src/inode2filename/ |
D | search_directories_test.cc | 1335 std::optional<PathEntry> GetEntryFor(const std::string& path_name) { in GetEntryFor() 1336 PurePath path{path_name}; in GetEntryFor() 1345 bool HasDirectory(const std::string& path_name) { in HasDirectory() 1346 PurePath path{path_name}; in HasDirectory() 1355 std::vector<PathEntry> OpenDirectory(const std::string& path_name) { in OpenDirectory() 1356 PurePath path{path_name}; in OpenDirectory()
|