Home
last modified time | relevance | path

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

/freebsd-13.1/contrib/llvm-project/lldb/source/Host/common/
H A DNativeProcessProtocol.cpp417 llvm::SmallVector<uint8_t, 4> saved_opcode_bytes(expected_trap->size(), 0); in EnableSoftwareBreakpoint() local
420 Status error = ReadMemory(addr, saved_opcode_bytes.data(), in EnableSoftwareBreakpoint()
421 saved_opcode_bytes.size(), bytes_read); in EnableSoftwareBreakpoint()
426 if (bytes_read != saved_opcode_bytes.size()) { in EnableSoftwareBreakpoint()
431 saved_opcode_bytes.size(), bytes_read); in EnableSoftwareBreakpoint()
436 llvm::make_range(saved_opcode_bytes.begin(), saved_opcode_bytes.end())); in EnableSoftwareBreakpoint()
483 return SoftwareBreakpoint{1, saved_opcode_bytes, *expected_trap}; in EnableSoftwareBreakpoint()