/external/qemu/ |
posix-aio-compat.c | 625 int fds[2]; local 639 if (qemu_pipe(fds) == -1) { 644 s->rfd = fds[0]; 645 s->wfd = fds[1];
|
sockets.c | 1444 int fds[2]; local [all...] |
/frameworks/base/core/java/android/content/ |
ContentProvider.java | 1505 final ParcelFileDescriptor[] fds = ParcelFileDescriptor.createPipe(); local [all...] |
/external/chromium_org/content/common/gpu/media/ |
exynos_video_decode_accelerator.cc | 168 for (size_t i = 0; i < arraysize(fds); ++i) 169 fds[i] = -1; 408 attrs[7] = output_record.fds[0]; 411 attrs[13] = output_record.fds[1]; [all...] |
/external/chromium_org/third_party/libusb/src/libusb/os/ |
darwin_usb.c | [all...] |
openbsd_usb.c | 532 obsd_handle_events(struct libusb_context *ctx, struct pollfd *fds, nfds_t nfds, 545 pollfd = &fds[i];
|
/external/compiler-rt/lib/tsan/rtl/ |
tsan_platform_linux.cc | 365 int ExtractResolvFDs(void *state, int *fds, int nfd) { 370 fds[cnt++] = statp->_u._ext.nssocks[i];
|
tsan_interceptors.cc | 1434 int fds[64]; local [all...] |
/external/chromium_org/native_client_sdk/src/tests/nacl_io_test/ |
kernel_wrap_test.cc | 388 int fds[] = {1, 2}; local 389 EXPECT_CALL(mock, pipe(fds)).WillOnce(Return(kDummyInt)); 390 EXPECT_EQ(kDummyInt, pipe(fds)); 546 struct pollfd fds; local 547 EXPECT_CALL(mock, poll(&fds, kDummyInt, kDummyInt2)) 549 EXPECT_EQ(kDummyInt3, poll(&fds, kDummyInt, kDummyInt2));
|
/libcore/luni/src/main/native/ |
libcore_io_Posix.cpp | 950 int fds[2]; local 1251 int fds[2]; local [all...] |
/hardware/qcom/media/mm-video-legacy/vidc/venc/src/ |
omx_video_encoder.cpp | 101 int fds[2]; local 420 if(pipe(fds)) 427 if(fds[0] == 0 || fds[1] == 0) 429 if(pipe(fds)) 437 m_pipe_in = fds[0]; 438 m_pipe_out = fds[1]; [all...] |
/external/wpa_supplicant_8/src/utils/ |
eloop.c | 368 fd_set *fds) 372 FD_ZERO(fds); 378 FD_SET(table->table[i].sock, fds); 383 fd_set *fds) 392 if (FD_ISSET(table->table[i].sock, fds)) {
|
/external/chromium_org/chrome/test/automation/ |
proxy_launcher.cc | 504 base::FileHandleMappingVector fds; local 507 fds.push_back(std::make_pair(ipcfd, 509 options.fds_to_remap = &fds;
|
/external/chromium_org/chromeos/dbus/ |
fake_bluetooth_device_client.cc | 324 int fds[2]; local 325 if (socketpair(AF_UNIX, socket_type, 0, fds) < 0) { 331 args = fcntl(fds[1], F_GETFL, NULL); 338 if (fcntl(fds[1], F_SETFL, args) < 0) { 346 fds[0])); 348 scoped_ptr<dbus::FileDescriptor> fd(new dbus::FileDescriptor(fds[1])); [all...] |
/external/chromium_org/native_client_sdk/src/libraries/nacl_io/ |
kernel_proxy.cc | 1078 std::vector<struct pollfd*> fds; member in struct:nacl_io::PollInfo 1084 int KernelProxy::poll(struct pollfd *fds, nfds_t nfds, int timeout) { 1092 struct pollfd* fd_info = &fds[index]; 1133 info->fds.push_back(fd_info); 1150 for (size_t findex = 0; findex < poll_info->fds.size(); findex++) { 1151 struct pollfd* fd_info = poll_info->fds[findex]; [all...] |
kernel_intercept.cc | 304 int ki_poll(struct pollfd *fds, nfds_t nfds, int timeout) { 305 return s_kp->poll(fds, nfds, timeout);
|
kernel_wrap_glibc.cc | 240 int WRAP(poll)(struct pollfd *fds, nfds_t nfds, int timeout, int* count) { 241 *count = ki_poll(fds, nfds, timeout);
|
kernel_intercept.h | 89 int ki_poll(struct pollfd *fds, nfds_t nfds, int timeout);
|
kernel_proxy.h | 155 virtual int poll(struct pollfd *fds, nfds_t nfds, int timeout);
|
/sdk/emulator/opengl/tests/event_injector/ |
sockets.c | 1430 int fds[2]; local 1431 int ret = socketpair(AF_UNIX, SOCK_STREAM, 0, fds); 1434 socket_set_nonblock(fds[0]); 1435 socket_set_nonblock(fds[1]); 1436 *fd1 = fds[0]; 1437 *fd2 = fds[1]; [all...] |
/external/bluetooth/bluedroid/btif/src/ |
btif_sock_rfc.c | 256 int fds[2] = {-1, -1}; local 257 if(socketpair(AF_LOCAL, SOCK_STREAM, 0, fds)) 262 rs->fd = fds[0]; 263 rs->app_fd = fds[1]; [all...] |
/external/qemu/target-i386/ |
hax-interface.h | 40 uint16_t fds; member in struct:fx_layout::__anon25578::__anon25579
|
/hardware/qcom/media/mm-video-v4l2/vidc/venc/src/ |
omx_video_encoder.cpp | 103 int fds[2]; local 409 if (pipe(fds)) { 413 if (fds[0] == 0 || fds[1] == 0) { 414 if (pipe(fds)) { 420 m_pipe_in = fds[0]; 421 m_pipe_out = fds[1]; [all...] |
/bootable/recovery/minadbd/ |
fdevent.c | 302 /* Looks at fd_table[] for bad FDs and sets bit in fds. 303 ** Returns the number of bad FDs. 305 static int fdevent_fd_check(fd_set *fds) 314 FD_SET(i, fds);
|
/external/chromium_org/third_party/npapi/npspy/extern/nspr/md/ |
_solaris.h | 449 extern int _poll(struct pollfd *fds, unsigned long nfds, int timeout); 799 extern int _poll(struct pollfd *fds, unsigned long nfds, int timeout);
|