Searched defs:sym_ctx (Results 1 - 7 of 7) sorted by relevance
/external/lldb/include/lldb/Target/ |
H A D | DynamicLoader.h | 222 AlwaysRelyOnEHUnwindInfo (SymbolContext &sym_ctx) argument
|
/external/lldb/source/Expression/ |
H A D | ClangUserExpression.cpp | 136 SymbolContext sym_ctx = frame->GetSymbolContext(lldb::eSymbolContextFunction | lldb::eSymbolContextBlock); local 138 if (!sym_ctx.function) 145 // Find the block that defines the function represented by "sym_ctx" 146 Block *function_block = sym_ctx.GetFunctionBlock();
|
H A D | ClangExpressionDeclMap.cpp | 495 SymbolContext &sym_ctx, 500 if (sym_ctx.module_sp) 501 sym_ctx.module_sp->FindSymbolsWithNameAndType(name, eSymbolTypeAny, temp_sc_list); 503 if (!sc_list.GetSize() && sym_ctx.target_sp) 504 sym_ctx.target_sp->GetImages().FindSymbolsWithNameAndType(name, eSymbolTypeAny, temp_sc_list); 509 SymbolContext sym_ctx; local 510 temp_sc_list.GetContextAtIndex(i, sym_ctx); 511 if (sym_ctx.symbol) 513 switch (sym_ctx.symbol->GetType()) 517 sc_list.Append(sym_ctx); 492 FindCodeSymbolInContext( const ConstString &name, SymbolContext &sym_ctx, SymbolContextList &sc_list ) argument 605 SymbolContext sym_ctx; local 692 SymbolContext sym_ctx; local 1296 SymbolContext sym_ctx; local [all...] |
/external/lldb/source/Plugins/Process/Utility/ |
H A D | RegisterContextLLDB.cpp | 43 SymbolContext& sym_ctx, 58 m_sym_ctx(sym_ctx), 39 RegisterContextLLDB( Thread& thread, const SharedPtr &next_frame, SymbolContext& sym_ctx, uint32_t frame_number, UnwindLLDB& unwind_lldb ) argument
|
/external/lldb/source/Symbol/ |
H A D | Symtab.cpp | 1130 SymbolContext sym_ctx; local 1131 sym_ctx.symbol = SymbolAtIndex (temp_symbol_indexes[i]); 1132 if (sym_ctx.symbol) 1134 switch (sym_ctx.symbol->GetType())
|
/external/lldb/source/Plugins/DynamicLoader/MacOSX-DYLD/ |
H A D | DynamicLoaderMacOSXDYLD.cpp | 1369 DynamicLoaderMacOSXDYLD::AlwaysRelyOnEHUnwindInfo (SymbolContext &sym_ctx) argument 1372 if (sym_ctx.symbol) 1374 module_sp = sym_ctx.symbol->GetAddress().GetModule(); 1376 if (module_sp.get() == NULL && sym_ctx.function) 1378 module_sp = sym_ctx.function->GetAddressRange().GetBaseAddress().GetModule();
|
/external/lldb/source/Commands/ |
H A D | CommandObjectTarget.cpp | 1766 const SymbolContext &sym_ctx, 1770 if (!sym_ctx.module_sp) 1779 num_matches = sym_ctx.module_sp->FindTypes(sym_ctx, name, name_is_fully_qualified, max_num_matches, type_list); 1785 DumpFullpath (strm, &sym_ctx.module_sp->GetFileSpec(), 0); 3878 const SymbolContext &sym_ctx(frame->GetSymbolContext(eSymbolContextModule)); 3880 if (!sym_ctx.module_sp) 3892 sym_ctx, 1764 LookupTypeHere(CommandInterpreter &interpreter, Stream &strm, const SymbolContext &sym_ctx, const char *name_cstr, bool name_is_regex) argument
|
Completed in 174 milliseconds