Home
last modified time | relevance | path

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

/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/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.rs307 let obj_path = obj_path(&pregenerated, &src, MSVC_OBJ_EXT); in pregenerate_asm_main() localVariable
308 run_command(nasm(&src, target_arch, &obj_path)); in pregenerate_asm_main()
392 .map(|src| obj_path(&pregenerated, src.as_path(), "obj")) in build_c_code()
518 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/libchrome/dbus/
Dbus.cc826 const ObjectPath obj_path("/org/freedesktop/DBus"); in GetServiceOwnerAndBlock() local
828 !get_name_owner_call.SetPath(obj_path)) { in GetServiceOwnerAndBlock()