Lines Matching refs:fd
8 int fd, port; in connect_to_console() local
18 fd = socket_loopback_client( port, SOCK_STREAM ); in connect_to_console()
19 if (fd < 0) { in connect_to_console()
23 return fd; in connect_to_console()
29 int fd, nn; in adb_send_emulator_command() local
31 fd = connect_to_console(); in adb_send_emulator_command()
32 if (fd < 0) in adb_send_emulator_command()
38 adb_write( fd, argv[nn], strlen(argv[nn]) ); in adb_send_emulator_command()
39 adb_write( fd, (nn == argc-1) ? "\n" : " ", 1 ); in adb_send_emulator_command()
41 adb_write( fd, QUIT, sizeof(QUIT)-1 ); in adb_send_emulator_command()
42 adb_close(fd); in adb_send_emulator_command()