Lines Matching refs:opaque

27  *  opaque - An opaque pointer associated with the guest. This pointer contains
28 * the 'opaque' parameter that was passed to the adb_server_register_guest
30 * connection - An opaque pointer defining the connection between the host and
34 typedef void (*adbguest_connect)(void* opaque, void* connection);
38 * opaque - An opaque pointer associated with the guest. This pointer contains
39 * the 'opaque' parameter that was passed to the adb_server_register_guest
41 * connection - An opaque pointer defining the connection between the host and
46 typedef void (*adbguest_read)(void* opaque,
53 * opaque - An opaque pointer associated with the guest. This pointer contains
54 * the 'opaque' parameter that was passed to the adb_server_register_guest
56 * connection - An opaque pointer defining the connection between the host and
60 typedef void (*adbguest_disconnect)(void* opaque, void* connection);
94 * opaque Opaque pointer associated with the guest. This pointer will be passed
98 * An opaque pointer associated with the ADB guest on success, or NULL on
102 extern void* adb_server_register_guest(void* opaque, AdbGuestRoutines* callbacks);
109 * opaque - An opaque pointer returned from adb_server_register_guest.
111 extern void adb_server_complete_connection(void* opaque);
115 * opaque - An opaque pointer returned from adb_server_register_guest.
118 extern void adb_server_on_guest_message(void* opaque,
124 * opaque - An opaque pointer returned from adb_server_register_guest.
126 extern void adb_server_on_guest_closed(void* opaque);