/external/llvm-project/lldb/source/Core/ |
D | AddressRange.cpp | 155 bool show_module = false; in Dump() local 171 show_module = true; in Dump() 183 if (show_module) { in Dump()
|
D | Address.cpp | 650 const bool show_module = (style == DumpStyleResolvedDescription); in Dump() local 669 show_module, show_inlined_frames, in Dump()
|
/external/elfutils/src/ |
D | stack.c | 45 static bool show_module = false; variable 251 if (show_module) in print_frame() 509 show_module = true; in parse_opt() 529 show_activation = show_source = show_module = show_debugname = true; in parse_opt()
|
D | ChangeLog | 2490 * stack.c (show_activation, show_module, show_source): New variables. 2492 Set show_module if -m option is given. Set show_source if -s option
|
/external/bcc/tools/ |
D | memleak.py | 465 show_module=True, show_offset=True)) 488 show_module=True,
|
D | capable.py | 197 print("%s" % (bpf.sym(addr, tgid, show_module=True, show_offset=True)))
|
D | trace.py | 532 show_module=True, show_offset=True))) 544 show_module=True, show_offset=True)
|
/external/bcc/tools/lib/ |
D | uthreads.py | 122 name = bpf.sym(event.runtime_id, args.pid, show_module=True)
|
/external/llvm-project/lldb/include/lldb/Symbol/ |
D | Variable.h | 43 bool DumpDeclaration(Stream *s, bool show_fullpaths, bool show_module);
|
D | SymbolContext.h | 152 bool show_module, bool show_inlined_frames,
|
/external/llvm-project/lldb/source/Symbol/ |
D | Variable.cpp | 179 bool show_module) { in DumpDeclaration() argument 191 s, nullptr, Address(), show_fullpaths, show_module, show_inlined_frames, in DumpDeclaration()
|
D | SymbolContext.cpp | 72 bool show_module, bool show_inlined_frames, in DumpStopContext() argument 77 if (show_module && module_sp) { in DumpStopContext() 147 s, exe_scope, inline_parent_addr, show_fullpaths, show_module, in DumpStopContext()
|
/external/bcc/src/python/bcc/ |
D | __init__.py | 1176 def sym(addr, pid, show_module=False, show_offset=False, demangle=True): argument 1197 if show_module and module is not None else b"" 1201 def ksym(addr, show_module=False, show_offset=False): argument 1212 return BPF.sym(addr, -1, show_module, show_offset, False)
|
/external/llvm-project/lldb/source/Commands/ |
D | CommandObjectFrame.cpp | 557 bool show_module = true; in DoExecute() local 559 show_module)) in DoExecute()
|
D | CommandObjectSource.cpp | 1094 bool show_module = true; in DoExecute() local 1101 show_fullpaths, show_module, show_inlined_frames, in DoExecute()
|
D | CommandObjectTarget.cpp | 788 bool show_module = true; in DumpValueObject() local 789 if (var_sp->DumpDeclaration(&s, show_fullpaths, show_module)) in DumpValueObject()
|
/external/llvm-project/lldb/source/Target/ |
D | StackFrame.cpp | 1822 const bool show_module = true; in Dump() local 1827 GetFrameCodeAddress(), show_fullpaths, show_module, in Dump()
|
/external/bcc/docs/ |
D | reference_guide.md | 1487 Syntax: ```BPF.sym(addr, pid, show_module=False, show_offset=False)``` 1489 …ned. A pid of less than zero will access the kernel symbol cache. The `show_module` and `show_offs…
|