Home
last modified time | relevance | path

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

/llvm-project-15.0.7/libcxx/utils/gdb/libcxx/
H A Dprinters.py719 addr_str = "[%s]" % str(self.addr)
721 yield addr_str, " end()"
723 yield addr_str, self._get_node_value(self.node)
/llvm-project-15.0.7/lldb/source/Host/posix/
H A DConnectionFileDescriptorPosix.cpp727 std::string addr_str = s.str(); in ConnectFile() local
729 int fd = llvm::sys::RetryAfterSignal(-1, ::open, addr_str.c_str(), O_RDWR); in ConnectFile()
/llvm-project-15.0.7/lldb/examples/python/
H A Dsymbolication.py723 for addr_str in args:
724 addr = int(addr_str, 0)
/llvm-project-15.0.7/lldb/source/Plugins/Process/gdb-remote/
H A DProcessGDBRemote.cpp2222 llvm::StringRef addr_str, bytes_str; in SetThreadStopInfo() local
2223 std::tie(addr_str, bytes_str) = value.split('='); in SetThreadStopInfo()
2224 if (!addr_str.empty() && !bytes_str.empty()) { in SetThreadStopInfo()
2226 if (!addr_str.getAsInteger(0, mem_cache_addr)) { in SetThreadStopInfo()