Searched refs:connection_fd (Results 1 – 5 of 5) sorted by relevance
/packages/modules/adb/client/ |
D | incremental.cpp | 141 auto connection_fd = unique_fd(send_abb_exec_command(command_args, &error)); in start_install() local 142 if (connection_fd < 0) { in start_install() 150 return connection_fd; in start_install() 172 auto connection_fd = start_install(files, passthrough_args, silent); in install() local 173 if (connection_fd < 0) { in install() 182 auto osh = cast_handle_to_int(adb_get_os_handle(connection_fd.get())); in install() 200 adb_launch_process(adb_path, std::move(args), {connection_fd.get(), pipe_write_fd}); in install()
|
D | incremental_server.h | 24 bool serve(int connection_fd, int output_fd, int argc, const char** argv);
|
D | commandline.cpp | 2174 int connection_fd = atoi(argv[1]); in adb_commandline() local 2175 if (!_is_valid_os_fd(connection_fd)) { in adb_commandline() 2176 error_exit("Invalid connection_fd number given: %d", connection_fd); in adb_commandline() 2179 connection_fd = adb_register_socket(connection_fd); in adb_commandline() 2180 close_on_exec(connection_fd); in adb_commandline() 2188 return incremental::serve(connection_fd, output_fd, argc - 3, argv + 3); in adb_commandline()
|
D | incremental_server.cpp | 696 bool serve(int connection_fd, int output_fd, int argc, const char** argv) { in serve() argument 697 auto connection_ufd = unique_fd(connection_fd); in serve()
|
/packages/modules/Bluetooth/tools/rootcanal/test/ |
D | async_manager_unittest.cc | 95 int connection_fd = accept(fd, (struct sockaddr*)&cli_addr, &clilen); in AcceptConnection() local 96 EXPECT_FALSE(connection_fd < 0); in AcceptConnection() 98 return connection_fd; in AcceptConnection()
|