Home
last modified time | relevance | path

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

/llvm-project-15.0.7/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()
/llvm-project-15.0.7/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()
/llvm-project-15.0.7/lldb/test/API/python_api/value/change_values/
H A DTestChangeValueAPI.py111 ptr_value = frame0.FindVariable("ptr")
112 self.assertTrue(ptr_value.IsValid(), "Got the SBValue for ptr")
114 ptr_second_value = ptr_value.GetChildMemberWithName("second_val")
/llvm-project-15.0.7/clang-tools-extra/docs/clang-tidy/checks/misc/
H A Dconst-correctness.rst188 int *ptr_value = &value;
190 int *const ptr_value = &value;
192 int result = 100 * (*ptr_value); // Does not modify the pointer itself.
194 *ptr_value = 0;
/llvm-project-15.0.7/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()
/llvm-project-15.0.7/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()
/llvm-project-15.0.7/lldb/source/Core/
H A DValueObject.cpp2777 addr_t ptr_value = GetPointerValue(&address_type); in CastPointerType() local
2779 if (ptr_value != LLDB_INVALID_ADDRESS) { in CastPointerType()
2780 Address ptr_addr(ptr_value); in CastPointerType()
2791 addr_t ptr_value = GetPointerValue(&address_type); in CastPointerType() local
2793 if (ptr_value != LLDB_INVALID_ADDRESS) { in CastPointerType()
2794 Address ptr_addr(ptr_value); in CastPointerType()
/llvm-project-15.0.7/lldb/include/lldb/Target/
H A DProcess.h1529 bool WritePointerToMemory(lldb::addr_t vm_addr, lldb::addr_t ptr_value,
/llvm-project-15.0.7/lldb/source/Target/
H A DProcess.cpp2093 bool Process::WritePointerToMemory(lldb::addr_t vm_addr, lldb::addr_t ptr_value, in WritePointerToMemory() argument
2098 scalar = (uint32_t)ptr_value; in WritePointerToMemory()
2100 scalar = ptr_value; in WritePointerToMemory()