Lines Matching refs:to
5 The Android Debug Bridge (ADB) is used to:
8 connected to or running on a given host developer machine
19 if to sense the USB ports to know when devices are attached/removed,
23 to each one of them: OFFLINE, BOOTLOADER, RECOVERY or ONLINE (more on
27 to orchestrate the exchange of data (packets, really) between clients,
34 or emulated system. Its purpose is to connect to the ADB server
39 connected to the adbd program within it. Otherwise, the device is OFFLINE,
41 connect to the adbd daemon.
43 the BOOTLOADER and RECOVERY states correspond to alternate states of
48 The 'adb' command-line program is used to run adb commands from a shell
49 or a script. It first tries to locate the ADB server on the host machine,
52 then, the client sends its service requests to the ADB server. It doesn't
53 need to know.
61 There are essentially two kinds of services that a client can talk to.
64 these services run within the ADB Server and thus do not need to
66 which is used to return the list of currently known devices and their
71 it on the device. The ADB server is used to multiplex streams
73 its role is to initiate the connection, then of being a pass-through
89 For example, to query the ADB server for its internal version number,
92 1. Connect to tcp:localhost:5037
93 2. Send the string "000Chost:version" to the corresponding socket
95 The 'host:' prefix is used to indicate that the request is addressed
96 to the server itself (we will talk about other kinds of requests later).
108 hex string corresponding to the server's internal version number
111 client to make other requests. But in certain cases, an OKAY will even
115 where '<serialnumber>' is used to identify a given device/emulator; after
117 directly to the corresponding adbd daemon.
129 - Local transports, for emulators running on the host, connected to
132 In theory, it should be possible to write a local transport that proxies
133 a connection between an ADB server and a device/emulator connected to/
137 and the device/emulator they point to. The ADB server must handle