/external/rust/crates/gdbstub/src/protocol/commands/ |
D | _vRun.rs | 13 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.rs | 14 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.rs | 8 fn from_packet(buf: PacketBuf<'a>) -> Option<Self> { in from_packet() method
|
D | _bs.rs | 8 fn from_packet(buf: PacketBuf<'a>) -> Option<Self> { in from_packet() method
|
D | _qsThreadInfo.rs | 8 fn from_packet(buf: PacketBuf<'a>) -> Option<Self> { in from_packet() method
|
D | _k.rs | 8 fn from_packet(buf: PacketBuf<'a>) -> Option<Self> { in from_packet() method
|
D | _qfThreadInfo.rs | 8 fn from_packet(buf: PacketBuf<'a>) -> Option<Self> { in from_packet() method
|
D | exclamation_mark.rs | 8 fn from_packet(buf: PacketBuf<'a>) -> Option<Self> { in from_packet() method
|
D | _QEnvironmentReset.rs | 8 fn from_packet(buf: PacketBuf<'a>) -> Option<Self> { in from_packet() method
|
D | _g.rs | 8 fn from_packet(buf: PacketBuf<'a>) -> Option<Self> { in from_packet() method
|
D | _bc.rs | 8 fn from_packet(buf: PacketBuf<'a>) -> Option<Self> { in from_packet() method
|
D | question_mark.rs | 8 fn from_packet(buf: PacketBuf<'a>) -> Option<Self> { in from_packet() method
|
D | _qOffsets.rs | 8 fn from_packet(buf: PacketBuf<'a>) -> Option<Self> { in from_packet() method
|
D | _r_upcase.rs | 8 fn from_packet(buf: PacketBuf<'a>) -> Option<Self> { in from_packet() method
|
D | _QAgent.rs | 10 fn from_packet(buf: PacketBuf<'a>) -> Option<Self> { in from_packet() method
|
D | _QStartupWithShell.rs | 10 fn from_packet(buf: PacketBuf<'a>) -> Option<Self> { in from_packet() method
|
D | _QDisableRandomization.rs | 10 fn from_packet(buf: PacketBuf<'a>) -> Option<Self> { in from_packet() method
|
D | _g_upcase.rs | 10 fn from_packet(buf: PacketBuf<'a>) -> Option<Self> { in from_packet() method
|
D | _qRegisterInfo.rs | 10 fn from_packet(buf: PacketBuf<'a>) -> Option<Self> { in from_packet() method
|
D | _t_upcase.rs | 12 fn from_packet(buf: PacketBuf<'a>) -> Option<Self> { in from_packet() method
|
D | _vFile_fstat.rs | 10 fn from_packet(buf: PacketBuf<'a>) -> Option<Self> { in from_packet() method
|
D | _vFile_close.rs | 10 fn from_packet(buf: PacketBuf<'a>) -> Option<Self> { in from_packet() method
|
D | _QEnvironmentUnset.rs | 10 fn from_packet(buf: PacketBuf<'a>) -> Option<Self> { in from_packet() method
|
D | _vKill.rs | 12 fn from_packet(buf: PacketBuf<'a>) -> Option<Self> { in from_packet() method
|
/external/rust/crates/gdbstub/src/protocol/ |
D | commands.rs | 19 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)?;
|