Lines Matching defs:u16
78 fn WriteUint16(self: Pin<&mut Parcel>, mut value: u16) -> bool;
92 fn ReadUint16(self: Pin<&mut Parcel>, v: &mut u16) -> bool;
128 fn WriteUInt16Vector(parcel: Pin<&mut Parcel>, val: &[u16]) -> bool;
142 fn ReadUInt16Vector(parcel: Pin<&mut Parcel>, v: &mut Vec<u16>) -> bool;
321 impl Process for u16 {
634 msg.write(&u16::MAX).unwrap();
635 assert_eq!(u16::MAX, msg.read().unwrap());
636 msg.write(&u16::MIN).unwrap();
637 assert_eq!(u16::MIN, msg.read().unwrap());
710 msg.write(&u16::MAX).unwrap();
711 msg.write(&u16::MIN).unwrap();
733 assert_eq!(u16::MAX, msg.read().unwrap());
734 assert_eq!(u16::MIN, msg.read().unwrap());