Home
last modified time | relevance | path

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

/openbsd/src/gnu/llvm/lldb/source/Core/
DValueObject.cpp666 addr_t cstr_address = LLDB_INVALID_ADDRESS; in IsCStringContainer() local
668 cstr_address = GetPointerValue(&cstr_address_type); in IsCStringContainer()
669 return (cstr_address != LLDB_INVALID_ADDRESS); in IsCStringContainer()
895 addr_t cstr_address = LLDB_INVALID_ADDRESS; in ReadPointedString() local
911 cstr_address = GetAddressOf(true, &cstr_address_type); in ReadPointedString()
914 cstr_address = GetPointerValue(&cstr_address_type); in ReadPointedString()
917 if (cstr_address == 0 || cstr_address == LLDB_INVALID_ADDRESS) { in ReadPointedString()
937 Address cstr_so_addr(cstr_address); in ReadPointedString()