|
reference, declaration → definition
definition → references, declarations, derived classes, virtual overrides
reference to multiple definitions → definitions
unreferenced
|
Declarations
tools/lldb/include/lldb/Core/ValueObject.h 435 virtual uint64_t GetValueAsUnsigned(uint64_t fail_value,
References
tools/lldb/source/API/SBValue.cpp 940 ret_val = value_sp->GetValueAsUnsigned(fail_value, &success);
969 return value_sp->GetValueAsUnsigned(fail_value);
tools/lldb/source/Commands/CommandObjectMemory.cpp 1072 uint64_t value = result_sp->GetValueAsUnsigned(0);
tools/lldb/source/Commands/CommandObjectWatchpoint.cpp 1036 addr = valobj_sp->GetValueAsUnsigned(0, &success);
tools/lldb/source/Core/ValueObject.cpp 2076 GetValueAsUnsigned(0));
2771 Value v(Scalar(GetValueAsUnsigned(UINT64_MAX)));
tools/lldb/source/Core/ValueObjectDynamicValue.cpp 281 uint64_t my_value = GetValueAsUnsigned(UINT64_MAX);
282 uint64_t parent_value = m_parent->GetValueAsUnsigned(UINT64_MAX);
314 uint64_t my_value = GetValueAsUnsigned(UINT64_MAX);
315 uint64_t parent_value = m_parent->GetValueAsUnsigned(UINT64_MAX);
tools/lldb/source/DataFormatters/FormattersHelpers.cpp 140 data_addr = valobj.GetValueAsUnsigned(0);
tools/lldb/source/DataFormatters/ValueObjectPrinter.cpp 769 uint64_t instance_ptr_value = m_valobj->GetValueAsUnsigned(0);
tools/lldb/source/Expression/UserExpression.cpp 129 lldb::addr_t ret = valobj_sp->GetValueAsUnsigned(LLDB_INVALID_ADDRESS);
tools/lldb/source/Interpreter/OptionArgParser.cpp 193 addr = valobj_sp->GetValueAsUnsigned(fail_value, &success);
tools/lldb/source/Plugins/DynamicLoader/MacOSX-DYLD/DynamicLoaderDarwin.cpp 1101 result_valobj_sp->GetValueAsUnsigned(0);
tools/lldb/source/Plugins/InstrumentationRuntime/ASan/ASanRuntime.cpp 148 ->GetValueAsUnsigned(0);
153 return_value_sp->GetValueForExpressionPath(".pc")->GetValueAsUnsigned(0);
161 ->GetValueAsUnsigned(0);
164 ->GetValueAsUnsigned(0);
167 ->GetValueAsUnsigned(0);
170 ->GetValueAsUnsigned(0);
tools/lldb/source/Plugins/InstrumentationRuntime/TSan/TSanRuntime.cpp 220 trace_value_object->GetChildAtIndex(j, true)->GetValueAsUnsigned(0);
237 ->GetValueAsUnsigned(0);
256 ->GetValueAsUnsigned(0);
271 o->GetValueForExpressionPath(".tid")->GetValueAsUnsigned(0);
273 o->GetValueForExpressionPath(".os_id")->GetValueAsUnsigned(0);
347 ->GetValueAsUnsigned(0));
356 o->GetValueForExpressionPath(".idx")->GetValueAsUnsigned(0));
368 o->GetValueForExpressionPath(".idx")->GetValueAsUnsigned(0));
372 o->GetValueForExpressionPath(".tid")->GetValueAsUnsigned(0),
376 o->GetValueForExpressionPath(".size")->GetValueAsUnsigned(0));
379 o->GetValueForExpressionPath(".write")->GetValueAsUnsigned(0));
382 o->GetValueForExpressionPath(".atomic")->GetValueAsUnsigned(0));
385 o->GetValueForExpressionPath(".addr")->GetValueAsUnsigned(0));
396 o->GetValueForExpressionPath(".idx")->GetValueAsUnsigned(0));
400 o->GetValueForExpressionPath(".addr")->GetValueAsUnsigned(0));
403 o->GetValueForExpressionPath(".start")->GetValueAsUnsigned(0));
406 o->GetValueForExpressionPath(".size")->GetValueAsUnsigned(0));
410 o->GetValueForExpressionPath(".tid")->GetValueAsUnsigned(0),
414 o->GetValueForExpressionPath(".fd")->GetValueAsUnsigned(0));
417 ->GetValueAsUnsigned(0));
429 o->GetValueForExpressionPath(".idx")->GetValueAsUnsigned(0));
432 o->GetValueForExpressionPath(".mutex_id")->GetValueAsUnsigned(0));
435 o->GetValueForExpressionPath(".addr")->GetValueAsUnsigned(0));
438 o->GetValueForExpressionPath(".destroyed")->GetValueAsUnsigned(0));
449 o->GetValueForExpressionPath(".idx")->GetValueAsUnsigned(0));
453 o->GetValueForExpressionPath(".tid")->GetValueAsUnsigned(0),
457 o->GetValueForExpressionPath(".os_id")->GetValueAsUnsigned(0));
460 o->GetValueForExpressionPath(".running")->GetValueAsUnsigned(0));
465 ->GetValueAsUnsigned(0),
476 o->GetValueForExpressionPath(".idx")->GetValueAsUnsigned(0));
480 o->GetValueForExpressionPath(".tid")->GetValueAsUnsigned(0),
tools/lldb/source/Plugins/InstrumentationRuntime/UBSan/UBSanRuntime.cpp 100 ->GetValueAsUnsigned(0);
tools/lldb/source/Plugins/Language/CPlusPlus/LibCxx.cpp 50 engaged_sp->GetValueAsUnsigned(0) == 1 ? "true" : "false");
120 if (ptr_sp->GetValueAsUnsigned(0) == 0) {
136 stream.Printf("ptr = 0x%" PRIx64, ptr_sp->GetValueAsUnsigned(0));
140 stream.Printf(" strong=%" PRIu64, 1 + count_sp->GetValueAsUnsigned(0));
143 stream.Printf(" weak=%" PRIu64, 1 + weakcount_sp->GetValueAsUnsigned(0));
241 auto addr(m_pair_ptr->GetValueAsUnsigned(LLDB_INVALID_ADDRESS));
379 uint64_t count = 1 + shared_owners_sp->GetValueAsUnsigned(0);
393 uint64_t count = 1 + shared_weak_owners_sp->GetValueAsUnsigned(0);
456 uint64_t value = valobj.GetValueAsUnsigned(0);
510 size_mode_value = (size_mode->GetValueAsUnsigned(0));
517 size_mode_value = (size_mode->GetValueAsUnsigned(0));
542 size = size_vo->GetValueAsUnsigned(0);
tools/lldb/source/Plugins/Language/CPlusPlus/LibCxxBitset.cpp 106 uint8_t value = !!(chunk->GetValueAsUnsigned(0) & (uint64_t(1) << chunk_idx));
tools/lldb/source/Plugins/Language/CPlusPlus/LibCxxInitializerList.cpp 68 m_num_elements = size_sp->GetValueAsUnsigned(0);
78 offset = offset + m_start->GetValueAsUnsigned(0);
tools/lldb/source/Plugins/Language/CPlusPlus/LibCxxList.cpp 54 return m_entry_sp->GetValueAsUnsigned(0);
337 m_count = value->GetValueAsUnsigned(UINT32_MAX);
343 uint64_t next_val = m_head->GetValueAsUnsigned(0);
344 uint64_t prev_val = m_tail->GetValueAsUnsigned(0);
423 m_node_address = backend_addr->GetValueAsUnsigned(0);
tools/lldb/source/Plugins/Language/CPlusPlus/LibCxxMap.cpp 62 return m_entry_sp->GetValueAsUnsigned(0);
244 m_count = m_item->GetValueAsUnsigned(0);
tools/lldb/source/Plugins/Language/CPlusPlus/LibCxxOptional.cpp 47 m_size = engaged_sp->GetValueAsUnsigned(0);
tools/lldb/source/Plugins/Language/CPlusPlus/LibCxxUnorderedMap.cpp 137 {value_sp.get(), hash_sp->GetValueAsUnsigned(0)});
140 if (!m_next_element || m_next_element->GetValueAsUnsigned(0) == 0)
198 m_num_elements = num_elements_sp->GetValueAsUnsigned(0);
tools/lldb/source/Plugins/Language/CPlusPlus/LibCxxVariant.cpp 91 return {index_sp->GetValueAsUnsigned(0)};
tools/lldb/source/Plugins/Language/CPlusPlus/LibCxxVector.cpp 89 uint64_t start_val = m_start->GetValueAsUnsigned(0);
90 uint64_t finish_val = m_finish->GetValueAsUnsigned(0);
111 offset = offset + m_start->GetValueAsUnsigned(0);
256 m_count = size_sp->GetValueAsUnsigned(0);
265 m_base_data_address = begin_sp->GetValueAsUnsigned(0);
tools/lldb/source/Plugins/Language/CPlusPlus/LibStdcpp.cpp 107 m_pair_address = _M_node_sp->GetValueAsUnsigned(0);
202 if (item_ptr->GetValueAsUnsigned(0) == 0)
207 "item", item_ptr->GetValueAsUnsigned(0), m_exe_ctx_ref,
406 if (ptr_sp->GetValueAsUnsigned(0) == 0 ||
407 usecount_sp->GetValueAsUnsigned(0) == 0) {
424 stream.Printf("ptr = 0x%" PRIx64, ptr_sp->GetValueAsUnsigned(0));
tools/lldb/source/Plugins/Language/CPlusPlus/LibStdcppUniquePointer.cpp 153 uint64_t ptr_value = m_ptr_obj->GetValueAsUnsigned(0, &success);
tools/lldb/source/Plugins/Language/ObjC/CF.cpp 33 epoch = epoch + (time_t)valobj.GetValueAsUnsigned(0);
67 lldb::addr_t valobj_addr = valobj.GetValueAsUnsigned(0);
129 lldb::addr_t valobj_addr = valobj.GetValueAsUnsigned(0);
249 lldb::addr_t valobj_addr = valobj.GetValueAsUnsigned(0);
tools/lldb/source/Plugins/Language/ObjC/Cocoa.cpp 58 lldb::addr_t valobj_addr = valobj.GetValueAsUnsigned(0);
106 lldb::addr_t valobj_addr = valobj.GetValueAsUnsigned(0);
151 lldb::addr_t valobj_addr = valobj.GetValueAsUnsigned(0);
196 lldb::addr_t valobj_addr = valobj.GetValueAsUnsigned(0);
242 lldb::addr_t valobj_addr = valobj.GetValueAsUnsigned(0);
431 lldb::addr_t valobj_addr = valobj.GetValueAsUnsigned(0);
619 lldb::addr_t valobj_addr = valobj.GetValueAsUnsigned(0);
681 lldb::addr_t valobj_addr = valobj.GetValueAsUnsigned(0);
699 if (text->GetValueAsUnsigned(0) == 0)
704 if (base && base->GetValueAsUnsigned(0)) {
795 lldb::addr_t valobj_addr = valobj.GetValueAsUnsigned(0);
883 runtime->GetClassDescriptorFromISA(valobj.GetValueAsUnsigned(0)));
948 lldb::addr_t valobj_addr = valobj.GetValueAsUnsigned(0);
1009 uint8_t value = (real_guy_sp->GetValueAsUnsigned(0) & 0xFF);
1027 valobj.GetValueAsUnsigned(LLDB_INVALID_ADDRESS);
1068 lldb::addr_t data_address = valobj.GetValueAsUnsigned(LLDB_INVALID_ADDRESS);
tools/lldb/source/Plugins/Language/ObjC/CoreMedia.cpp 52 auto value = value_sp->GetValueAsUnsigned(0);
53 auto timescale = (int32_t)timescale_sp->GetValueAsUnsigned(
56 auto flags = Flags(flags_sp->GetValueAsUnsigned(0) &
tools/lldb/source/Plugins/Language/ObjC/NSArray.cpp 360 lldb::addr_t valobj_addr = valobj.GetValueAsUnsigned(0);
524 uint64_t data_location = valobj_sp->GetValueAsUnsigned(0) + m_ptr_size;
670 uint64_t data_location = valobj_sp->GetValueAsUnsigned(0) + m_ptr_size;
700 object_at_idx = m_backend.GetSP()->GetValueAsUnsigned(0) + m_ptr_size;
tools/lldb/source/Plugins/Language/ObjC/NSDictionary.cpp 363 lldb::addr_t valobj_addr = valobj.GetValueAsUnsigned(0);
545 uint64_t data_location = valobj_sp->GetValueAsUnsigned(0) + m_ptr_size;
684 m_backend.GetValueAsUnsigned(LLDB_INVALID_ADDRESS) + ptr_size;
773 uint64_t data_location = valobj_sp->GetValueAsUnsigned(0) + m_ptr_size;
941 uint64_t data_location = valobj_sp->GetValueAsUnsigned(0) + m_ptr_size;
tools/lldb/source/Plugins/Language/ObjC/NSError.cpp 36 return valobj.GetParent()->GetValueAsUnsigned(LLDB_INVALID_ADDRESS);
38 lldb::addr_t ptr_value = valobj.GetValueAsUnsigned(LLDB_INVALID_ADDRESS);
tools/lldb/source/Plugins/Language/ObjC/NSException.cpp 44 ptr = valobj.GetParent()->GetValueAsUnsigned(LLDB_INVALID_ADDRESS);
46 ptr = valobj.GetValueAsUnsigned(LLDB_INVALID_ADDRESS);
tools/lldb/source/Plugins/Language/ObjC/NSIndexPath.cpp 117 m_impl.m_outsourced.m_count = length_sp->GetValueAsUnsigned(0);
tools/lldb/source/Plugins/Language/ObjC/NSSet.cpp 241 lldb::addr_t valobj_addr = valobj.GetValueAsUnsigned(0);
tools/lldb/source/Plugins/Language/ObjC/NSString.cpp 75 lldb::addr_t valobj_addr = valobj.GetValueAsUnsigned(0);
234 valobj.GetValueAsUnsigned(0),
238 lldb::addr_t location = valobj.GetValueAsUnsigned(0) + ptr_size + 4;
304 uint64_t pointer_value = valobj.GetValueAsUnsigned(0);
321 child_sp->GetValueAsUnsigned(0);
tools/lldb/source/Plugins/Language/ObjC/ObjCLanguage.cpp 1084 bool isZero = valobj.GetValueAsUnsigned(0, &canReadValue) == 0;
tools/lldb/source/Plugins/LanguageRuntime/CPlusPlus/CPPLanguageRuntime.cpp 112 lldb::addr_t member__f_pointer_value = member__f_->GetValueAsUnsigned(0);
tools/lldb/source/Plugins/LanguageRuntime/ObjC/AppleObjCRuntime/AppleObjCRuntime.cpp 541 addr_t frames_addr = frames_value->GetValueAsUnsigned(0);
544 size_t count = count_value->GetValueAsUnsigned(0);
547 size_t ignore = ignore_value->GetValueAsUnsigned(0);
tools/lldb/source/Plugins/LanguageRuntime/ObjC/AppleObjCRuntime/AppleObjCRuntimeV1.cpp 182 Initialize(isa_pointer.GetValueAsUnsigned(0), isa_pointer.GetProcessSP());
tools/lldb/source/Plugins/LanguageRuntime/RenderScript/RenderScriptRuntime/RenderScriptRuntime.cpp 1714 *result = expr_result->GetValueAsUnsigned(0, &success);
3567 val = value_sp->GetValueAsUnsigned(0, &success);
tools/lldb/source/Plugins/MemoryHistory/asan/MemoryHistoryASan.cpp 119 int count = count_sp->GetValueAsUnsigned(0);
120 tid_t tid = tid_sp->GetValueAsUnsigned(0) + 1;
133 addr_t pc = trace_sp->GetChildAtIndex(i, true)->GetValueAsUnsigned(0);
tools/lldb/source/Plugins/Process/Utility/InferiorCallPOSIX.cpp 111 call_plan_sp->GetReturnValueObject()->GetValueAsUnsigned(
tools/lldb/source/Plugins/SymbolFile/DWARF/DWARFASTParserClang.cpp 3231 num_elements = valobj_sp->GetValueAsUnsigned(0);
tools/lldb/source/Symbol/ClangASTContext.cpp 247 auto vbtable_ptr_addr = valobj.GetValueAsUnsigned(LLDB_INVALID_ADDRESS);
tools/lldb/source/Target/Process.cpp 6017 call_plan_sp->GetReturnValueObject()->GetValueAsUnsigned(