HomeSort by relevance Sort by last modified time
    Searched refs:wfd (Results 1 - 25 of 28) sorted by null

1 2

  /frameworks/base/core/java/android/os/
FileObserver.java 92 int wfd = startWatching(m_fd, path, mask); local
94 Integer i = new Integer(wfd);
95 if (wfd >= 0) {
108 public void onEvent(int wfd, int mask, String path) {
113 WeakReference weak = m_observers.get(wfd);
114 if (weak != null) { // can happen with lots of events from a dead wfd
117 m_observers.remove(wfd);
135 private native void stopWatching(int fd, int wfd);
  /external/libppp/src/
server.c 98 int ssize = sizeof ss, wfd; local
103 wfd = accept(s->fd, sa, &ssize);
104 if (wfd < 0)
107 close(wfd);
108 wfd = -1;
111 wfd = -1;
113 if (wfd >= 0)
125 close(wfd);
126 wfd = -1;
140 close(wfd);
    [all...]
  /frameworks/av/media/libstagefright/wifi-display/
Android.mk 46 wfd.cpp \
58 LOCAL_MODULE:= wfd
  /external/libusb_aah/libusb/os/
poll_windows.c 246 * event. To that extent, we create a single wfd and overlapped as a means
325 struct winfd wfd = INVALID_WINFD; local
340 wfd.rw = RW_READ;
342 wfd.rw = RW_WRITE;
366 wfd.fd = fd;
372 &wfd.handle, 0, TRUE, DUPLICATE_SAME_ACCESS)) {
374 wfd.handle = handle;
381 wfd.handle = handle;
383 wfd.overlapped = overlapped;
384 memcpy(&poll_fd[i], &wfd, sizeof(struct winfd))
440 struct winfd wfd; local
466 struct winfd wfd; local
492 struct winfd wfd; local
    [all...]
windows_usb.c 2555 struct winfd wfd; local
2647 struct winfd wfd; local
2774 struct winfd wfd; local
    [all...]
  /system/core/toolbox/
cat.c 159 int wfd; local
161 wfd = fileno(stdout);
163 if (fstat(wfd, &sbuf) == 0) {
175 if ((nw = write(wfd, buf + off, (size_t)nr)) < 0)
  /frameworks/base/core/jni/
android_util_FileObserver.cpp 125 static void android_os_fileobserver_stopWatching(JNIEnv* env, jobject object, jint fd, jint wfd)
129 inotify_rm_watch((int)fd, (uint32_t)wfd);
  /external/compiler-rt/lib/tsan/rtl/
tsan_fd.h 48 void FdPipeCreate(ThreadState *thr, uptr pc, int rfd, int wfd);
tsan_fd.cc 201 void FdPipeCreate(ThreadState *thr, uptr pc, int rfd, int wfd) {
202 DPrintf("#%d: FdCreatePipe(%d, %d)\n", thr->tid, rfd, wfd);
205 init(thr, pc, wfd, ref(s));
  /external/qemu/telephony/
sysdeps_posix.c 423 fd_set rfd, wfd, efd; local
428 memcpy(&wfd, &_s_fdsets[1], sizeof(fd_set));
446 n = select( _s_maxfd+1, &rfd, &wfd, &efd, timeout);
463 if(FD_ISSET(i, &wfd)) events |= SYS_EVENT_WRITE;
  /external/wpa_supplicant_8/src/common/
ieee802_11_common.h 40 const u8 *wfd; member in struct:ieee802_11_elems
ieee802_11_common.c 101 /* Wi-Fi Alliance - WFD IE */
102 elems->wfd = pos;
  /bootable/recovery/minadbd/
fdevent.c 370 fd_set rfd, wfd, efd; local
373 memcpy(&wfd, &write_fds, sizeof(fd_set));
378 n = select(select_n, &rfd, &wfd, &efd, NULL);
389 FD_ZERO(&wfd);
407 if(FD_ISSET(i, &wfd)) { events |= FDE_WRITE; n--; }
  /system/core/adb/
fdevent.c 370 fd_set rfd, wfd, efd; local
373 memcpy(&wfd, &write_fds, sizeof(fd_set));
378 n = select(select_n, &rfd, &wfd, &efd, NULL);
389 FD_ZERO(&wfd);
407 if(FD_ISSET(i, &wfd)) { events |= FDE_WRITE; n--; }
  /external/libxml2/
nanohttp.c 452 fd_set wfd; local
486 FD_ZERO(&wfd);
491 FD_SET(ctxt->fd, &wfd);
495 (void) select(ctxt->fd + 1, NULL, &wfd, NULL, &tv);
847 fd_set wfd; local
947 FD_ZERO(&wfd);
948 FD_SET(s, &wfd);
954 switch (select(s + 1, NULL, &wfd, &xfd, &tv))
956 switch (select(s + 1, NULL, &wfd, NULL, &tv))
982 if (FD_ISSET(s, &wfd)
    [all...]
  /external/openssh/
channels.c 224 channel_register_fds(Channel *c, int rfd, int wfd, int efd,
229 channel_max_fd = MAX(channel_max_fd, wfd);
234 if (wfd != -1 && wfd != rfd)
235 fcntl(wfd, F_SETFD, FD_CLOEXEC);
236 if (efd != -1 && efd != rfd && efd != wfd)
240 c->wfd = wfd;
241 c->sock = (rfd == wfd) ? rfd : -1;
247 c->wfd_isatty = is_tty || isatty(c->wfd);
    [all...]
channels.h 98 int wfd; /* write fd */ member in struct:Channel
103 int wfd_isatty; /* wfd is a tty */
nchan.c 501 if (channel_close_fd(&c->wfd) < 0)
504 c->self, c->wfd, strerror(errno));
  /external/qemu/
posix-aio-compat.c 57 int rfd, wfd; member in struct:PosixAioState
510 ret = write(posix_aio_state->wfd, &byte, sizeof(byte));
645 s->wfd = fds[1];
648 fcntl(s->wfd, F_SETFL, O_NONBLOCK);
  /external/netcat/
netcat.c 764 int n, wfd = fileno(stdin); local
775 pfd[1].fd = wfd;
806 if ((n = read(wfd, buf, plen)) < 0)
  /external/wpa_supplicant_8/src/p2p/
p2p_sd.c 19 static int wfd_wsd_supported(struct wpabuf *wfd)
25 if (wfd == NULL)
28 pos = wpabuf_head(wfd);
29 end = pos + wpabuf_len(wfd);
p2p_group.c 328 wpabuf_put_data(buf, dev_info, 2); /* WFD Device Info */
329 wpabuf_put_data(buf, dev_info + 4, 2); /* WFD Device Max Throughput */
365 /* Build WFD Session Info */
381 wpa_printf(MSG_DEBUG, "WFD: WFD Session Info: %u descriptors",
433 struct wpabuf *wfd = wpabuf_dup(group->wfd_ie); local
434 ie = wpabuf_concat(wfd, ie);
592 " to group (p2p=%d wfd=%d client_info=%d); num_members=%u/%u",
p2p_parse.c 418 if (elems.wfd) {
  /frameworks/native/cmds/dumpstate/
utils.c 503 int wfd = inotify_add_watch(ifd, traces_path, IN_CLOSE_WRITE); local
504 if (wfd < 0) {
  /packages/apps/Settings/src/com/android/settings/wfd/
WifiDisplaySettings.java 17 package com.android.settings.wfd;

Completed in 2157 milliseconds

1 2