Home
last modified time | relevance | path

Searched refs:obj_path (Results 1 – 14 of 14) sorted by relevance

/external/llvm-project/lldb/test/API/functionalities/gdb_remote_client/
DTestWasm.py28 def __init__(self, obj_path, module_name = ""): argument
29 self._obj_path = obj_path
30 self._module_name = module_name or obj_path
96 obj_path = self.getBuildArtifact(yaml_base)
97 self.yaml2obj(yaml_path, obj_path)
99 self.server.responder = MyResponder(obj_path, "test_wasm")
145 obj_path = self.getBuildArtifact(yaml_base) + ".wasm"
146 self.yaml2obj(yaml_path, obj_path)
148 self.server.responder = MyResponder(obj_path, "test_wasm")
150 folder, _ = os.path.split(obj_path)
[all …]
Dgdbclientutils.py514 obj_path = self.getBuildArtifact(yaml_base)
515 self.yaml2obj(yaml_path, obj_path)
516 return self.dbg.CreateTarget(obj_path)
/external/toolchain-utils/binary_search_tool/
Dbisect_driver.py145 obj_path = execargs[i + 1]
147 if obj_path in (
153 if obj_path.endswith(('.tmp',)):
156 if (obj_path.endswith('conftest.o') or
157 obj_path.endswith('CMakeFiles/test.o') or
158 obj_path.find('CMakeTmp') != -1 or
159 os.path.abspath(obj_path).find('CMakeTmp') != -1):
162 return os.path.abspath(obj_path)
/external/llvm-project/lldb/test/API/functionalities/show_location/
DTestShowLocationDwarf5.py17 obj_path = self.getBuildArtifact('a.out')
18 self.yaml2obj(yaml_path, obj_path)
21 target = self.dbg.CreateTarget(obj_path)
/external/llvm-project/lldb/test/API/commands/target/dump-symtab-demangle/
DTestDumpSymtabDemangle.py18 obj_path = self.getBuildArtifact("main.o")
19 self.yaml2obj(yaml_path, obj_path)
22 target = self.dbg.CreateTarget(obj_path)
/external/llvm-project/lldb/test/API/commands/breakpoint/command/list/
DTestBreakpointCommandList.py18 obj_path = self.getBuildArtifact("main.o")
19 self.yaml2obj(yaml_path, obj_path)
22 target = self.dbg.CreateTarget(obj_path)
/external/llvm-project/lldb/test/API/functionalities/source-map/
DTestTargetSourceMap.py34 obj_path = self.getBuildArtifact("main.o")
35 self.yaml2obj(yaml_path, obj_path)
38 target = self.dbg.CreateTarget(obj_path)
/external/adhd/cras/src/server/
Dcras_bt_transport.c288 const char *obj_path; in cras_bt_transport_update_properties() local
293 &obj_path); in cras_bt_transport_update_properties()
295 cras_bt_device_get(obj_path); in cras_bt_transport_update_properties()
300 obj_path); in cras_bt_transport_update_properties()
304 obj_path); in cras_bt_transport_update_properties()
/external/scapy/scapy/layers/tls/
Dcert.py122 def __call__(cls, obj_path, obj_max_size, pem_marker=None): argument
131 if obj_path is None:
133 obj_path = raw(obj_path)
135 if (not b'\x00' in obj_path) and os.path.isfile(obj_path):
136 _size = os.path.getsize(obj_path)
140 f = open(obj_path, "rb")
146 _raw = obj_path
/external/rust/crates/ring/
Dbuild.rs324 let obj_path = obj_path(&pregenerated, &src, MSVC_OBJ_EXT); in pregenerate_asm_main() localVariable
325 run_command(nasm(&src, target_arch, &obj_path)); in pregenerate_asm_main()
409 .map(|src| obj_path(&pregenerated, src.as_path(), "obj")) in build_c_code()
535 fn obj_path(out_dir: &Path, src: &Path, obj_ext: &str) -> PathBuf { in obj_path() function
/external/llvm/tools/gold/
Dgold-plugin.cpp177 static std::string obj_path; variable
225 obj_path = opt.substr(strlen("obj-path=")); in process_plugin_option()
1068 if (!options::obj_path.empty()) in runSplitCodeGen()
1069 Filename = options::obj_path; in runSplitCodeGen()
1234 if (!options::obj_path.empty()) in thinLTOBackends()
1236 Filename = options::obj_path; in thinLTOBackends()
1249 !options::obj_path.empty() ? TaskCount : -1); in thinLTOBackends()
/external/llvm-project/llvm/tools/gold/
Dgold-plugin.cpp151 static std::string obj_path; variable
238 obj_path = std::string(opt); in process_plugin_option()
884 Conf.AlwaysEmitRegularLTOObj = !options::obj_path.empty(); in createLTO()
1060 if (!options::obj_path.empty()) in runLTO()
1061 Filename = options::obj_path; in runLTO()
/external/libchrome/dbus/
Dbus.cc826 const ObjectPath obj_path("/org/freedesktop/DBus"); in GetServiceOwnerAndBlock() local
828 !get_name_owner_call.SetPath(obj_path)) { in GetServiceOwnerAndBlock()
/external/llvm-project/lldb/packages/Python/lldbsuite/test/
Dlldbtest.py1700 def yaml2obj(self, yaml_path, obj_path): argument
1709 command = [yaml2obj_bin, "-o=%s" % obj_path, yaml_path]