Searched defs:exe_scope (Results 1 - 23 of 23) sorted by relevance

/external/lldb/source/Expression/
H A DClangPersistentVariables.cpp35 ClangPersistentVariables::CreatePersistentVariable (ExecutionContextScope *exe_scope, argument
44 var_sp = CreateVariable(exe_scope, name, user_type, byte_order, addr_byte_size);
H A DClangExpressionVariable.cpp28 ClangExpressionVariable::ClangExpressionVariable(ExecutionContextScope *exe_scope, lldb::ByteOrder byte_order, uint32_t addr_byte_size) : argument
32 m_frozen_sp (ValueObjectConstResult::Create (exe_scope, byte_order, addr_byte_size))
H A DClangExpressionParser.cpp185 ClangExpressionParser::ClangExpressionParser (ExecutionContextScope *exe_scope, argument
209 if (exe_scope)
210 target_sp = exe_scope->CalculateTarget();
297 if (exe_scope)
298 process_sp = exe_scope->CalculateProcess();
H A DClangFunction.cpp53 ExecutionContextScope &exe_scope,
68 m_jit_process_wp = lldb::ProcessWP(exe_scope.CalculateProcess());
75 ExecutionContextScope &exe_scope,
91 m_jit_process_wp = lldb::ProcessWP(exe_scope.CalculateProcess());
51 ClangFunction( ExecutionContextScope &exe_scope, const ClangASTType &return_type, const Address& functionAddress, const ValueList &arg_value_list ) argument
73 ClangFunction( ExecutionContextScope &exe_scope, Function &function, ClangASTContext *ast_context, const ValueList &arg_value_list ) argument
H A DClangUserExpression.cpp515 ExecutionContextScope *exe_scope = process; local
517 if (!exe_scope)
518 exe_scope = exe_ctx.GetTargetPtr();
520 ClangExpressionParser parser(exe_scope, *this);
H A DDWARFExpression.cpp1198 ExecutionContextScope *exe_scope,
1207 ExecutionContext exe_ctx (exe_scope);
1196 Evaluate( ExecutionContextScope *exe_scope, ClangExpressionVariableList *expr_locals, ClangExpressionDeclMap *decl_map, lldb::addr_t loclist_base_load_addr, const Value* initial_value_ptr, Value& result, Error *error_ptr ) const argument
H A DMaterializer.cpp787 ExecutionContextScope *exe_scope = map.GetBestExecutionContextScope(); local
789 if (!exe_scope)
807 lldb::TargetSP target_sp = exe_scope->CalculateTarget();
819 ret = target_sp->GetPersistentVariables().CreateVariable(exe_scope,
837 ret->m_live_sp = ValueObjectConstResult::Create(exe_scope,
1011 ExecutionContextScope *exe_scope = map.GetBestExecutionContextScope(); local
1015 if (exe_scope)
1309 ExecutionContextScope *exe_scope = frame_sp.get(); local
1311 if (!exe_scope)
1312 exe_scope
1359 ExecutionContextScope *exe_scope = m_map->GetBestExecutionContextScope(); local
[all...]
/external/lldb/source/Core/
H A DValueObjectMemory.cpp37 ValueObjectMemory::Create (ExecutionContextScope *exe_scope, argument
42 return (new ValueObjectMemory (exe_scope, name, address, type_sp))->GetSP();
46 ValueObjectMemory::Create (ExecutionContextScope *exe_scope, argument
51 return (new ValueObjectMemory (exe_scope, name, address, ast_type))->GetSP();
54 ValueObjectMemory::ValueObjectMemory (ExecutionContextScope *exe_scope, argument
58 ValueObject(exe_scope),
90 ValueObjectMemory::ValueObjectMemory (ExecutionContextScope *exe_scope, argument
94 ValueObject(exe_scope),
H A DValueObjectConstResult.cpp33 ValueObjectConstResult::Create (ExecutionContextScope *exe_scope, argument
38 return (new ValueObjectConstResult (exe_scope,
44 ValueObjectConstResult::ValueObjectConstResult (ExecutionContextScope *exe_scope, argument
48 ValueObject (exe_scope),
63 ExecutionContextScope *exe_scope,
70 return (new ValueObjectConstResult (exe_scope,
77 ValueObjectConstResult::ValueObjectConstResult (ExecutionContextScope *exe_scope, argument
82 ValueObject (exe_scope),
105 ValueObjectConstResult::Create (ExecutionContextScope *exe_scope, argument
113 return (new ValueObjectConstResult (exe_scope,
61 Create( ExecutionContextScope *exe_scope, const ClangASTType &clang_type, const ConstString &name, const DataExtractor &data, lldb::addr_t address ) argument
123 Create(ExecutionContextScope *exe_scope, Value &value, const ConstString &name) argument
130 ValueObjectConstResult(ExecutionContextScope *exe_scope, const ClangASTType &clang_type, const ConstString &name, const lldb::DataBufferSP &data_sp, lldb::ByteOrder data_byte_order, uint32_t data_addr_size, lldb::addr_t address) argument
156 Create(ExecutionContextScope *exe_scope, const ClangASTType &clang_type, const ConstString &name, lldb::addr_t address, AddressType address_type, uint32_t addr_byte_size) argument
171 ValueObjectConstResult(ExecutionContextScope *exe_scope, const ClangASTType &clang_type, const ConstString &name, lldb::addr_t address, AddressType address_type, uint32_t addr_byte_size) argument
202 Create( ExecutionContextScope *exe_scope, const Error& error ) argument
212 ValueObjectConstResult(ExecutionContextScope *exe_scope, const Error& error) argument
223 ValueObjectConstResult(ExecutionContextScope *exe_scope, const Value &value, const ConstString &name) argument
[all...]
H A DValueObjectRegister.cpp117 ValueObjectRegisterSet::Create (ExecutionContextScope *exe_scope, lldb::RegisterContextSP &reg_ctx_sp, uint32_t set_idx) argument
119 return (new ValueObjectRegisterSet (exe_scope, reg_ctx_sp, set_idx))->GetSP();
123 ValueObjectRegisterSet::ValueObjectRegisterSet (ExecutionContextScope *exe_scope, lldb::RegisterContextSP &reg_ctx, uint32_t reg_set_idx) : argument
124 ValueObject (exe_scope),
283 ValueObjectRegister::Create (ExecutionContextScope *exe_scope, lldb::RegisterContextSP &reg_ctx_sp, uint32_t reg_num) argument
285 return (new ValueObjectRegister (exe_scope, reg_ctx_sp, reg_num))->GetSP();
288 ValueObjectRegister::ValueObjectRegister (ExecutionContextScope *exe_scope, lldb::RegisterContextSP &reg_ctx, uint32_t reg_num) : argument
289 ValueObject (exe_scope),
H A DValueObjectVariable.cpp39 ValueObjectVariable::Create (ExecutionContextScope *exe_scope, const lldb::VariableSP &var_sp) argument
41 return (new ValueObjectVariable (exe_scope, var_sp))->GetSP();
44 ValueObjectVariable::ValueObjectVariable (ExecutionContextScope *exe_scope, const lldb::VariableSP &var_sp) : argument
45 ValueObject(exe_scope),
H A DAddress.cpp29 ReadBytes (ExecutionContextScope *exe_scope, const Address &address, void *dst, size_t dst_len) argument
31 if (exe_scope == NULL)
34 TargetSP target_sp (exe_scope->CalculateTarget());
45 GetByteOrderAndAddressSize (ExecutionContextScope *exe_scope, const Address &address, ByteOrder& byte_order, uint32_t& addr_size) argument
49 if (exe_scope == NULL)
52 TargetSP target_sp (exe_scope->CalculateTarget());
72 ReadUIntMax64 (ExecutionContextScope *exe_scope, const Address &address, uint32_t byte_size, bool &success) argument
75 if (exe_scope == NULL || byte_size > sizeof(uint64_t))
82 success = ReadBytes (exe_scope, address, &buf, byte_size) == byte_size;
87 if (GetByteOrderAndAddressSize (exe_scope, addres
100 ReadAddress(ExecutionContextScope *exe_scope, const Address &address, uint32_t pointer_size, Address &deref_so_addr) argument
141 DumpUInt(ExecutionContextScope *exe_scope, const Address &address, uint32_t byte_size, Stream* strm) argument
173 ReadCStringFromMemory(ExecutionContextScope *exe_scope, const Address &address, Stream *strm) argument
365 Dump(Stream *s, ExecutionContextScope *exe_scope, DumpStyle style, DumpStyle fallback_style, uint32_t addr_size) const argument
[all...]
H A DDisassembler.cpp412 ExecutionContextScope *exe_scope = exe_ctx.GetBestExecutionContextScope(); local
473 exe_scope,
H A DDebugger.cpp2213 ExecutionContextScope *exe_scope = exe_ctx ? exe_ctx->GetBestExecutionContextScope() : NULL; local
2275 ValueObjectSP var_value_sp (ValueObjectVariable::Create (exe_scope, var_sp));
H A DValueObject.cpp109 ValueObject::ValueObject (ExecutionContextScope *exe_scope, argument
114 m_update_point (exe_scope),
3885 ValueObject::EvaluationPoint::EvaluationPoint (ExecutionContextScope *exe_scope, bool use_selected): argument
3891 ExecutionContext exe_ctx(exe_scope);
3947 // exe_scope will be set to the current execution context scope.
3991 // That way we'll be sure to return a valid exe_scope.
/external/lldb/source/Target/
H A DCPPLanguageRuntime.cpp173 CPPLanguageRuntime::GetObjectDescription (Stream &str, Value &value, ExecutionContextScope *exe_scope) argument
/external/lldb/include/lldb/Expression/
H A DClangExpressionVariable.h66 ClangExpressionVariable(ExecutionContextScope *exe_scope, lldb::ByteOrder byte_order, uint32_t addr_byte_size);
394 CreateVariable (ExecutionContextScope *exe_scope, lldb::ByteOrder byte_order, uint32_t addr_byte_size) argument
396 lldb::ClangExpressionVariableSP var_sp(new ClangExpressionVariable(exe_scope, byte_order, addr_byte_size));
410 CreateVariable (ExecutionContextScope *exe_scope, argument
416 lldb::ClangExpressionVariableSP var_sp(new ClangExpressionVariable(exe_scope, byte_order, addr_byte_size));
/external/lldb/source/Breakpoint/
H A DBreakpointLocation.cpp605 ExecutionContextScope *exe_scope = NULL; local
608 exe_scope = target->GetProcessSP().get();
609 if (exe_scope == NULL)
610 exe_scope = target;
613 m_address.Dump(s, exe_scope, Address::DumpStyleLoadAddress, Address::DumpStyleFileAddress);
615 m_address.Dump(s, exe_scope, Address::DumpStyleLoadAddress, Address::DumpStyleModuleWithFileAddress);
/external/lldb/source/Plugins/LanguageRuntime/ObjC/AppleObjCRuntime/
H A DAppleObjCRuntime.cpp64 AppleObjCRuntime::GetObjectDescription (Stream &strm, Value &value, ExecutionContextScope *exe_scope) argument
70 exe_scope->CalculateExecutionContext(exe_ctx);
/external/lldb/source/Symbol/
H A DSymbolContext.cpp127 ExecutionContextScope *exe_scope,
191 return inline_parent_sc.DumpStopContext (s, exe_scope, inline_parent_addr, show_fullpaths, show_module, show_inlined_frames);
227 addr.Dump(s, exe_scope, Address::DumpStyleModuleWithFileAddress);
124 DumpStopContext( Stream *s, ExecutionContextScope *exe_scope, const Address &addr, bool show_fullpaths, bool show_module, bool show_inlined_frames ) const argument
/external/lldb/source/Commands/
H A DCommandObjectMemory.cpp818 ExecutionContextScope *exe_scope = m_exe_ctx.GetBestExecutionContextScope(); local
827 ValueObjectSP valobj_sp (ValueObjectMemory::Create (exe_scope,
884 exe_scope);
H A DCommandObjectTarget.cpp1498 DumpAddress (ExecutionContextScope *exe_scope, const Address &so_addr, bool verbose, Stream &strm) argument
1502 so_addr.Dump (&strm, exe_scope, Address::DumpStyleModuleWithFileAddress);
1504 so_addr.Dump (&strm, exe_scope, Address::DumpStyleSectionNameOffset);
1509 so_addr.Dump (&strm, exe_scope, Address::DumpStyleResolvedDescription);
1515 so_addr.Dump (&strm, exe_scope, Address::DumpStyleDetailedSymbolContext);
1548 ExecutionContextScope *exe_scope = interpreter.GetExecutionContext().GetBestExecutionContextScope(); local
1549 DumpAddress (exe_scope, so_addr, verbose, strm);
1552 // so_addr.Dump (&strm, exe_scope, Address::DumpStyleModuleWithFileAddress);
1554 // so_addr.Dump (&strm, exe_scope, Address::DumpStyleSectionNameOffset);
1559 // so_addr.Dump (&strm, exe_scope, Addres
1635 DumpSymbolContextList(ExecutionContextScope *exe_scope, Stream &strm, SymbolContextList &sc_list, bool verbose) argument
[all...]
/external/lldb/source/API/
H A DSBTarget.cpp2259 ExecutionContextScope *exe_scope = target_sp->GetProcessSP().get(); local
2260 if (exe_scope == NULL)
2261 exe_scope = target_sp.get();
2264 lldb::ValueObjectSP valobj_sp (ValueObjectVariable::Create (exe_scope, variable_list.GetVariableAtIndex(i)));

Completed in 389 milliseconds