Home
last modified time | relevance | path

Searched refs:from_packet (Results 1 – 25 of 51) sorted by relevance

123

/external/rust/crates/gdbstub/src/protocol/commands/
D_vRun.rs13 fn from_packet(buf: PacketBuf<'a>) -> Option<Self> { in from_packet() method
27 args: ArgListHex::from_packet(args)?, in from_packet()
51 let pkt = vRun::from_packet(buf).unwrap(); in valid_vRun_foobarbaz()
62 let pkt = vRun::from_packet(buf).unwrap(); in valid_vRun_noname()
73 let pkt = vRun::from_packet(buf).unwrap(); in valid_vRun_noargs()
84 let pkt = vRun::from_packet(buf).unwrap(); in valid_vRun_args()
95 assert!(vRun::from_packet(buf).is_none()); in invalid_vRun_args()
102 assert!(vRun::from_packet(buf).is_none()); in invalid_vRun()
D_QCatchSyscalls.rs14 fn from_packet(buf: PacketBuf<'a>) -> Option<Self> { in from_packet() method
20 Some(QCatchSyscalls::Enable(ArgListHex::from_packet(sysno)?)) in from_packet()
D_QStartNoAckMode.rs8 fn from_packet(buf: PacketBuf<'a>) -> Option<Self> { in from_packet() method
D_bs.rs8 fn from_packet(buf: PacketBuf<'a>) -> Option<Self> { in from_packet() method
D_qsThreadInfo.rs8 fn from_packet(buf: PacketBuf<'a>) -> Option<Self> { in from_packet() method
D_k.rs8 fn from_packet(buf: PacketBuf<'a>) -> Option<Self> { in from_packet() method
D_qfThreadInfo.rs8 fn from_packet(buf: PacketBuf<'a>) -> Option<Self> { in from_packet() method
Dexclamation_mark.rs8 fn from_packet(buf: PacketBuf<'a>) -> Option<Self> { in from_packet() method
D_QEnvironmentReset.rs8 fn from_packet(buf: PacketBuf<'a>) -> Option<Self> { in from_packet() method
D_g.rs8 fn from_packet(buf: PacketBuf<'a>) -> Option<Self> { in from_packet() method
D_bc.rs8 fn from_packet(buf: PacketBuf<'a>) -> Option<Self> { in from_packet() method
Dquestion_mark.rs8 fn from_packet(buf: PacketBuf<'a>) -> Option<Self> { in from_packet() method
D_qOffsets.rs8 fn from_packet(buf: PacketBuf<'a>) -> Option<Self> { in from_packet() method
D_r_upcase.rs8 fn from_packet(buf: PacketBuf<'a>) -> Option<Self> { in from_packet() method
D_QAgent.rs10 fn from_packet(buf: PacketBuf<'a>) -> Option<Self> { in from_packet() method
D_QStartupWithShell.rs10 fn from_packet(buf: PacketBuf<'a>) -> Option<Self> { in from_packet() method
D_QDisableRandomization.rs10 fn from_packet(buf: PacketBuf<'a>) -> Option<Self> { in from_packet() method
D_g_upcase.rs10 fn from_packet(buf: PacketBuf<'a>) -> Option<Self> { in from_packet() method
D_qRegisterInfo.rs10 fn from_packet(buf: PacketBuf<'a>) -> Option<Self> { in from_packet() method
D_t_upcase.rs12 fn from_packet(buf: PacketBuf<'a>) -> Option<Self> { in from_packet() method
D_vFile_fstat.rs10 fn from_packet(buf: PacketBuf<'a>) -> Option<Self> { in from_packet() method
D_vFile_close.rs10 fn from_packet(buf: PacketBuf<'a>) -> Option<Self> { in from_packet() method
D_QEnvironmentUnset.rs10 fn from_packet(buf: PacketBuf<'a>) -> Option<Self> { in from_packet() method
D_vKill.rs12 fn from_packet(buf: PacketBuf<'a>) -> Option<Self> { in from_packet() method
/external/rust/crates/gdbstub/src/protocol/
Dcommands.rs19 fn from_packet(buf: PacketBuf<'a>) -> Option<Self>; in from_packet() method
79 pub fn from_packet(
181 let cmd = $mod::$command::from_packet(buf)?;

123