/external/llvm/tools/llvm-go/ |
D | CMakeLists.txt | 2 set(binpath ${CMAKE_BINARY_DIR}/bin/llvm-go${CMAKE_EXECUTABLE_SUFFIX}) variable 3 add_custom_command(OUTPUT ${binpath} 4 COMMAND ${GO_EXECUTABLE} build -o ${binpath} llvm-go.go 8 add_custom_target(llvm-go ALL DEPENDS ${binpath})
|
/external/swiftshader/third_party/llvm-7.0/llvm/tools/llvm-go/ |
D | CMakeLists.txt | 2 set(binpath ${CMAKE_BINARY_DIR}/bin/llvm-go${CMAKE_EXECUTABLE_SUFFIX}) variable 3 add_custom_command(OUTPUT ${binpath} 4 COMMAND ${GO_EXECUTABLE} build -o ${binpath} llvm-go.go 8 add_custom_target(llvm-go ALL DEPENDS ${binpath})
|
/external/autotest/client/site_tests/security_SeccompSyscallFilters/ |
D | security_SeccompSyscallFilters.py | 36 binpath = os.path.join(self.srcdir, self.executable) 37 utils.system_output(binpath, retain_output = True) 38 utils.system_output("su chronos -c %s" % binpath, retain_output = True)
|
/external/python/cpython3/Lib/venv/ |
D | __init__.py | 133 context.bin_path = binpath = os.path.join(env_dir, binname) 135 context.env_exe = os.path.join(binpath, exename) 136 create_if_needed(binpath) 201 binpath = context.bin_path 210 path = os.path.join(binpath, suffix) 239 copier(src, os.path.join(binpath, suffix)) 319 binpath = context.bin_path 334 dstdir = binpath 336 dstdir = os.path.join(binpath, *suffix)
|
/external/bcc/src/cc/ |
D | bcc_elf.c | 87 bcc_elf_probecb callback, const char *binpath, in do_note_segment() argument 117 probe.pc, probe.provider, probe.name, binpath); in do_note_segment() 119 callback(binpath, &probe, payload); in do_note_segment() 126 static int listprobes(Elf *e, bcc_elf_probecb callback, const char *binpath, in listprobes() argument 163 if (do_note_segment(section, elf_class, callback, binpath, in listprobes() 398 static char *find_debug_via_debuglink(Elf *e, const char *binpath, in find_debug_via_debuglink() argument 409 bindir = strdup(binpath); in find_debug_via_debuglink() 417 if (strcmp(fullpath, binpath) != 0 && access(fullpath, F_OK) != -1) { in find_debug_via_debuglink()
|
D | bcc_proc.c | 42 char *bcc_procutils_which(const char *binpath) { in bcc_procutils_which() argument 46 if (strchr(binpath, '/')) in bcc_procutils_which() 47 return bcc_elf_is_exe(binpath) ? strdup(binpath) : 0; in bcc_procutils_which() 58 (int)path_len, PATH, binpath); in bcc_procutils_which()
|
D | usdt.h | 56 bool get_global_address(uint64_t *address, const std::string &binpath, 64 const std::string &binpath, 251 static void _each_probe(const char *binpath, const struct bcc_elf_usdt *probe, 256 void add_probe(const char *binpath, const struct bcc_elf_usdt *probe);
|
D | bcc_proc.h | 37 char *bcc_procutils_which(const char *binpath);
|
/external/autotest/client/site_tests/security_Libcontainer/ |
D | security_Libcontainer.py | 27 binpath = os.path.join(self.srcdir, self.executable) 28 utils.system_output(binpath, retain_output=True)
|
/external/bcc/src/python/bcc/ |
D | usdt.py | 192 for (binpath, fn_name, addr, pid) in probes: 193 bpf.attach_uprobe(name=binpath.decode(), fn_name=fn_name.decode(), 198 def _add_probe(binpath, fn_name, addr, pid): argument 199 probes.append((binpath, fn_name, addr, pid))
|
/external/google-breakpad/src/client/linux/minidump_writer/ |
D | minidump_writer_unittest.cc | 350 string binpath = temp_dir.path() + "/linux-dumper-unittest-helper"; in TEST() local 351 ASSERT_TRUE(CopyFile(helper_path.c_str(), binpath.c_str())) in TEST() 352 << "Failed to copy " << helper_path << " to " << binpath; in TEST() 353 ASSERT_EQ(0, chmod(binpath.c_str(), 0755)); in TEST() 366 execl(binpath.c_str(), in TEST() 367 binpath.c_str(), in TEST() 389 unlink(binpath.c_str()); in TEST() 412 EXPECT_STREQ(binpath.c_str(), module->code_file().c_str()); in TEST()
|
/external/bcc/src/cc/usdt/ |
D | usdt_args.cc | 36 bool Argument::get_global_address(uint64_t *address, const std::string &binpath, in get_global_address() argument 45 .resolve_name(binpath.c_str(), deref_ident_->c_str(), address); in get_global_address() 48 if (!bcc_elf_is_shared_obj(binpath.c_str())) { in get_global_address() 50 if (bcc_resolve_symname(binpath.c_str(), deref_ident_->c_str(), 0x0, -1, nullptr, &sym) == 0) { in get_global_address() 63 const std::string &binpath, in assign_to_local() argument 102 if (!get_global_address(&global_address, binpath, pid)) in assign_to_local()
|
D | usdt.cc | 230 void Context::_each_probe(const char *binpath, const struct bcc_elf_usdt *probe, in _each_probe() argument 233 ctx->add_probe(binpath, probe); in _each_probe() 249 void Context::add_probe(const char *binpath, const struct bcc_elf_usdt *probe) { in add_probe() argument 252 p->add_location(probe->pc, binpath, probe->arg_fmt); in add_probe() 258 new Probe(binpath, probe->provider, probe->name, probe->semaphore, pid_, in add_probe() 260 probes_.back()->add_location(probe->pc, binpath, probe->arg_fmt); in add_probe()
|
/external/autotest/client/site_tests/platform_TraceClockMonotonic/ |
D | platform_TraceClockMonotonic.py | 93 binpath = os.path.join(self.srcdir, self.executable) 94 utils.system_output(binpath, retain_output = True)
|
/external/bcc/src/lua/bcc/ |
D | usdt.lua | 63 function(binpath, fn_name, addr, pid) 64 table.insert(uprobes, {name=ffi.string(binpath),
|
/external/bcc/src/cc/includes/ |
D | usdt.h | 56 bool get_global_address(uint64_t *address, const std::string &binpath, 64 const std::string &binpath, 251 static void _each_probe(const char *binpath, const struct bcc_elf_usdt *probe, 256 void add_probe(const char *binpath, const struct bcc_elf_usdt *probe);
|
D | bcc_proc.h | 37 char *bcc_procutils_which(const char *binpath);
|
/external/python/cpython3/Doc/library/ |
D | venv.rst | 334 binpath = context.bin_path 335 distpath = os.path.join(binpath, fn) 350 p = Popen(args, stdout=PIPE, stderr=PIPE, cwd=binpath)
|
/external/llvm/cmake/modules/ |
D | AddLLVM.cmake | 987 set(binpath ${CMAKE_BINARY_DIR}/bin/${binary}${CMAKE_EXECUTABLE_SUFFIX}) variable 996 add_custom_command(OUTPUT ${binpath} 998 ${ARG_GOFLAGS} build -o ${binpath} ${pkgpath} 1004 add_custom_target(${binary} ALL DEPENDS ${binpath}) 1006 add_custom_target(${binary} DEPENDS ${binpath})
|
/external/swiftshader/third_party/llvm-7.0/llvm/cmake/modules/ |
D | AddLLVM.cmake | 1129 set(binpath ${CMAKE_BINARY_DIR}/bin/${binary}${CMAKE_EXECUTABLE_SUFFIX}) variable 1138 add_custom_command(OUTPUT ${binpath} 1140 ${ARG_GOFLAGS} build -o ${binpath} ${pkgpath} 1146 add_custom_target(${binary} ALL DEPENDS ${binpath}) 1148 add_custom_target(${binary} DEPENDS ${binpath})
|