Searched refs:ptr_value (Results 1 – 6 of 6) sorted by relevance
| /freebsd-12.1/contrib/llvm/tools/lldb/source/Plugins/Language/ObjC/ |
| H A D | NSError.cpp | 39 lldb::addr_t ptr_value = valobj.GetValueAsUnsigned(LLDB_INVALID_ADDRESS); in DerefToNSErrorPointer() local 46 ptr_value = process_sp->ReadPointerFromMemory(ptr_value, error); in DerefToNSErrorPointer() 50 return ptr_value; in DerefToNSErrorPointer() 62 lldb::addr_t ptr_value = DerefToNSErrorPointer(valobj); in NSError_SummaryProvider() local 63 if (ptr_value == LLDB_INVALID_ADDRESS) in NSError_SummaryProvider() 67 lldb::addr_t code_location = ptr_value + 2 * ptr_size; in NSError_SummaryProvider() 68 lldb::addr_t domain_location = ptr_value + 3 * ptr_size; in NSError_SummaryProvider()
|
| /freebsd-12.1/contrib/llvm/tools/lldb/source/Plugins/Language/CPlusPlus/ |
| H A D | LibStdcppUniquePointer.cpp | 150 uint64_t ptr_value = m_ptr_obj->GetValueAsUnsigned(0, &success); in GetSummary() local 153 if (ptr_value == 0) in GetSummary() 156 stream.Printf("0x%" PRIx64, ptr_value); in GetSummary()
|
| /freebsd-12.1/contrib/compiler-rt/lib/sanitizer_common/ |
| H A D | sanitizer_printf.cc | 120 static int AppendPointer(char **buff, const char *buff_end, u64 ptr_value) { in AppendPointer() argument 123 result += AppendUnsigned(buff, buff_end, ptr_value, 16, in AppendPointer()
|
| /freebsd-12.1/contrib/llvm/tools/lldb/source/Core/ |
| H A D | ValueObject.cpp | 2928 addr_t ptr_value = GetPointerValue(&address_type); in CastPointerType() local 2930 if (ptr_value != LLDB_INVALID_ADDRESS) { in CastPointerType() 2931 Address ptr_addr(ptr_value); in CastPointerType() 2942 addr_t ptr_value = GetPointerValue(&address_type); in CastPointerType() local 2944 if (ptr_value != LLDB_INVALID_ADDRESS) { in CastPointerType() 2945 Address ptr_addr(ptr_value); in CastPointerType()
|
| /freebsd-12.1/contrib/llvm/tools/lldb/source/Target/ |
| H A D | Process.cpp | 2372 bool Process::WritePointerToMemory(lldb::addr_t vm_addr, lldb::addr_t ptr_value, in WritePointerToMemory() argument 2377 scalar = (uint32_t)ptr_value; in WritePointerToMemory() 2379 scalar = ptr_value; in WritePointerToMemory()
|
| /freebsd-12.1/contrib/llvm/tools/lldb/include/lldb/Target/ |
| H A D | Process.h | 1848 bool WritePointerToMemory(lldb::addr_t vm_addr, lldb::addr_t ptr_value,
|