Lines Matching refs:IpcResult
23 IRemoteBroker, IRemoteObj, RemoteStub, IpcResult,
75 fn try_from(code: u32) -> IpcResult<Self> {
89 fn add(&self, num1: i32, num2: i32) -> IpcResult<i32>;
91 fn sub(&self, num1: i32, num2: i32) -> IpcResult<i32>;
93 fn mul(&self, num1: i32, num2: i32) -> IpcResult<i32>;
95 fn div(&self, num1: i32, num2: i32) -> IpcResult<i32>;
99 reply: &mut BorrowedMsgParcel) -> IpcResult<()> {
141 fn add (&self, num1: i32, num2: i32) -> IpcResult<i32> {
144 fn sub (&self, num1: i32, num2: i32) -> IpcResult<i32> {
147 fn mul (&self, num1: i32, num2: i32) -> IpcResult<i32> {
150 fn div (&self, num1: i32, num2: i32) -> IpcResult<i32> {
156 fn add(&self, num1: i32, num2: i32) -> IpcResult<i32> {
165 fn sub(&self, num1: i32, num2: i32) -> IpcResult<i32> {
174 fn mul(&self, num1: i32, num2: i32) -> IpcResult<i32> {
183 fn div(&self, num1: i32, num2: i32) -> IpcResult<i32> {