HomeSort by relevance Sort by last modified time
    Searched refs:pfd (Results 201 - 225 of 367) sorted by null

1 2 3 4 5 6 7 891011>>

  /prebuilts/go/darwin-x86/src/os/
dir_windows.go 30 e := file.pfd.FindNextFile(d)
stat_unix.go 20 err := f.pfd.Fstat(&fs.sys)
  /prebuilts/go/linux-x86/src/net/
sendfile_bsd.go 61 written, err = poll.SendFile(&c.pfd, int(f.Fd()), pos, remain)
sendfile_solaris.go 57 written, err = poll.SendFile(&c.pfd, int(f.Fd()), pos, remain)
tcpsock_plan9.go 51 if err := ln.fd.pfd.Close(); err != nil {
  /prebuilts/go/linux-x86/src/os/
dir_unix.go 67 d.nbuf, errno = f.pfd.ReadDirent(d.buf)
dir_windows.go 30 e := file.pfd.FindNextFile(d)
stat_unix.go 20 err := f.pfd.Fstat(&fs.sys)
  /system/core/debuggerd/client/
debuggerd_client.cpp 192 struct pollfd pfd = { local
196 rc = poll(&pfd, 1, remaining_ms);
  /system/core/debuggerd/handler/
debuggerd_fallback.cpp 130 struct pollfd pfd = { local
135 if (poll(&pfd, 1, 1000) != 1) {
  /external/fio/engines/
rbd.c 370 struct pollfd pfd; local
371 pfd.fd = rbd->fd;
372 pfd.events = POLLIN;
374 ret = poll(&pfd, 1, -1);
378 assert(pfd.revents & POLLIN);
  /external/ltp/testcases/network/netstress/
netstress.c 169 struct pollfd pfd; local
170 pfd.fd = fd;
171 pfd.events = POLLIN;
176 int ret = poll(&pfd, 1, *timeout);
188 if (ret != 1 || !(pfd.revents & POLLIN))
  /external/toybox/toys/pending/
traceroute.c 200 struct pollfd pfd[1]; local
204 pfd[0].fd = TT.recv_sock;
205 pfd[0].events = POLLIN;
232 if (!(res = poll(pfd, 1, tleft))) {
244 if (pfd[0].revents) {
  /hardware/qcom/audio/legacy/libalsa-intf/
aplay.c 179 struct pollfd pfd[1]; local
278 pfd[0].fd = pcm->timer_fd;
279 pfd[0].events = POLLIN;
313 poll(pfd, nfds, TIMEOUT_INFINITE);
425 poll(pfd, nfds, TIMEOUT_INFINITE);
arec.c 188 struct pollfd pfd[1]; local
264 pfd[0].fd = pcm->fd;
265 pfd[0].events = POLLIN;
304 poll(pfd, nfds, TIMEOUT_INFINITE);
  /external/google-breakpad/src/client/linux/handler/
exception_handler_unittest.cc 142 struct pollfd pfd; local
143 memset(&pfd, 0, sizeof(pfd));
144 pfd.fd = fd;
145 pfd.events = POLLIN | POLLERR;
147 const int r = HANDLE_EINTR(poll(&pfd, 1, 0));
149 ASSERT_TRUE(pfd.revents & POLLIN);
    [all...]
  /libcore/ojluni/src/main/native/
net_util_md.c     [all...]
  /cts/tests/tests/telecom/src/android/telecom/cts/
TestUtils.java 250 final ParcelFileDescriptor pfd = local
253 try (InputStream in = new FileInputStream(pfd.getFileDescriptor())) {
265 closeQuietly(pfd);
  /frameworks/base/services/core/java/com/android/server/
GraphicsStatsService.java 169 ParcelFileDescriptor pfd = null; local
178 pfd = requestBufferForProcessLocked(token, uid, pid, packageName,
186 return pfd;
196 throw new IllegalStateException("Failed to get PFD from memory file", ex);
  /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/dictionarypack/
DictionaryProvider.java 320 final ParcelFileDescriptor pfd = local
322 return new AssetFileDescriptor(pfd, 0, pfd.getStatSize());
  /system/core/adb/
services.cpp 360 adb_pollfd pfd = {.fd = fd, .events = POLLIN }; local
361 int rc = adb_poll(&pfd, 1, 1000);
365 } else if (rc > 0 && (pfd.revents & POLLHUP) != 0) {
  /device/linaro/bootloader/edk2/StdLib/BsdSocketLib/
res_send.c 559 struct pollfd pfd; local
698 pfd.fd = s;
699 pfd.events = POLLIN;
706 n = poll(&pfd, 1, msec);
  /external/clang/test/SemaCXX/
addr-of-overloaded-function.cpp 7 int (*pfd)(double) = f; // selects f(double) variable
  /external/wayland/tests/
connection-test.c 585 struct pollfd pfd; local
595 pfd.fd = wl_display_get_fd(c->wl_display);
596 pfd.events = POLLIN;
599 assert(poll(&pfd, 1, -1) == 1);
display-test.c 701 struct pollfd pfd[2]; local
719 pfd[0].fd = wl_display_get_fd(c->wl_display);
720 pfd[0].events = POLLIN;
722 ret = poll(pfd, 1, -1);

Completed in 513 milliseconds

1 2 3 4 5 6 7 891011>>