Home
last modified time | relevance | path

Searched refs:FindValue (Results 1 – 22 of 22) sorted by relevance

/llvm-project-15.0.7/lldb/test/API/lang/cpp/class_static/
H A DTestStaticVariables.py156 val = frame.FindValue("A::g_points", lldb.eValueTypeVariableGlobal)
161 val = frame.FindValue("argc", lldb.eValueTypeVariableArgument)
165 val = frame.FindValue("argv", lldb.eValueTypeVariableArgument)
169 val = frame.FindValue("hello_world", lldb.eValueTypeVariableLocal)
/llvm-project-15.0.7/lldb/test/API/python_api/process/
H A DTestProcessAPI.py46 val = frame.FindValue("my_char", lldb.eValueTypeVariableGlobal)
67 val = frame.FindValue("my_char_ptr", lldb.eValueTypeVariableGlobal)
83 val = frame.FindValue("my_cstring", lldb.eValueTypeVariableGlobal)
104 val = frame.FindValue("my_uint32", lldb.eValueTypeVariableGlobal)
143 val = frame.FindValue("my_char", lldb.eValueTypeVariableGlobal)
201 val = frame.FindValue("my_int", lldb.eValueTypeVariableGlobal)
248 val = frame.FindValue("my_int", lldb.eValueTypeVariableGlobal)
/llvm-project-15.0.7/lldb/test/API/python_api/default-constructor/
H A Dsb_frame.py34 obj.FindValue("your_var", lldb.eValueTypeVariableGlobal)
35 obj.FindValue(
/llvm-project-15.0.7/lldb/test/API/python_api/findvalue_duplist/
H A DTestSBFrameFindValue.py53 self.frame.FindValue(
66 self.frame.FindValue(
/llvm-project-15.0.7/lldb/bindings/interface/
H A DSBFrame.i286 target's default.") FindValue;
288 FindValue (const char *name, ValueType value_type);
291 FindValue (const char *name, ValueType value_type, lldb::DynamicValueType use_dynamic);
/llvm-project-15.0.7/lldb/include/lldb/API/
H A DSBFrame.h180 lldb::SBValue FindValue(const char *name, ValueType value_type);
182 lldb::SBValue FindValue(const char *name, ValueType value_type,
/llvm-project-15.0.7/lldb/test/API/commands/watchpoints/step_over_watchpoint/
H A DTestStepOverWatchpoint.py47 read_value = frame.FindValue('g_watch_me_read',
70 write_value = frame.FindValue('g_watch_me_write',
/llvm-project-15.0.7/lldb/test/API/python_api/watchpoint/watchlocation/
H A DTestTargetWatchAddress.py55 value = frame0.FindValue('g_char_ptr',
129 value = frame0.FindValue('g_char_ptr',
H A DTestSetWatchlocation.py57 value = frame0.FindValue('g_char_ptr',
/llvm-project-15.0.7/lldb/test/API/functionalities/breakpoint/breakpoint_conditions/
H A DTestBreakpointConditions.py167 var = frame0.FindValue('val', lldb.eValueTypeVariableArgument)
213 var = frame0.FindValue('val', lldb.eValueTypeVariableArgument)
/llvm-project-15.0.7/lldb/test/API/lang/objc/objc-dynamic-value/
H A DTestObjCDynamicValue.py163 object_static = frame.FindValue(
165 object_dynamic = frame.FindValue(
/llvm-project-15.0.7/lldb/test/API/commands/register/register/register_command/
H A DTestRegisters.py176 value = frame.FindValue(register, lldb.eValueTypeRegister)
233 value = currentFrame.FindValue("fstat", lldb.eValueTypeRegister)
238 value = currentFrame.FindValue("ftag", lldb.eValueTypeRegister)
/llvm-project-15.0.7/lldb/test/API/lang/cpp/dynamic-value/
H A DTestDynamicValue.py114 this_static = frame.FindValue(
116 this_dynamic = frame.FindValue(
/llvm-project-15.0.7/lldb/test/API/commands/watchpoints/multiple_hits/
H A DTestMultipleHits.py35 buf = frame.FindValue("buf", lldb.eValueTypeVariableGlobal)
/llvm-project-15.0.7/lldb/test/API/python_api/watchpoint/
H A DTestWatchpointIgnoreCount.py63 value = frame0.FindValue('global', lldb.eValueTypeVariableGlobal)
H A DTestSetWatchpoint.py56 value = frame0.FindValue('global', lldb.eValueTypeVariableGlobal)
H A DTestWatchpointIter.py59 value = frame0.FindValue('global', lldb.eValueTypeVariableGlobal)
/llvm-project-15.0.7/lldb/test/API/python_api/watchpoint/condition/
H A DTestWatchpointConditionAPI.py62 value = frame0.FindValue('global', lldb.eValueTypeVariableGlobal)
/llvm-project-15.0.7/lldb/test/API/lang/cpp/global_operators/
H A DTestCppGlobalOperators.py71 expected_value = frame.FindValue(
/llvm-project-15.0.7/lldb/test/API/python_api/value/change_values/
H A DTestChangeValueAPI.py154 sp_value = frame0.FindValue("sp", lldb.eValueTypeRegister)
/llvm-project-15.0.7/lldb/test/API/python_api/frame/
H A DTestFrames.py154 val3 = frame.FindValue(None, lldb.eValueTypeVariableGlobal)
/llvm-project-15.0.7/lldb/source/API/
H A DSBFrame.cpp543 SBValue SBFrame::FindValue(const char *name, ValueType value_type) { in FindValue() function in SBFrame
555 value = FindValue(name, value_type, use_dynamic); in FindValue()
560 SBValue SBFrame::FindValue(const char *name, ValueType value_type, in FindValue() function in SBFrame