Home
last modified time | relevance | path

Searched refs:ptr_value (Results 1 – 7 of 7) sorted by relevance

/openbsd-src/gnu/llvm/lldb/source/Plugins/Language/ObjC/
H A DNSError.cpp38 lldb::addr_t ptr_value = valobj.GetValueAsUnsigned(LLDB_INVALID_ADDRESS); in DerefToNSErrorPointer() local
45 ptr_value = process_sp->ReadPointerFromMemory(ptr_value, error); in DerefToNSErrorPointer()
49 return ptr_value; in DerefToNSErrorPointer()
61 lldb::addr_t ptr_value = DerefToNSErrorPointer(valobj); in NSError_SummaryProvider() local
62 if (ptr_value == LLDB_INVALID_ADDRESS) in NSError_SummaryProvider()
66 lldb::addr_t code_location = ptr_value + 2 * ptr_size; in NSError_SummaryProvider()
67 lldb::addr_t domain_location = ptr_value + 3 * ptr_size; in NSError_SummaryProvider()
/openbsd-src/gnu/llvm/lldb/source/Plugins/Language/CPlusPlus/
H A DLibStdcppUniquePointer.cpp161 uint64_t ptr_value = m_ptr_obj->GetValueAsUnsigned(0, &success); in GetSummary() local
164 if (ptr_value == 0) in GetSummary()
167 stream.Printf("0x%" PRIx64, ptr_value); in GetSummary()
/openbsd-src/gnu/llvm/compiler-rt/lib/scudo/standalone/
H A Dstring_utils.cpp109 static int appendPointer(char **Buffer, const char *BufferEnd, u64 ptr_value) { in appendPointer() argument
112 Res += appendUnsigned(Buffer, BufferEnd, ptr_value, 16, in appendPointer()
/openbsd-src/gnu/llvm/compiler-rt/lib/sanitizer_common/
H A Dsanitizer_printf.cpp119 static int AppendPointer(char **buff, const char *buff_end, u64 ptr_value) { in AppendPointer() argument
122 result += AppendUnsigned(buff, buff_end, ptr_value, 16, in AppendPointer()
/openbsd-src/gnu/llvm/lldb/source/Core/
H A DValueObject.cpp2789 addr_t ptr_value = GetPointerValue(&address_type); in CastPointerType() local
2791 if (ptr_value != LLDB_INVALID_ADDRESS) { in CastPointerType()
2792 Address ptr_addr(ptr_value); in CastPointerType()
2803 addr_t ptr_value = GetPointerValue(&address_type); in CastPointerType() local
2805 if (ptr_value != LLDB_INVALID_ADDRESS) { in CastPointerType()
2806 Address ptr_addr(ptr_value); in CastPointerType()
/openbsd-src/gnu/llvm/lldb/include/lldb/Target/
H A DProcess.h1551 bool WritePointerToMemory(lldb::addr_t vm_addr, lldb::addr_t ptr_value,
/openbsd-src/gnu/llvm/lldb/source/Target/
H A DProcess.cpp2097 bool Process::WritePointerToMemory(lldb::addr_t vm_addr, lldb::addr_t ptr_value, in WritePointerToMemory() argument
2102 scalar = (uint32_t)ptr_value; in WritePointerToMemory()
2104 scalar = ptr_value; in WritePointerToMemory()