Home
last modified time | relevance | path

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

/external/toolchain-utils/binary_search_tool/
Dbisect_driver.py138 obj_path = execargs[i + 1]
140 if obj_path in (
145 if obj_path.endswith(('.tmp',)):
148 if (obj_path.endswith('conftest.o') or
149 obj_path.endswith('CMakeFiles/test.o') or
150 obj_path.find('CMakeTmp') != -1 or
151 os.path.abspath(obj_path).find('CMakeTmp') != -1):
154 return os.path.abspath(obj_path)
/external/adhd/cras/src/server/
Dcras_bt_transport.c269 const char *obj_path; in cras_bt_transport_update_properties() local
272 dbus_message_iter_get_basic(&variant_iter, &obj_path); in cras_bt_transport_update_properties()
273 transport->device = cras_bt_device_get(obj_path); in cras_bt_transport_update_properties()
277 obj_path); in cras_bt_transport_update_properties()
280 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/swiftshader/third_party/LLVM/tools/gold/
Dgold-plugin.cpp79 static std::string obj_path; variable
105 obj_path = opt.substr(strlen("obj-path=")); in process_plugin_option()
460 if (options::obj_path.empty()) in all_symbols_read_hook()
/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/swiftshader/third_party/llvm-7.0/llvm/tools/gold/
Dgold-plugin.cpp147 static std::string obj_path; variable
225 obj_path = opt.substr(strlen("obj-path=")); in process_plugin_option()
1010 if (!options::obj_path.empty()) in runLTO()
1011 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()