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

  /frameworks/native/libs/input/tests/
TestHelpers.h 28 int sendFd;
36 sendFd = fds[1];
40 if (sendFd != -1) {
41 ::close(sendFd);
50 ssize_t nWritten = ::write(sendFd, "*", 1);
InputChannel_test.cpp 44 sp<InputChannel> inputChannel = new InputChannel(String8("channel name"), pipe.sendFd);
48 EXPECT_EQ(pipe.sendFd, inputChannel->getFd())
57 pipe.sendFd = -1;
  /system/core/libutils/tests/
TestHelpers.h 26 int sendFd;
34 sendFd = fds[1];
38 if (sendFd != -1) {
39 ::close(sendFd);
48 ssize_t nWritten = ::write(sendFd, "*", 1);
  /system/vold/
CommandListener.h 83 android::status_t sendFd(SocketClient *c, int fd);
CommandListener.cpp 832 return sendFd(cli, device_fd.get());
854 android::status_t CommandListener::AppFuseCmd::sendFd(SocketClient *cli, int fd) {
  /libcore/luni/src/test/java/libcore/io/
OsTest.java 344 FileDescriptor sendFd = Libcore.os.socket(family, SOCK_DGRAM, 0);
348 assertEquals(len, Libcore.os.sendto(sendFd, msg, 0, len, 0, to));

Completed in 215 milliseconds