Home
last modified time | relevance | path

Searched refs:fd_set (Results 1 – 25 of 156) sorted by relevance

1234567

/dragonfly/usr.sbin/ppp/
H A Dphysical.h63 int (*removefromset)(struct physical *, fd_set *, fd_set *, fd_set *);
156 extern int physical_doUpdateSet(struct fdescriptor *, fd_set *, fd_set *,
157 fd_set *, int *, int);
158 extern int physical_IsSet(struct fdescriptor *, const fd_set *);
160 const fd_set *);
162 extern int physical_RemoveFromSet(struct physical *, fd_set *, fd_set *,
163 fd_set *);
H A Ddescriptor.h45 int (*UpdateSet)(struct fdescriptor *, fd_set *, fd_set *, fd_set *, int *);
46 int (*IsSet)(struct fdescriptor *, const fd_set *);
47 void (*Read)(struct fdescriptor *, struct bundle *, const fd_set *);
48 int (*Write)(struct fdescriptor *, struct bundle *, const fd_set *);
H A Dether.c144 ether_RemoveFromSet(struct physical *p, fd_set *r, fd_set *w, fd_set *e) in ether_RemoveFromSet()
230 fd_set *r; in ether_MessageIn()
383 ether_UpdateSet(struct fdescriptor *d, fd_set *r, fd_set *w, fd_set *e, int *n) in ether_UpdateSet()
402 ether_IsSet(struct fdescriptor *d, const fd_set *fdset) in ether_IsSet()
416 const fd_set *fdset) in ether_DescriptorRead()
H A Ddatalink.h153 extern int datalink_RemoveFromSet(struct datalink *, fd_set *, fd_set *,
154 fd_set *);
H A Dserver.c52 server_UpdateSet(struct fdescriptor *d, fd_set *r, fd_set *w, fd_set *e, int *n) in server_UpdateSet()
74 server_IsSet(struct fdescriptor *d, const fd_set *fdset) in server_IsSet()
90 server_Read(struct fdescriptor *d, struct bundle *bundle, const fd_set *fdset) in server_Read()
196 server_Write(struct fdescriptor *d __unused, struct bundle *bundle __unused, const fd_set *fdset __… in server_Write()
H A Dnetgraph.c184 fd_set *r; in ng_MessageIn()
256 ng_RemoveFromSet(struct physical *p, fd_set *r, fd_set *w, fd_set *e) in ng_RemoveFromSet()
360 ng_UpdateSet(struct fdescriptor *d, fd_set *r, fd_set *w, fd_set *e, int *n) in ng_UpdateSet()
386 ng_IsSet(struct fdescriptor *d, const fd_set *fdset) in ng_IsSet()
400 const fd_set *fdset) in ng_DescriptorRead()
H A Dprompt.c133 prompt_UpdateSet(struct fdescriptor *d, fd_set *r, fd_set *w __unused, fd_set *e, int *n) in prompt_UpdateSet()
164 prompt_IsSet(struct fdescriptor *d, const fd_set *fdset) in prompt_IsSet()
183 prompt_Read(struct fdescriptor *d, struct bundle *bundle, const fd_set *fdset __unused) in prompt_Read()
304 prompt_Write(struct fdescriptor *d __unused, struct bundle *bundle __unused, const fd_set *fdset __… in prompt_Write()
H A Ddefs.h138 extern fd_set *mkfdset(void);
139 extern void zerofdset(fd_set *);
H A Dphysical.c104 const fd_set *);
137 physical_UpdateSet(struct fdescriptor *d, fd_set *r, fd_set *w, fd_set *e, in physical_UpdateSet()
385 const fd_set *fdset __unused) in physical_DescriptorWrite()
517 const fd_set *fdset __unused) in physical_DescriptorRead()
823 physical_doUpdateSet(struct fdescriptor *d, fd_set *r, fd_set *w, fd_set *e, in physical_doUpdateSet()
854 physical_RemoveFromSet(struct physical *p, fd_set *r, fd_set *w, fd_set *e) in physical_RemoveFromSet()
885 physical_IsSet(struct fdescriptor *d, const fd_set *fdset) in physical_IsSet()
H A Ddefs.c391 fd_set *
394 return (fd_set *)malloc(howmany(getdtablesize(), NFDBITS) * sizeof (fd_mask)); in mkfdset()
398 zerofdset(fd_set *s) in zerofdset()
H A Dchat.c141 chat_UpdateSet(struct fdescriptor *d, fd_set *r, fd_set *w, fd_set *e, int *n) in chat_UpdateSet()
325 chat_IsSet(struct fdescriptor *d, const fd_set *fdset) in chat_IsSet()
375 const fd_set *fdset __unused) in chat_Read()
490 const fd_set *fdset __unused) in chat_Write()
/dragonfly/sys/sys/
H A Dselect.h48 int select(int, fd_set * __restrict, fd_set * __restrict,
49 fd_set * __restrict, struct timeval * __restrict);
50 int pselect(int, fd_set * __restrict, fd_set * __restrict,
51 fd_set * __restrict, const struct timespec * __restrict,
H A D_fd_set.h57 typedef struct fd_set { struct
59 } fd_set; typedef
/dragonfly/lib/libthread_xu/thread/
H A Dthr_syscalls.c94 extern int __sys_pselect(int, fd_set *, fd_set *, fd_set *,
115 extern int __sys_select(int, fd_set *, fd_set *, fd_set *, struct timeval *);
145 int __select(int, fd_set *, fd_set *, fd_set *, struct timeval *);
155 int __pselect(int, fd_set *, fd_set *, fd_set *,
472 __pselect(int count, fd_set *rfds, fd_set *wfds, fd_set *efds, in __pselect()
564 __select(int numfds, fd_set *readfds, fd_set *writefds, fd_set *exceptfds, in __select()
/dragonfly/contrib/gdb-7/gdb/
H A Dgdb_select.h33 extern int gdb_select (int n, fd_set *readfds, fd_set *writefds,
34 fd_set *exceptfds, struct timeval *timeout);
H A Dposix-hdep.c50 gdb_select (int n, fd_set *readfds, fd_set *writefds, fd_set *exceptfds, in gdb_select()
/dragonfly/contrib/gdb-7/readline/
H A Dparens.c111 fd_set readfds;
129 ready = select (1, &readfds, (fd_set *)NULL, (fd_set *)NULL, &timer);
H A Dinput.c174 fd_set readfds, exceptfds; in rl_gather_tyi()
187 result = select (tty + 1, &readfds, (fd_set *)NULL, &exceptfds, &timeout); in rl_gather_tyi()
286 fd_set readfds, exceptfds; in _rl_input_available()
303 return (select (tty + 1, &readfds, (fd_set *)NULL, &exceptfds, &timeout) > 0); in _rl_input_available()
/dragonfly/lib/libssh/openbsd-compat/
H A Dbsd-misc.h126 int pselect(int, fd_set *, fd_set *, fd_set *, const struct timespec *,
/dragonfly/lib/libc/isc/
H A Deventlib_p.h230 fd_set rdLast, rdNext;
231 fd_set wrLast, wrNext;
232 fd_set exLast, exNext;
233 fd_set nonblockBefore;
/dragonfly/games/hunt/huntd/
H A Dextern.c45 fd_set Fds_mask; /* mask for the file descriptors */
46 fd_set Have_inp; /* which file descriptors have input */
/dragonfly/test/testcases/io/select_1/
H A Dselect_1.c36 fd_set rset; in test_select()
37 fd_set wset; in test_select()
/dragonfly/test/testcases/io/pselect_1/
H A Dpselect_1.c37 fd_set rset; in test_pselect()
38 fd_set wset; in test_pselect()
/dragonfly/libexec/telnetd/
H A Ddefs.h114 typedef struct fd_set { int fds_bits[1]; } fd_set; typedef
/dragonfly/usr.sbin/rpc.ypupdated/
H A Dypupdated_main.c98 extern fd_set svc_fdset; in closedown()
124 fd_set readfds; in ypupdated_svc_run()

1234567