Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/lldb/source/Core/
H A DValueObject.cpp652 addr_t cstr_address = LLDB_INVALID_ADDRESS; in IsCStringContainer() local
654 cstr_address = GetPointerValue(&cstr_address_type); in IsCStringContainer()
655 return (cstr_address != LLDB_INVALID_ADDRESS); in IsCStringContainer()
879 addr_t cstr_address = LLDB_INVALID_ADDRESS; in ReadPointedString() local
895 cstr_address = GetAddressOf(true, &cstr_address_type); in ReadPointedString()
898 cstr_address = GetPointerValue(&cstr_address_type); in ReadPointedString()
901 if (cstr_address == 0 || cstr_address == LLDB_INVALID_ADDRESS) { in ReadPointedString()
921 Address cstr_so_addr(cstr_address); in ReadPointedString()