/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);
|
/external/clang/test/Sema/ |
darwin-align-cast.c | 19 ssize_t sendFileDescriptor(int fd, void *data, size_t nbytes, int sendfd) {
|
/system/core/libmemunreachable/ |
LeakPipe.h | 67 if (!SendFd(sv_[1], pipe.Receiver())) { 195 bool SendFd(int sock, int fd);
|
LeakPipe.cpp | 24 bool LeakPipe::SendFd(int sock, int fd) {
|
/device/huawei/angler/camera/QCamera2/stack/mm-camera-interface/inc/ |
mm_camera_sock.h | 54 int sendfd);
|
mm_camera.h | 516 int sendfd);
|
/device/lge/bullhead/camera/QCamera2/stack/mm-camera-interface/inc/ |
mm_camera_sock.h | 54 int sendfd);
|
/device/moto/shamu/camera/QCamera/stack/mm-camera-interface/inc/ |
mm_camera_sock.h | 46 int sendfd);
|
/device/moto/shamu/camera/QCamera2/stack/mm-camera-interface/inc/ |
mm_camera_sock.h | 46 int sendfd);
|
/hardware/qcom/camera/QCamera2/stack/mm-camera-interface/inc/ |
mm_camera_sock.h | 58 int sendfd);
|
/system/vold/ |
CommandListener.h | 83 android::status_t sendFd(SocketClient *c, int fd);
|
CommandListener.cpp | 818 return sendFd(cli, device_fd.get()); 840 android::status_t CommandListener::AppFuseCmd::sendFd(SocketClient *cli, int fd) {
|
/device/huawei/angler/camera/QCamera2/stack/mm-camera-interface/src/ |
mm_camera_sock.c | 111 * @sendfd : file descriptors to be sent 119 int sendfd) 144 /* if sendfd is valid, we need to pass it through control msg */ 145 if( sendfd >= 0) { 154 *((int *)CMSG_DATA(cmsghp)) = sendfd;
|
/device/lge/bullhead/camera/QCamera2/stack/mm-camera-interface/src/ |
mm_camera_sock.c | 111 * @sendfd : file descriptors to be sent 119 int sendfd) 144 /* if sendfd is valid, we need to pass it through control msg */ 145 if( sendfd >= 0) { 154 *((int *)CMSG_DATA(cmsghp)) = sendfd;
|
/device/moto/shamu/camera/QCamera/stack/mm-camera-interface/src/ |
mm_camera_sock.c | 107 * int sendfd: file descriptors to be sent
114 int sendfd)
138 /* if sendfd is valid, we need to pass it through control msg */
139 if( sendfd > 0) {
148 *((int *)CMSG_DATA(cmsghp)) = sendfd;
|
/device/moto/shamu/camera/QCamera2/stack/mm-camera-interface/src/ |
mm_camera_sock.c | 111 * @sendfd : file descriptors to be sent 119 int sendfd) 145 /* if sendfd is valid, we need to pass it through control msg */ 146 if( sendfd > 0) { 155 *((int *)CMSG_DATA(cmsghp)) = sendfd;
|
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/lib-dynload/ |
_multiprocessing.so | |
/hardware/qcom/camera/QCamera2/stack/mm-camera-interface/src/ |
mm_camera_sock.c | 111 * @sendfd : file descriptors to be sent 119 int sendfd) 144 /* if sendfd is valid, we need to pass it through control msg */ 145 if( sendfd >= 0) { 154 *((int *)CMSG_DATA(cmsghp)) = sendfd;
|
/prebuilts/gdb/darwin-x86/lib/python2.7/multiprocessing/ |
reduction.py | 80 _multiprocessing.sendfd(conn.fileno(), handle)
|
/prebuilts/gdb/linux-x86/lib/python2.7/multiprocessing/ |
reduction.py | 80 _multiprocessing.sendfd(conn.fileno(), handle)
|
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/multiprocessing/ |
reduction.py | 80 _multiprocessing.sendfd(conn.fileno(), handle)
|
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/multiprocessing/ |
reduction.py | 80 _multiprocessing.sendfd(conn.fileno(), handle)
|
/libcore/luni/src/test/java/libcore/io/ |
OsTest.java | 339 FileDescriptor sendFd = Libcore.os.socket(family, SOCK_DGRAM, 0); 343 assertEquals(len, Libcore.os.sendto(sendFd, msg, 0, len, 0, to));
|