Home
last modified time | relevance | path

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 DNSError.cpp39 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 DLibStdcppUniquePointer.cpp150 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 Dsanitizer_printf.cc120 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 DValueObject.cpp2928 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 DProcess.cpp2372 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 DProcess.h1848 bool WritePointerToMemory(lldb::addr_t vm_addr, lldb::addr_t ptr_value,