• Home
  • Raw
  • Download

Lines Matching refs:async

66     async fn GetName(&self) -> binder::Result<String> {  in GetName()
77 async fn RealName(&self) -> binder::Result<String> { in RealName()
89 async fn RealName(&self) -> binder::Result<String> { in RealName()
101 async fn GetTestService( in GetTestService()
127 Box::pin(async move { Ok(token) })
145 Box::pin(async move {
172 Box::pin(async move { Ok(input.map(<[$type]>::to_vec)) })
182 async fn UnimplementedMethod(&self, _: i32) -> binder::Result<i32> { in UnimplementedMethod()
187 async fn TestOneway(&self) -> binder::Result<()> { in TestOneway()
191 async fn Deprecated(&self) -> binder::Result<()> { in Deprecated()
208 async fn RepeatString(&self, input: &str) -> binder::Result<String> { in RepeatString()
212 async fn RepeatUtf8CppString(&self, input: &str) -> binder::Result<String> { in RepeatUtf8CppString()
216 async fn GetOtherTestService( in GetOtherTestService()
232 async fn SetOtherTestService( in SetOtherTestService()
247 async fn VerifyName( in VerifyName()
255 async fn GetInterfaceArray( in GetInterfaceArray()
266 async fn VerifyNamesWithInterfaceArray( in VerifyNamesWithInterfaceArray()
283 async fn GetNullableInterfaceArray( in GetNullableInterfaceArray()
303 async fn VerifyNamesWithNullableInterfaceArray( in VerifyNamesWithNullableInterfaceArray()
324 async fn GetInterfaceList( in GetInterfaceList()
332 async fn VerifyNamesWithInterfaceList( in VerifyNamesWithInterfaceList()
340 async fn RepeatParcelFileDescriptor( in RepeatParcelFileDescriptor()
347 async fn ReverseParcelFileDescriptorArray( in ReverseParcelFileDescriptorArray()
357 async fn ThrowServiceException(&self, code: i32) -> binder::Result<()> { in ThrowServiceException()
367 async fn RepeatNullableString(&self, input: Option<&str>) -> binder::Result<Option<String>> { in RepeatNullableString()
371 async fn RepeatNullableUtf8CppString( in RepeatNullableUtf8CppString()
378 async fn RepeatNullableParcelable( in RepeatNullableParcelable()
388 async fn TakesAnIBinder(&self, _: &SpIBinder) -> binder::Result<()> { in TakesAnIBinder()
392 async fn TakesANullableIBinder(&self, _: Option<&SpIBinder>) -> binder::Result<()> { in TakesANullableIBinder()
396 async fn TakesAnIBinderList(&self, _: &[SpIBinder]) -> binder::Result<()> { in TakesAnIBinderList()
400 async fn TakesANullableIBinderList( in TakesANullableIBinderList()
407 async fn ReverseNullableUtf8CppString( in ReverseNullableUtf8CppString()
422 async fn ReverseUtf8CppStringList( in ReverseUtf8CppStringList()
430 async fn GetCallback( in GetCallback()
441 async fn FillOutStructuredParcelable( in FillOutStructuredParcelable()
472 async fn RepeatExtendableParcelable( in RepeatExtendableParcelable()
490 async fn RepeatExtendableParcelableVintf( in RepeatExtendableParcelableVintf()
508 async fn ReverseList(&self, list: &RecursiveList) -> binder::Result<RecursiveList> { in ReverseList()
519 async fn ReverseIBinderArray( in ReverseIBinderArray()
528 async fn ReverseNullableIBinderArray( in ReverseNullableIBinderArray()
538 async fn RepeatSimpleParcelable( in RepeatSimpleParcelable()
547 async fn ReverseSimpleParcelables( in ReverseSimpleParcelables()
556 async fn GetOldNameInterface(&self) -> binder::Result<binder::Strong<dyn IOldName::IOldName>> { in GetOldNameInterface()
560 async fn GetNewNameInterface(&self) -> binder::Result<binder::Strong<dyn INewName::INewName>> { in GetNewNameInterface()
564 async fn GetUnionTags(&self, input: &[Union::Union]) -> binder::Result<Vec<Union::Tag::Tag>> { in GetUnionTags()
579 async fn GetCppJavaTests(&self) -> binder::Result<Option<SpIBinder>> { in GetCppJavaTests()
583 async fn getBackendType(&self) -> binder::Result<BackendType> { in getBackendType()
587 async fn GetCircular( in GetCircular()
601 async fn originalApi(&self) -> binder::Result<()> { in originalApi()
604 async fn acceptUnionAndReturnString(&self, u: &BazUnion) -> binder::Result<String> { in acceptUnionAndReturnString()
609 async fn returnsLengthOfFooArray(&self, foos: &[Foo]) -> binder::Result<i32> { in returnsLengthOfFooArray()
612 async fn ignoreParcelablesAndRepeatInt( in ignoreParcelablesAndRepeatInt()
629 async fn repeatParcelable(&self, in_parcel: &MyParcelable) -> binder::Result<MyParcelable> { in repeatParcelable()
633 async fn repeatEnum(&self, in_enum: MyEnum) -> binder::Result<MyEnum> { in repeatEnum()
636 async fn repeatUnion(&self, in_union: &MyUnion) -> binder::Result<MyUnion> { in repeatUnion()
643 async fn repeatOtherParcelable( in repeatOtherParcelable()
650 async fn callMyCallback( in callMyCallback()
677 async fn flipStatus( in flipStatus()
689 async fn flipStatusWithCallback( in flipStatusWithCallback()
708 async fn RepeatBytes( in RepeatBytes()
716 async fn RepeatInts( in RepeatInts()
724 async fn RepeatBinders( in RepeatBinders()
732 async fn RepeatParcelables( in RepeatParcelables()
740 async fn Repeat2dBytes( in Repeat2dBytes()
748 async fn Repeat2dInts( in Repeat2dInts()
756 async fn Repeat2dBinders( in Repeat2dBinders()
764 async fn Repeat2dParcelables( in Repeat2dParcelables()
783 runtime.block_on(async { in main()