/external/grpc-grpc/test/cpp/interop/ |
D | interop_test.cc | 50 char* binary_path; in test_client() local 52 gpr_asprintf(&binary_path, "%s/interop_client", root); in test_client() 55 execl(binary_path, binary_path, port_arg, NULL); in test_client() 57 gpr_free(binary_path); in test_client()
|
/external/autotest/client/cros/ |
D | chrome_binary_test.py | 134 binary_path = self.get_chrome_binary_path(binary_to_run) 141 cmd = ' '.join([env_vars, prefix, binary_path, extra_params]) 153 file_utils.recursive_path_permission(binary_path)) 155 (binary_path, path_permission)) 157 fail_reason = ('Command not found: %s' % binary_path)
|
/external/bcc/src/cc/api/ |
D | BPF.cc | 192 StatusTuple BPF::attach_uprobe(const std::string& binary_path, in attach_uprobe() argument 199 TRY2(check_binary_symbol(binary_path, symbol, symbol_addr, module, offset)); in attach_uprobe() 209 binary_path.c_str(), offset, pid); in attach_uprobe() 216 attach_type_debug(attach_type).c_str(), binary_path.c_str(), in attach_uprobe() 394 StatusTuple BPF::detach_uprobe(const std::string& binary_path, in detach_uprobe() argument 399 TRY2(check_binary_symbol(binary_path, symbol, symbol_addr, module, offset)); in detach_uprobe() 406 binary_path.c_str(), symbol.c_str(), symbol_addr); in detach_uprobe() 593 StatusTuple BPF::check_binary_symbol(const std::string& binary_path, in check_binary_symbol() argument 599 int res = bcc_resolve_symname(binary_path.c_str(), symbol.c_str(), in check_binary_symbol() 604 binary_path.c_str(), symbol.c_str(), symbol_addr); in check_binary_symbol() [all …]
|
D | BPF.h | 68 StatusTuple attach_uprobe(const std::string& binary_path, 74 StatusTuple detach_uprobe(const std::string& binary_path, 182 std::string get_uprobe_event(const std::string& binary_path, uint64_t offset, 219 StatusTuple check_binary_symbol(const std::string& binary_path, 244 USDT(const std::string& binary_path, const std::string& provider, 248 USDT(const std::string& binary_path, pid_t pid, const std::string& provider,
|
/external/strace/ |
D | mmap_cache.c | 131 char binary_path[sizeof(buffer)]; in mmap_cache_rebuild_if_invalid() local 138 binary_path) != 10) in mmap_cache_rebuild_if_invalid() 173 filename, binary_path, start_addr, in mmap_cache_rebuild_if_invalid() 197 entry->binary_filename = xstrdup(binary_path); in mmap_cache_rebuild_if_invalid()
|
/external/v8/tools/clang/scripts/ |
D | package.py | 134 for binary_path in binaries: 135 binary_path = os.path.join(LLVM_RELEASE_DIR, binary_path) 136 binary_id = img_fingerprint.GetImgFingerprint(binary_path) 137 (pdb_id, pdb_path) = pdb_fingerprint_from_img.GetPDBInfoFromImg(binary_path) 145 for f, f_id in ((binary_path, binary_id), (pdb_path, pdb_id)):
|
/external/autotest/client/site_tests/camera_HAL3Perf/ |
D | camera_HAL3Perf.py | 85 binary_path = os.path.join(self.dep_dir, 'bin', self.test_binary) 92 binary_path,
|
/external/autotest/client/site_tests/camera_HAL3/ |
D | camera_HAL3.py | 103 binary_path = os.path.join(self.dep_dir, 'bin', self.test_binary) 108 cmd = [binary_path]
|
/external/pdfium/testing/tools/coverage/ |
D | coverage_report.py | 158 binary_path = os.path.join(testing_tools_directory, test_spec.binary) 160 binary_path = os.path.join(self.build_directory, test_spec.binary) 161 coverage_tests[name] = TestSpec(binary_path, test_spec.use_test_runner)
|
/external/clang/utils/perf-training/ |
D | perf-helper.py | 341 if opts.binary_path is not None: 342 output = subprocess.check_output(['nm', '-P', opts.binary_path])
|
/external/tensorflow/tensorflow/contrib/ffmpeg/default/ |
D | ffmpeg_lib.cc | 93 const string binary_path = io::JoinPath(dir, binary_name); in IsBinaryInstalled() local 95 if (::realpath(binary_path.c_str(), absolute_path) == nullptr) { in IsBinaryInstalled()
|
/external/bcc/src/cc/ |
D | libbpf.h | 78 const char *ev_name, const char *binary_path,
|
D | libbpf.c | 944 const char *ev_name, const char *binary_path, in bpf_attach_uprobe() argument 952 pfd = bpf_try_perf_event_open_with_probe(binary_path, offset, pid, event_type, in bpf_attach_uprobe() 970 event_type, event_alias, binary_path, (unsigned long)offset); in bpf_attach_uprobe()
|
/external/bcc/src/cc/includes/ |
D | libbpf.h | 78 const char *ev_name, const char *binary_path,
|