Home
last modified time | relevance | path

Searched refs:binpath (Results 1 – 19 of 19) sorted by relevance

/external/llvm/tools/llvm-go/
DCMakeLists.txt2 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/llvm-project/llvm/tools/llvm-go/
DCMakeLists.txt2 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/
Dsecurity_SeccompSyscallFilters.py36 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__.py141 context.bin_path = binpath = os.path.join(env_dir, binname)
143 context.env_exe = os.path.join(binpath, exename)
144 create_if_needed(binpath)
238 binpath = context.bin_path
247 path = os.path.join(binpath, suffix)
276 copier(src, os.path.join(binpath, suffix))
356 binpath = context.bin_path
371 dstdir = binpath
373 dstdir = os.path.join(binpath, *suffix)
/external/autotest/client/site_tests/security_Libcontainer/
Dsecurity_Libcontainer.py27 binpath = os.path.join(self.srcdir, self.executable)
28 utils.system_output(binpath, retain_output=True)
/external/bcc/src/python/bcc/
Dusdt.py192 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/bcc/src/cc/
Dbcc_elf.c87 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()
456 static char *find_debug_via_debuglink(Elf *e, const char *binpath, in find_debug_via_debuglink() argument
468 tmppath = strdup(binpath); in find_debug_via_debuglink()
476 if (strcmp(fullpath, binpath) != 0 && access(fullpath, F_OK) != -1) { in find_debug_via_debuglink()
Dbcc_proc.c42 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()
Dusdt.h56 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);
Dbcc_proc.h37 char *bcc_procutils_which(const char *binpath);
/external/autotest/client/site_tests/platform_TraceClockMonotonic/
Dplatform_TraceClockMonotonic.py93 binpath = os.path.join(self.srcdir, self.executable)
94 utils.system_output(binpath, retain_output = True)
/external/bcc/src/cc/usdt/
Dusdt_args.cc36 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()
Dusdt.cc230 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/bcc/src/lua/bcc/
Dusdt.lua63 function(binpath, fn_name, addr, pid)
64 table.insert(uprobes, {name=ffi.string(binpath),
/external/bcc/src/cc/includes/
Dusdt.h56 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);
Dbcc_proc.h37 char *bcc_procutils_which(const char *binpath);
/external/google-breakpad/src/client/linux/minidump_writer/
Dminidump_writer_unittest.cc523 string binpath = temp_dir.path() + "/linux-dumper-unittest-helper"; in TEST() local
524 ASSERT_TRUE(CopyFile(helper_path.c_str(), binpath.c_str())) in TEST()
525 << "Failed to copy " << helper_path << " to " << binpath; in TEST()
526 ASSERT_EQ(0, chmod(binpath.c_str(), 0755)); in TEST()
539 execl(binpath.c_str(), in TEST()
540 binpath.c_str(), in TEST()
562 unlink(binpath.c_str()); in TEST()
585 EXPECT_STREQ(binpath.c_str(), module->code_file().c_str()); in TEST()
/external/python/cpython3/Doc/library/
Dvenv.rst349 binpath = context.bin_path
350 distpath = os.path.join(binpath, fn)
365 p = Popen(args, stdout=PIPE, stderr=PIPE, cwd=binpath)
/external/llvm/cmake/modules/
DAddLLVM.cmake987 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})