Searched refs:tpath (Results 1 – 5 of 5) sorted by relevance
/tools/bpf/bpftool/ |
D | jit_disasm.c | 32 static void get_exec_path(char *tpath, size_t size) in get_exec_path() argument 37 len = readlink(path, tpath, size - 1); in get_exec_path() 39 tpath[len] = 0; in get_exec_path() 89 char tpath[PATH_MAX]; in disasm_print_insn() local 95 memset(tpath, 0, sizeof(tpath)); in disasm_print_insn() 96 get_exec_path(tpath, sizeof(tpath)); in disasm_print_insn() 98 bfdf = bfd_openr(tpath, NULL); in disasm_print_insn()
|
/tools/bpf/ |
D | bpf_jit_disasm.c | 35 static void get_exec_path(char *tpath, size_t size) in get_exec_path() argument 40 snprintf(tpath, size, "/proc/%d/exe", (int) getpid()); in get_exec_path() 41 tpath[size - 1] = 0; in get_exec_path() 43 path = strdup(tpath); in get_exec_path() 46 len = readlink(path, tpath, size); in get_exec_path() 47 tpath[len] = 0; in get_exec_path() 55 char tpath[PATH_MAX]; in get_asm_insns() local 60 memset(tpath, 0, sizeof(tpath)); in get_asm_insns() 61 get_exec_path(tpath, sizeof(tpath)); in get_asm_insns() 63 bfdf = bfd_openr(tpath, NULL); in get_asm_insns()
|
/tools/perf/util/ |
D | annotate.c | 1726 char tpath[PATH_MAX]; in symbol__disassemble_bpf() local 1740 memset(tpath, 0, sizeof(tpath)); in symbol__disassemble_bpf() 1741 perf_exe(tpath, sizeof(tpath)); in symbol__disassemble_bpf() 1743 bfdf = bfd_openr(tpath, NULL); in symbol__disassemble_bpf()
|
/tools/power/pm-graph/ |
D | bootgraph.py | 127 fp = open(self.tpath+'available_filter_functions') 471 call('cat '+sysvals.tpath+'trace >> '+sysvals.ftracefile, shell=True)
|
D | sleepgraph.py | 112 tpath = '/sys/kernel/debug/tracing/' variable in SystemValues 522 call('cat '+self.tpath+'available_filter_functions', shell=True) 524 master = self.listFromFile(self.tpath+'available_filter_functions') 533 master = self.listFromFile(self.tpath+'available_filter_functions') 542 fp = open(self.tpath+'set_graph_function', 'w') 682 return self.setVal(val, self.tpath+path) 695 return self.getVal(self.tpath+path) 799 tp = self.tpath 813 tp = self.tpath 5087 tp = sysvals.tpath
|