HomeSort by relevance Sort by last modified time
    Searched full:exe_scope (Results 1 - 25 of 42) sorted by null

1 2

  /external/lldb/source/Core/
ValueObjectConstResult.cpp 33 ValueObjectConstResult::Create (ExecutionContextScope *exe_scope,
38 return (new ValueObjectConstResult (exe_scope,
44 ValueObjectConstResult::ValueObjectConstResult (ExecutionContextScope *exe_scope,
48 ValueObject (exe_scope),
63 ExecutionContextScope *exe_scope,
70 return (new ValueObjectConstResult (exe_scope,
77 ValueObjectConstResult::ValueObjectConstResult (ExecutionContextScope *exe_scope,
82 ValueObject (exe_scope),
105 ValueObjectConstResult::Create (ExecutionContextScope *exe_scope,
113 return (new ValueObjectConstResult (exe_scope,
    [all...]
Address.cpp 29 ReadBytes (ExecutionContextScope *exe_scope, const Address &address, void *dst, size_t dst_len)
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)
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)
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, address, byte_order, addr_size)
    [all...]
ValueObjectMemory.cpp 37 ValueObjectMemory::Create (ExecutionContextScope *exe_scope,
42 return (new ValueObjectMemory (exe_scope, name, address, type_sp))->GetSP();
46 ValueObjectMemory::Create (ExecutionContextScope *exe_scope,
51 return (new ValueObjectMemory (exe_scope, name, address, ast_type))->GetSP();
54 ValueObjectMemory::ValueObjectMemory (ExecutionContextScope *exe_scope,
58 ValueObject(exe_scope),
90 ValueObjectMemory::ValueObjectMemory (ExecutionContextScope *exe_scope,
94 ValueObject(exe_scope),
ValueObjectRegister.cpp 117 ValueObjectRegisterSet::Create (ExecutionContextScope *exe_scope, lldb::RegisterContextSP &reg_ctx_sp, uint32_t set_idx)
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) :
124 ValueObject (exe_scope),
283 ValueObjectRegister::Create (ExecutionContextScope *exe_scope, lldb::RegisterContextSP &reg_ctx_sp, uint32_t reg_num)
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) :
289 ValueObject (exe_scope),
ValueObjectVariable.cpp 39 ValueObjectVariable::Create (ExecutionContextScope *exe_scope, const lldb::VariableSP &var_sp)
41 return (new ValueObjectVariable (exe_scope, var_sp))->GetSP();
44 ValueObjectVariable::ValueObjectVariable (ExecutionContextScope *exe_scope, const lldb::VariableSP &var_sp) :
45 ValueObject(exe_scope),
DataExtractor.cpp     [all...]
  /external/lldb/include/lldb/Core/
ValueObjectConstResult.h 30 Create (ExecutionContextScope *exe_scope,
36 Create (ExecutionContextScope *exe_scope,
43 Create (ExecutionContextScope *exe_scope,
52 Create (ExecutionContextScope *exe_scope,
60 Create (ExecutionContextScope *exe_scope,
66 Create (ExecutionContextScope *exe_scope,
141 ValueObjectConstResult (ExecutionContextScope *exe_scope,
146 ValueObjectConstResult (ExecutionContextScope *exe_scope,
152 ValueObjectConstResult (ExecutionContextScope *exe_scope,
160 ValueObjectConstResult (ExecutionContextScope *exe_scope,
    [all...]
ValueObjectMemory.h 30 Create (ExecutionContextScope *exe_scope,
36 Create (ExecutionContextScope *exe_scope,
74 ValueObjectMemory (ExecutionContextScope *exe_scope,
79 ValueObjectMemory (ExecutionContextScope *exe_scope,
ValueObjectVariable.h 29 Create (ExecutionContextScope *exe_scope, const lldb::VariableSP &var_sp);
81 ValueObjectVariable (ExecutionContextScope *exe_scope, const lldb::VariableSP &var_sp);
ValueObjectRegister.h 76 Create (ExecutionContextScope *exe_scope, lldb::RegisterContextSP &reg_ctx_sp, uint32_t set_idx);
122 ValueObjectRegisterSet (ExecutionContextScope *exe_scope, lldb::RegisterContextSP &reg_ctx_sp, uint32_t set_idx);
134 Create (ExecutionContextScope *exe_scope, lldb::RegisterContextSP &reg_ctx_sp, uint32_t reg_num);
185 ValueObjectRegister (ExecutionContextScope *exe_scope, lldb::RegisterContextSP &reg_ctx_sp, uint32_t reg_num);
ValueObject.h 450 EvaluationPoint (ExecutionContextScope *exe_scope, bool use_selected = false);
462 // Set the EvaluationPoint to the values in exe_scope,
468 // SetContext (ExecutionContextScope *exe_scope);
    [all...]
  /external/lldb/source/Expression/
ClangPersistentVariables.cpp 35 ClangPersistentVariables::CreatePersistentVariable (ExecutionContextScope *exe_scope,
44 var_sp = CreateVariable(exe_scope, name, user_type, byte_order, addr_byte_size);
ClangExpressionVariable.cpp 28 ClangExpressionVariable::ClangExpressionVariable(ExecutionContextScope *exe_scope, lldb::ByteOrder byte_order, uint32_t addr_byte_size) :
32 m_frozen_sp (ValueObjectConstResult::Create (exe_scope, byte_order, addr_byte_size))
Materializer.cpp 787 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,
1011 ExecutionContextScope *exe_scope = map.GetBestExecutionContextScope(); local
1309 ExecutionContextScope *exe_scope = frame_sp.get(); local
1359 ExecutionContextScope *exe_scope = m_map->GetBestExecutionContextScope(); local
    [all...]
ClangExpressionParser.cpp 185 ClangExpressionParser::ClangExpressionParser (ExecutionContextScope *exe_scope,
209 if (exe_scope)
210 target_sp = exe_scope->CalculateTarget();
297 if (exe_scope)
298 process_sp = exe_scope->CalculateProcess();
ClangFunction.cpp 53 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());
ClangUserExpression.cpp 515 ExecutionContextScope *exe_scope = process; local
517 if (!exe_scope)
518 exe_scope = exe_ctx.GetTargetPtr();
520 ClangExpressionParser parser(exe_scope, *this);
    [all...]
  /external/lldb/source/Breakpoint/
BreakpointLocation.cpp 605 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/include/lldb/Target/
LanguageRuntime.h 45 GetObjectDescription (Stream &str, Value &value, ExecutionContextScope *exe_scope) = 0;
CPPLanguageRuntime.h 131 GetObjectDescription (Stream &str, Value &value, ExecutionContextScope *exe_scope);
  /external/lldb/include/lldb/Expression/
ClangExpressionVariable.h 66 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)
396 lldb::ClangExpressionVariableSP var_sp(new ClangExpressionVariable(exe_scope, byte_order, addr_byte_size));
410 CreateVariable (ExecutionContextScope *exe_scope,
416 lldb::ClangExpressionVariableSP var_sp(new ClangExpressionVariable(exe_scope, byte_order, addr_byte_size));
ClangExpressionParser.h 45 /// @param[in] exe_scope,
53 ClangExpressionParser (ExecutionContextScope *exe_scope,
ClangPersistentVariables.h 40 CreatePersistentVariable (ExecutionContextScope *exe_scope,
  /external/lldb/source/Plugins/LanguageRuntime/ObjC/AppleObjCRuntime/
AppleObjCRuntime.cpp 64 AppleObjCRuntime::GetObjectDescription (Stream &strm, Value &value, ExecutionContextScope *exe_scope)
70 exe_scope->CalculateExecutionContext(exe_ctx);
AppleObjCRuntime.h 35 GetObjectDescription (Stream &str, Value &value, ExecutionContextScope *exe_scope);

Completed in 425 milliseconds

1 2