/aosp_15_r20/packages/modules/Virtualization/android/virtmgr/src/ |
D | debug_config.rs | 37 node_path: CString, field 42 fn new(node_path: &str, prop_name: &str) -> Result<Self, NulError> { in new() 43 Ok(Self { node_path: CString::new(node_path)?, prop_name: CString::new(prop_name)? }) in new() 51 self.node_path.to_str().unwrap(), in to_path() 87 let (node_path, prop_name) = (&path.node_path, &path.prop_name); in get_fdt_prop_bool() 88 let node = match fdt.node(node_path) { in get_fdt_prop_bool()
|
/aosp_15_r20/external/tensorflow/tensorflow/python/saved_model/ |
H A D | load.py | 176 for node_path, node in filters.items(): 178 self._loaded_nodes[self._node_path_to_id[node_path]] = node 180 self._loaded_nodes[self._node_path_to_id[node_path]] = (node, setattr) 207 node_path = node_id.split(".") 208 if node_path[0] != "root": 213 for n, name in enumerate(node_path[1:]): 215 int_node_id, name, ".".join(node_path[:n+2])) 239 node_path = nodes_to_visit.pop(0) 240 node_id = self._node_path_to_id[node_path] 270 child_path = "{}.{}".format(node_path, reference.local_name) [all …]
|
/aosp_15_r20/external/tensorflow/tensorflow/python/keras/saving/saved_model/ |
H A D | save.py | 111 node_path = "root" 113 node_path = "root.{}".format( 118 node_path=node_path,
|
/aosp_15_r20/external/chromium-trace/catapult/common/node_runner/node_runner/ |
H A D | node_util.py | 26 self.node_path = self.bm.FetchPath('node', self.os_name, self.arch_name) 38 subprocess.call([self.node_path, self.npm_path, 'install']) 50 return _NODE_MANAGER.node_path
|
/aosp_15_r20/packages/modules/Virtualization/libs/libfdt/tests/ |
D | api_test.rs | 262 let node_path = cstr!("/node_z/node_zz"); in node_add_subnode_with_namelen() localVariable 267 let node = fdt.node(node_path).unwrap().unwrap(); in node_add_subnode_with_namelen() 270 let node = fdt.node_mut(node_path).unwrap().unwrap(); in node_add_subnode_with_namelen() 273 let node = fdt.node(node_path).unwrap().unwrap(); in node_add_subnode_with_namelen() 277 let node_path = node_path.to_str().unwrap(); in node_add_subnode_with_namelen() localVariable
|
/aosp_15_r20/hardware/google/pixel/power-libperfmgr/libperfmgr/ |
D | Node.cc | 29 Node::Node(std::string name, std::string node_path, in Node() argument 33 node_path_(std::move(node_path)), in Node()
|
D | PropertyNode.cc | 32 PropertyNode::PropertyNode(std::string name, std::string node_path, in PropertyNode() argument 35 : Node(std::move(name), std::move(node_path), std::move(req_sorted), in PropertyNode()
|
D | EventNode.cc | 33 std::string name, std::string node_path, std::vector<RequestGroup> req_sorted, in EventNode() argument 37 : Node(std::move(name), std::move(node_path), std::move(req_sorted), default_val_index, in EventNode()
|
D | FileNode.cc | 33 FileNode::FileNode(std::string name, std::string node_path, std::vector<RequestGroup> req_sorted, in FileNode() argument 36 : Node(std::move(name), std::move(node_path), std::move(req_sorted), default_val_index, in FileNode()
|
D | HintManager.cc | 376 const std::string &node_path = nodes[i]->GetPath(); in GetFromJSON() local 377 if (node_path.starts_with(kAdpfEventNodePath)) { in GetFromJSON() 378 std::string tag = node_path.substr(strlen(kAdpfEventNodePath)); in GetFromJSON()
|
/aosp_15_r20/external/skia/infra/bots/recipes/ |
H A D | perf_skottiewasm_lottieweb.py | 90 node_path = api.path.start_dir.joinpath('node', 'node', 'bin', 'node') 104 node_path, skottie_wasm_js_path, 126 node_path, lottie_web_js_path,
|
/aosp_15_r20/external/coreboot/src/commonlib/ |
H A D | device_tree.c | 1713 char node_path[64]; /* easily enough for /fragment@XXXX/__overlay__ */ in dt_fix_symbols() local 1718 int len = snprintf(node_path, sizeof(node_path), "/%s/__overlay__", in dt_fix_symbols() 1722 if (!strncmp(prop->prop.data, node_path, len)) { in dt_fix_symbols() 1753 char *node_path = entry; in dt_fixup_external() local 1754 entry = strchr(node_path, ':'); in dt_fixup_external() 1766 overlay, node_path, NULL, NULL, 0); in dt_fixup_external() 1788 !strchr(node_path + 1, '/')) /* only toplevel nodes */ in dt_fixup_external()
|
/aosp_15_r20/external/perfetto/gn/standalone/ |
H A D | .emscripten | 30 node_path = os.path.join(root_dir, 'buildtools', buildools_os, 'nodejs') 34 NODE_JS = os.path.join(node_path, 'bin', 'node')
|
/aosp_15_r20/hardware/google/pixel/power-libperfmgr/aidl/ |
D | GpuCapacityNode.cpp | 43 std::string_view node_path) in GpuCapacityNode() argument 45 capacity_node_path_(node_path), in GpuCapacityNode()
|
/aosp_15_r20/external/crosvm/arch/src/ |
H A D | fdt.rs | 68 node_path: Path, in update_device_nodes() 75 let node = fdt.get_node_mut(node_path).ok_or_else(|| { in update_device_nodes()
|
/aosp_15_r20/external/tensorflow/tensorflow/python/eager/ |
H A D | function_saved_model_utils.py | 142 node_path=None): argument 151 if node_path is not None:
|
/aosp_15_r20/external/dtc/tests/ |
H A D | pylibfdt_tests.py | 83 def GetPropList(self, node_path): argument 93 node = self.fdt.path_offset(node_path) 101 def GetSubnodes(self, node_path): argument 111 node = self.fdt.path_offset(node_path)
|
/aosp_15_r20/external/mesa3d/src/virtio/vulkan/ |
H A D | vn_renderer_virtgpu.c | 1579 const char *node_path = dev->nodes[DRM_NODE_RENDER]; in virtgpu_open_device() local 1581 int fd = open(node_path, O_RDWR | O_CLOEXEC); in virtgpu_open_device() 1584 vn_log(gpu->instance, "failed to open %s", node_path); in virtgpu_open_device() 1617 stat(node_path, &st); in virtgpu_open_device() 1628 vn_log(gpu->instance, "using DRM device %s", node_path); in virtgpu_open_device()
|
/aosp_15_r20/packages/modules/Virtualization/guest/pvmfw/src/ |
D | device_assignment.rs | 753 node_path: CString, field 895 let node_path = vm_dtbo.locate_overlay_target_path(dtbo_node_path, &dtbo_node)?; in parse() localVariable 897 let Some(node) = fdt.node(&node_path)? else { return Ok(None) }; in parse() 915 Ok(Some(Self { node_path, reg, interrupts, iommus })) in parse() 919 let mut dst = fdt.node_mut(&self.node_path)?.unwrap(); in patch() 1344 node_path: CString::new("/bus0/backlight").unwrap(), in device_info_assigned_info_without_iommus() 1369 node_path: CString::new("/rng").unwrap(), in device_info_assigned_info()
|
/aosp_15_r20/hardware/google/pixel/power-libperfmgr/libperfmgr/include/perfmgr/ |
D | PropertyNode.h | 32 PropertyNode(std::string name, std::string node_path,
|
D | FileNode.h | 34 FileNode(std::string name, std::string node_path, std::vector<RequestGroup> req_sorted,
|
D | EventNode.h | 32 EventNode(std::string name, std::string node_path, std::vector<RequestGroup> req_sorted,
|
D | Node.h | 73 Node(std::string name, std::string node_path,
|
/aosp_15_r20/external/tensorflow/tensorflow/python/keras/protobuf/ |
H A D | saved_metadata.proto | 22 string node_path = 3; field
|
/aosp_15_r20/external/libusb/libusb/os/ |
H A D | sunos_usb.c | 113 const char *node_path, const char *match, char **link_path) in sunos_physpath_to_devlink() argument 125 link_arg.len = strlen(node_path); in sunos_physpath_to_devlink() 126 link_arg.path = (char *)node_path; in sunos_physpath_to_devlink()
|