Home
last modified time | relevance | path

Searched defs:AIBinder_Class (Results 1 – 4 of 4) sorted by relevance

/frameworks/native/libs/binder/ndk/
Dibinder_internal.h113 struct AIBinder_Class { struct
124 const AIBinder_Class_onCreate onCreate = nullptr; argument
125 const AIBinder_Class_onDestroy onDestroy = nullptr; argument
126 const AIBinder_Class_onTransact onTransact = nullptr; argument
129 AIBinder_onDump onDump = nullptr;
130 AIBinder_handleShellCommand handleShellCommand = nullptr;
137 const ::android::String16 mWideInterfaceDescriptor;
Dibinder.cpp348 AIBinder_Class::AIBinder_Class(const char* interfaceDescriptor, AIBinder_Class_onCreate onCreate, in AIBinder_Class() function in AIBinder_Class
/frameworks/native/libs/binder/ndk/include_ndk/android/
Dbinder_ibinder.h73 typedef struct AIBinder_Class AIBinder_Class; typedef
/frameworks/native/libs/binder/rust/src/
Dbinder.rs350 impl From<InterfaceClass> for *const sys::AIBinder_Class { implementation
351 fn from(class: InterfaceClass) -> *const sys::AIBinder_Class { in from()