Searched refs:wfd (Results 1 - 21 of 21) sorted by last modified time

/external/wpa_supplicant_8/hostapd/src/common/
H A Dieee802_11_common.c102 elems->wfd = pos;
H A Dieee802_11_common.h40 const u8 *wfd; member in struct:ieee802_11_elems
/external/wpa_supplicant_8/hostapd/src/p2p/
H A Dp2p_parse.c418 if (elems.wfd) {
H A Dp2p_sd.c19 static int wfd_wsd_supported(struct wpabuf *wfd) argument
25 if (wfd == NULL)
28 pos = wpabuf_head(wfd);
29 end = pos + wpabuf_len(wfd);
/external/wpa_supplicant_8/src/common/
H A Dieee802_11_common.c102 elems->wfd = pos;
H A Dieee802_11_common.h40 const u8 *wfd; member in struct:ieee802_11_elems
/external/wpa_supplicant_8/src/p2p/
H A Dp2p_parse.c418 if (elems.wfd) {
H A Dp2p_sd.c19 static int wfd_wsd_supported(struct wpabuf *wfd) argument
25 if (wfd == NULL)
28 pos = wpabuf_head(wfd);
29 end = pos + wpabuf_len(wfd);
/external/wpa_supplicant_8/wpa_supplicant/
H A Dctrl_iface.c2771 struct wpabuf *wfd; local
2773 wfd = ieee802_11_vendor_ie_concat(ie, bss->ie_len,
2775 if (wfd) {
2782 wpabuf_head(wfd),
2783 wpabuf_len(wfd));
2784 wpabuf_free(wfd);
/external/wpa_supplicant_8/wpa_supplicant/src/common/
H A Dieee802_11_common.c102 elems->wfd = pos;
H A Dieee802_11_common.h40 const u8 *wfd; member in struct:ieee802_11_elems
/external/wpa_supplicant_8/wpa_supplicant/src/p2p/
H A Dp2p_parse.c418 if (elems.wfd) {
H A Dp2p_sd.c19 static int wfd_wsd_supported(struct wpabuf *wfd) argument
25 if (wfd == NULL)
28 pos = wpabuf_head(wfd);
29 end = pos + wpabuf_len(wfd);
/external/qemu/
H A Dposix-aio-compat.c57 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/qemu/telephony/
H A Dsysdeps_posix.c423 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/netcat/
H A Dnetcat.c764 int n, wfd = fileno(stdin); local
775 pfd[1].fd = wfd;
806 if ((n = read(wfd, buf, plen)) < 0)
/external/openssh/
H A Dchannels.c224 channel_register_fds(Channel *c, int rfd, int wfd, int efd, argument
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);
265 channel_new(char *ctype, int type, int rfd, int wfd, int efd, u_int window, u_int maxpack, int extusage, char *remote_name, int nonblock) argument
759 channel_set_fds(int id, int rfd, int wfd, int efd, int extusage, int nonblock, int is_tty, u_int window_max) argument
[all...]
H A Dchannels.h98 int wfd; /* write fd */ member in struct:Channel
103 int wfd_isatty; /* wfd is a tty */
H A Dnchan.c501 if (channel_close_fd(&c->wfd) < 0)
504 c->self, c->wfd, strerror(errno));
/external/libppp/src/
H A Dserver.c98 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...]
/external/libxml2/
H A Dnanohttp.c452 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...]

Completed in 227 milliseconds