HomeSort by relevance Sort by last modified time
    Searched refs:connection_fd (Results 1 - 6 of 6) sorted by null

  /test/vts/drivers/shell/
ShellDriver.cpp 151 int VtsShellDriver::HandleShellCommandConnection(int connection_fd) {
152 VtsDriverCommUtil driverUtil(connection_fd);
209 int socket_fd, connection_fd; local
240 connection_fd =
242 if (connection_fd == -1) {
251 if (HandleShellCommandConnection(connection_fd) != 0) {
253 close(connection_fd);
256 close(connection_fd);
259 close(connection_fd);
ShellDriver.h 69 int HandleShellCommandConnection(int connection_fd);
  /hardware/interfaces/bluetooth/1.0/default/test/
async_fd_watcher_unittest.cc 76 int connection_fd = accept(fd, (struct sockaddr*)&cli_addr, &clilen);
77 EXPECT_FALSE(connection_fd < 0);
79 return connection_fd;
105 int connection_fd = AcceptConnection(fd);
115 connection_fd, [this](int fd) { ReadIncomingMessage(fd); });
205 int connection_fd = AcceptConnection(fd);
206 close(connection_fd);
228 int connection_fd = AcceptConnection(fd);
229 close(connection_fd);
250 int connection_fd = AcceptConnection(fd)
    [all...]
  /system/bt/vendor_libs/test_vendor_lib/test/
async_manager_unittest.cc 64 int connection_fd = accept(fd, (struct sockaddr*)&cli_addr, &clilen);
65 EXPECT_FALSE(connection_fd < 0);
67 return connection_fd;
88 int connection_fd = AcceptConnection(fd);
91 connection_fd, [this](int fd) { ReadIncomingMessage(fd); });
  /external/adhd/cras/src/server/
cras_server.c 190 int connection_fd; local
201 connection_fd = accept(fd, (struct sockaddr *) address,
203 if (connection_fd < 0) {
221 cras_make_fd_nonblocking(connection_fd);
223 poll_client->fd = connection_fd;
227 poll_client->client = cras_rclient_create(connection_fd,
231 close(connection_fd);
  /frameworks/native/libs/vr/libpdx_uds/
service_endpoint.cpp 221 LocalHandle connection_fd{accept4(socket_fd_.Get(),
224 if (!connection_fd) {
245 status = SendData(connection_fd.Borrow(), connection_info);
256 shutdown(connection_fd.Get(), SHUT_WR);

Completed in 600 milliseconds