/external/oss-fuzz/infra/base-images/base-msan-builder/ |
D | patch_build.py | 36 def Ldd(binary_path): argument 39 output = subprocess.check_output(['ldd', binary_path], stderr=subprocess.STDOUT) 41 print('Failed to call ldd on', binary_path, file=sys.stderr) 71 def PatchBinary(binary_path, instrumented_dir): argument 75 for name, path in Ldd(binary_path): 101 ['patchelf', '--print-rpath', binary_path]).strip() 105 print('Patching rpath for', binary_path, 'from', existing_rpaths, 'to', 110 processed_rpaths, binary_path])
|
/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/perfetto/tools/trace_to_text/ |
D | symbolize_profile.cc | 42 auto binary_path = profiling::GetPerfettoBinaryPath(); in SymbolizeProfile() local 43 if (!binary_path.empty()) { in SymbolizeProfile() 45 symbolizer.reset(new profiling::LocalSymbolizer(std::move(binary_path))); in SymbolizeProfile()
|
D | trace_to_profile.cc | 58 auto binary_path = profiling::GetPerfettoBinaryPath(); in TraceToProfile() local 59 if (!binary_path.empty()) { in TraceToProfile() 61 symbolizer.reset(new profiling::LocalSymbolizer(std::move(binary_path))); in TraceToProfile()
|
/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/angle/scripts/ |
D | perf_test_runner.py | 82 binary_path = os.path.join(base_path, path, binary_name) variable 83 if os.path.exists(binary_path): 84 binary_mtime = os.path.getmtime(binary_path) 86 newest_binary = binary_path
|
D | update_canary_angle.py | 30 binary_path = os.path.join(path, binary_name) variable 31 if os.path.exists(binary_path): 32 binary_mtime = os.path.getmtime(binary_path)
|
/external/bcc/src/cc/api/ |
D | BPF.cc | 193 StatusTuple BPF::attach_uprobe(const std::string& binary_path, in attach_uprobe() argument 200 TRY2(check_binary_symbol(binary_path, symbol, symbol_addr, module, offset)); in attach_uprobe() 210 binary_path.c_str(), offset, pid); in attach_uprobe() 217 attach_type_debug(attach_type).c_str(), binary_path.c_str(), in attach_uprobe() 395 StatusTuple BPF::detach_uprobe(const std::string& binary_path, in detach_uprobe() argument 400 TRY2(check_binary_symbol(binary_path, symbol, symbol_addr, module, offset)); in detach_uprobe() 407 binary_path.c_str(), symbol.c_str(), symbol_addr); in detach_uprobe() 594 StatusTuple BPF::check_binary_symbol(const std::string& binary_path, in check_binary_symbol() argument 600 int res = bcc_resolve_symname(binary_path.c_str(), symbol.c_str(), in check_binary_symbol() 605 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, 184 std::string get_uprobe_event(const std::string& binary_path, uint64_t offset, 221 StatusTuple check_binary_symbol(const std::string& binary_path, 246 USDT(const std::string& binary_path, const std::string& provider, 250 USDT(const std::string& binary_path, pid_t pid, const std::string& provider,
|
/external/tensorflow/tensorflow/core/distributed_runtime/rpc/ |
D | grpc_testlib.cc | 34 Status TestCluster::MakeTestCluster(const string& binary_path, in MakeTestCluster() argument 63 if (!options.env->FileExists(binary_path).ok()) { in MakeTestCluster() 67 {binary_path, /* see grpc_testlib_server.cc for flags */ in MakeTestCluster()
|
D | grpc_testlib.h | 54 static Status MakeTestCluster(const string& binary_path,
|
/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/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 = ['sudo', '--user=arc-camera', binary_path]
|
/external/pdfium/testing/tools/coverage/ |
D | coverage_report.py | 156 binary_path = os.path.join(testing_tools_directory, test_spec.binary) 160 binary_path = os.path.join(self.build_directory, test_spec.binary) 162 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/perfetto/tools/ |
D | heap_profile | 480 binary_path = os.getenv('PERFETTO_BINARY_PATH') 481 if binary_path is not None:
|
/external/bcc/src/cc/includes/ |
D | libbpf.h | 78 const char *ev_name, const char *binary_path,
|
/external/bcc/src/cc/ |
D | libbpf.h | 78 const char *ev_name, const char *binary_path,
|
D | libbpf.c | 969 const char *ev_name, const char *binary_path, in bpf_attach_uprobe() argument 978 pfd = bpf_try_perf_event_open_with_probe(binary_path, offset, pid, event_type, in bpf_attach_uprobe() 1001 event_type, event_alias, binary_path, (unsigned long)offset); in bpf_attach_uprobe()
|
/external/perfetto/src/trace_processor/ |
D | trace_processor_shell.cc | 954 auto binary_path = profiling::GetPerfettoBinaryPath(); in LoadTrace() local 955 if (!binary_path.empty()) { in LoadTrace() 957 symbolizer.reset(new profiling::LocalSymbolizer(std::move(binary_path))); in LoadTrace()
|