Home
last modified time | relevance | path

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

/aosp_15_r20/external/rust/android-crates-io/crates/gdbstub/src/stub/
Derror.rs28 PacketBufferOverflow, enumerator
132PacketBufferOverflow => write!(f, "Received an oversized packet (did not fit in provided packet bu… in fmt()
193 InternalError::PacketBufferOverflow.into() in from()
/aosp_15_r20/external/rust/android-crates-io/crates/gdbstub/src/stub/core_impl/
Dsingle_register_access.rs31 .ok_or(Error::PacketBufferOverflow)?; in inner()
50 buf = buf.get_mut(..len).ok_or(Error::PacketBufferOverflow)?; in inner()
Dhost_io.rs61 res.write_binary(cmd.buf.get(..ret).ok_or(Error::PacketBufferOverflow)?)?; in handle_host_io()
120 res.write_binary(cmd.buf.get(..ret).ok_or(Error::PacketBufferOverflow)?)?; in handle_host_io()
Dauxv.rs28 res.write_binary(cmd.buf.get(..ret).ok_or(Error::PacketBufferOverflow)?)?; in handle_auxv()
Dlibraries.rs28 res.write_binary(cmd.buf.get(..ret).ok_or(Error::PacketBufferOverflow)?)?; in handle_libraries_svr4()
Dmemory_map.rs28 res.write_binary(cmd.buf.get(..ret).ok_or(Error::PacketBufferOverflow)?)?; in handle_memory_map()
Dexec_file.rs28 res.write_binary(cmd.buf.get(..ret).ok_or(Error::PacketBufferOverflow)?)?; in handle_exec_file()
Dthread_extra_info.rs30 let data = info.buf.get(..size).ok_or(Error::PacketBufferOverflow)?; in handle_thread_extra_info()
Dtarget_xml.rs54 res.write_binary(cmd.buf.get(..ret).ok_or(Error::PacketBufferOverflow)?)?; in handle_target_xml()
Dbase.rs289 let data = data.get(..data_len).ok_or(Error::PacketBufferOverflow)?; in handle_base()