Home
last modified time | relevance | path

Searched refs:value_sb (Results 1 – 5 of 5) sorted by relevance

/external/lldb/source/API/
DSBBlock.cpp304 SBValue value_sb; in GetVariables() local
305 value_sb.SetSP(valobj_sp, use_dynamic); in GetVariables()
306 value_list.Append (value_sb); in GetVariables()
DSBValue.cpp938 SBValue value_sb; in GetDynamicValue() local
942 value_sb.SetSP(proxy_sp); in GetDynamicValue()
944 return value_sb; in GetDynamicValue()
950 SBValue value_sb; in GetStaticValue() local
954 value_sb.SetSP(proxy_sp); in GetStaticValue()
956 return value_sb; in GetStaticValue()
962 SBValue value_sb; in GetNonSyntheticValue() local
966 value_sb.SetSP(proxy_sp); in GetNonSyntheticValue()
968 return value_sb; in GetNonSyntheticValue()
DSBFrame.cpp1138 SBValue value_sb; in GetVariables() local
1139 value_sb.SetSP(valobj_sp,use_dynamic); in GetVariables()
1140 value_list.Append(value_sb); in GetVariables()
/external/lldb/scripts/Python/
Dpython-swigsafecast.swig104 SBTypeToSWIGWrapper (lldb::SBValue* value_sb)
106 return SWIG_NewPointerObj((void *) value_sb, SWIGTYPE_p_lldb__SBValue, 0);
/external/lldb/source/Interpreter/
DScriptInterpreterPython.cpp2455 lldb::SBValue* value_sb = NULL; in GetChildAtIndex() local
2463 value_sb = (lldb::SBValue*)g_swig_cast_to_sbvalue(child_ptr); in GetChildAtIndex()
2464 if (value_sb == NULL) in GetChildAtIndex()
2467 ret_val = value_sb->GetSP(); in GetChildAtIndex()