Lines Matching refs:MsgParcel
22 use super::msg::MsgParcel;
47 unsafe fn AsParcel(MsgParcel: &MessageParcel) -> *const Parcel;
523 fn serialize(&self, parcel: &mut MsgParcel) -> IpcResult<()> {
535 fn deserialize(parcel: &mut MsgParcel) -> IpcResult<T> {
547 fn serialize(&self, parcel: &mut MsgParcel) -> crate::IpcResult<()> {
559 fn serialize(&self, parcel: &mut MsgParcel) -> IpcResult<()> {
568 fn deserialize(parcel: &mut MsgParcel) -> IpcResult<Self> {
574 fn serialize(&self, parcel: &mut MsgParcel) -> crate::IpcResult<()> {
584 use crate::parcel::MsgParcel;
586 /// UT test cases for `MsgParcel`
589 /// 1. Create a MsgParcel
590 /// 2. Write a value to the MsgParcel and then read it out, check the
595 let mut msg = MsgParcel::new();
657 let mut msg = MsgParcel::new();
688 /// UT test cases for `MsgParcel`
691 /// 1. Create a MsgParcel
692 /// 2. Write a bunch of value to the MsgParcel and then read them out, check
696 let mut msg = MsgParcel::new();
743 /// UT test cases for `MsgParcel`
746 /// 1. Create a MsgParcel
747 /// 2. Write interface to the MsgParcel and then read them out, check the
751 let mut msg = MsgParcel::new();
756 /// UT test cases for `MsgParcel`
759 /// 1. Create a MsgParcel
760 /// 2. Write a file descriptor to the MsgParcel and then read them out,
764 let mut msg = MsgParcel::new();
785 /// UT test cases for `MsgParcel`
788 /// 1. Create a MsgParcel
789 /// 2. Write a i32 value to the MsgParcel in different position and then
793 let mut msg = MsgParcel::new();