Home | History | Annotate | Download | only in android

Lines Matching full:guest

22  * connections and data to ADB daemon running inside the guest.
25 /* Callback to be invoked wheh host ADB gets connected with the guest ADB.
27 * opaque - An opaque pointer associated with the guest. This pointer contains
31 * the guest ADBs. This pointer must be used for further operations on the
32 * host <-> guest connection.
36 /* Callback to be invoked wheh the host ADB sends data to the guest ADB.
38 * opaque - An opaque pointer associated with the guest. This pointer contains
42 * the guest ADB. This pointer must be used for further operations on the
43 * host <-> guest connection.
53 * opaque - An opaque pointer associated with the guest. This pointer contains
57 * the guest ADB. This pointer must be used for further operations on the
58 * host <-> guest connection.
62 /* Defines a set of callbacks for a guest ADB. */
85 /* Registers ADB guest with the ADB server.
87 * - There is no host connection to immediately associate the guest with. In
88 * this case the guest will be registered as "pending connection", and routine
90 * - There is a pending host connection to associate with the new guest. In this
94 * opaque Opaque pointer associated with the guest. This pointer will be passed
95 * back to thee guest API in callback routines.
96 * callbacks Contains callback routines for the registering guest.
98 * An opaque pointer associated with the ADB guest on success, or NULL on
100 * server API called from the guest.
104 /* Completes connection with the guest.
105 * This routine is called by the guest when it receives a 'start' request from
106 * ADB guest. This request tells the system that ADB daemon running inside the
107 * guest is ready to receive data.
113 /* Handles data received from the guest.
116 * data, size - Data buffer received from the guest.
122 /* Notifies the ADB server that the guest has closed its connection.