Searched defs:control (Results 1 - 5 of 5) sorted by relevance

/system/core/libcutils/
H A Duevent.c52 char control[CMSG_SPACE(sizeof(struct ucred))]; local
58 control,
59 sizeof(control),
/system/core/logd/
H A DLogListener.cpp43 char control[CMSG_SPACE(sizeof(struct ucred))]; local
49 control,
50 sizeof(control),
/system/core/adb/
H A Dusb_linux_client.c53 int control; member in struct:usb_handle
267 if (h->control < 0) { // might have already done this before
269 h->control = adb_open(USB_FFS_ADB_EP0, O_RDWR);
270 if (h->control < 0) {
271 D("[ %s: cannot open control endpoint: errno=%d]\n", USB_FFS_ADB_EP0, errno);
275 ret = adb_write(h->control, &descriptors, sizeof(descriptors));
281 ret = adb_write(h->control, &strings, sizeof(strings));
311 if (h->control > 0) {
312 adb_close(h->control);
313 h->control
[all...]
H A Djdwp_service.c13 named @vm-debug-control (@ is a shortcut for "first byte is zero"
17 a connection to @vm-debug-control to announce its availability.
20 JDWP thread @vm-debug-control
53 JDWP thread @vm-debug-control
300 D( "ignoring unexpected JDWP %d control socket activity (%d bytes)\n",
432 /* name of the debug control Unix socket */
433 #define JDWP_CONTROL_NAME "\0jdwp-control"
448 jdwp_control_init( JdwpControl* control, argument
459 D( "vm debug control socket name too long (%d extra chars)\n",
470 D( "could not create vm debug control socke
512 JdwpControl* control = (JdwpControl*) _control; local
[all...]
/system/core/fastbootd/
H A Dusb_linux_client.c63 int control; member in struct:usb_transport
166 usb_transport->control = open(USB_FFS_FASTBOOT_EP0, O_RDWR);
167 if (usb_transport->control < 0) {
168 D(ERR, "[ %s: cannot open control endpoint: errno=%d]", USB_FFS_FASTBOOT_EP0, errno);
172 ret = write(usb_transport->control, &descriptors, sizeof(descriptors));
178 ret = write(usb_transport->control, &strings, sizeof(strings));
207 if (usb_transport->control > 0) {
208 close(usb_transport->control);
209 usb_transport->control = -1;
261 close(usb_transport->control);
[all...]

Completed in 698 milliseconds