• Home
  • Raw
  • Download

Lines Matching refs:to

1 This file tries to document all requests a client can make
2 to the ADB server of an adbd daemon. See the OVERVIEW.TXT document
3 to understand what's going on here.
11 Ask the ADB server to quit immediately. This is used when the
17 Ask to return the list of available Android devices and their
28 to track the state of connected devices in real-time without
32 This is a special query that is sent to the ADB server when a
34 to the emulator's ADB control port, i.e. the TCP port that the
35 emulator will forward automatically to the adbd daemon running
38 This mechanism allows the ADB server to know when new emulator
42 Ask to switch the connection to the device/emulator identified by
44 be sent directly to the adbd daemon running on the device.
45 (Used to implement the -s option)
48 Ask to switch the connection to one device connected through USB
49 to the host machine. This will fail if there are more than one such
50 devices. (Used to implement the -d convenience option)
53 Ask to switch the connection to one emulator connected through TCP.
55 running. (Used to implement the -e convenience option)
58 Another host:transport variant. Ask to switch the connection to
59 either the device or emulator connect to/running on the host.
65 prefix can be used to indicate that the client is asking the ADB server
66 for information related to a specific device. <request> can be in one
70 A variant of host-serial used to target the single USB device connected
71 to the host. This will fail if there is none or more than one.
74 A variant of host-serial used to target the single emulator instance
78 When asking for information related to a device, 'host:' can also be
79 interpreted as 'any single device or emulator connected to/running on
96 Asks the ADB server to forward local connections from <local>
97 to the <remote> address on a given device.
101 and indicates which device/emulator to target.
121 Used to implement 'adb forward --no-rebind <local> <remote>'
125 This is used to implement 'adb forward --remove <local>'
129 This is used to implement 'adb forward --remove-all'.
144 Used to implement 'adb forward --list'.
149 to a real device, or that you have used a query prefix as described
164 this to implement "adb shell", but will also cook the input before
165 sending it to the device (see interactive_shell() in commandline.c)
168 Ask adbd to remount the device's filesystem in read-write mode,
176 Tries to connect to tcp port <port> on localhost.
179 Tries to connect to tcp port <port> on machine <server-name> from
180 the device. This can be useful to debug some networking/proxy
184 Tries to connect to a Unix domain socket <path> on the device
189 Variants of local:<path> that are used to access other Android
193 This service is used to send snapshots of the framebuffer to a client.
209 to send it 'size' bytes of framebuffer data.
211 If the adbd daemon doesn't have sufficient privileges to open
215 Connects to the JDWP thread running in the VM of process <pid>.
218 This is used to send the list of JDWP pids periodically to the client.
225 This service is used by DDMS to know which debuggable processes are running
228 Note that there is no single-shot service to retrieve the list only once.
231 This starts the file synchronization service, used to implement "adb push"
236 This implements the 'adb reverse' feature, i.e. the ability to reverse
237 socket connections from a device to the host. <forward-command> is one
246 Note that in this case, <local> corresponds to the socket on the device
247 and <remote> corresponds to the socket on the host.