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.h129 struct AIBinder_Class { struct
140 const AIBinder_Class_onCreate onCreate = nullptr; argument
141 const AIBinder_Class_onDestroy onDestroy = nullptr; argument
142 const AIBinder_Class_onTransact onTransact = nullptr; argument
145 AIBinder_onDump onDump = nullptr;
146 AIBinder_handleShellCommand handleShellCommand = nullptr;
153 const ::android::String16 mWideInterfaceDescriptor;
Dibinder.cpp379 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.rs358 impl From<InterfaceClass> for *const sys::AIBinder_Class { implementation
359 fn from(class: InterfaceClass) -> *const sys::AIBinder_Class { in from()