Searched refs:fd_set (Results 1 - 25 of 32) sorted by relevance

12

/haiku/src/system/libroot/posix/sys/
H A Dselect.cpp22 extern "C" int __pselect_beos(int numBits, struct fd_set *readBits,
23 struct fd_set *writeBits, struct fd_set *errorBits,
25 extern "C" int __pselect(int numBits, struct fd_set *readBits, struct fd_set *writeBits,
26 struct fd_set *errorBits, const struct timespec *tv,
31 __pselect_beos(int numBits, struct fd_set *readBits, struct fd_set *writeBits,
32 struct fd_set *errorBits, const struct timespec *tv,
52 __pselect(int numBits, struct fd_set *readBit
[all...]
/haiku/headers/posix/sys/
H A Dselect.h39 typedef struct fd_set { struct
41 } fd_set; typedef in typeref:struct:fd_set
49 #define FD_ZERO(set) memset((set), 0, sizeof(fd_set))
61 extern int pselect(int numBits, struct fd_set *readBits, struct fd_set *writeBits,
62 struct fd_set *errorBits, const struct timespec *timeout, const sigset_t *sigMask);
63 extern int select(int numBits, struct fd_set *readBits, struct fd_set *writeBits,
64 struct fd_set *errorBits, struct timeval *timeout);
/haiku/src/tests/system/kernel/
H A Dselect_check.cpp18 fd_set readSet;
19 fd_set writeSet;
20 fd_set errorSet;
H A Dselect_close_test.cpp31 fd_set readSet;
/haiku/src/bin/network/telnet/
H A Dnetwork.c87 fd_set excepts;
93 value = select(net+1, (fd_set *)0, (fd_set *)0, &excepts, &timeout);
H A Dutilities.c866 fd_set o;
872 (void) select(tout+1, (fd_set *) 0, &o, (fd_set *) 0,
878 (void) select(tout+1, (fd_set *) 0, &o, (fd_set *) 0,
H A Dsys_bsd.c110 static fd_set *ibitsp, *obitsp, *xbitsp;
948 if ((ibitsp = (fd_set *)malloc(fdsn)) == NULL)
950 if ((obitsp = (fd_set *)malloc(fdsn)) == NULL)
952 if ((xbitsp = (fd_set *)malloc(fdsn)) == NULL)
/haiku/src/system/kernel/events/
H A Dwait_for_objects.cpp89 SelectTraceEntry(int count, fd_set* readSet, fd_set* writeSet,
90 fd_set* errorSet)
104 fReadSet = (fd_set*)allocated;
109 fWriteSet = (fd_set*)allocated;
114 fErrorSet = (fd_set*)allocated;
131 void _PrintSet(TraceOutput& out, const char* name, fd_set* set)
154 fd_set* fReadSet;
155 fd_set* fWriteSet;
156 fd_set* fErrorSe
[all...]
/haiku/src/tests/system/network/
H A Dfirefox_crash.cpp81 fd_set set;
103 fd_set set;
H A Dselect_test.c18 struct fd_set fdr, fdw, fde;
H A Dselect_test2.c18 struct fd_set fdr, fdw, fde;
H A Dselect_test_big.c21 struct fd_set fdr, fdw, fde;
/haiku/src/servers/net/
H A DServices.h58 fd_set fSet;
H A DServices.cpp483 fd_set set = fSet;
/haiku/src/system/libnetwork/netresolv/isc/
H A Deventlib_p.h227 fd_set rdLast, rdNext;
228 fd_set wrLast, wrNext;
229 fd_set exLast, exNext;
230 fd_set nonblockBefore;
/haiku/src/bin/network/telnetd/
H A Ddefs.h125 typedef struct fd_set { int fds_bits[1]; } fd_set; typedef in typeref:struct:fd_set
H A Dutility.c102 fd_set excepts;
109 value = select(s+1, (fd_set *)0, (fd_set *)0, &excepts, &timeout);
/haiku/src/bin/debug/strace/
H A DTypeHandler.h122 struct fd_set;
134 DEFINE_FACTORY(fdset_ptr, fd_set *);
H A DNetworkTypes.cpp98 TypeHandlerImpl<fd_set *>::GetParameterValue(Context &context, Parameter *,
110 TypeHandlerImpl<fd_set *>::GetReturnValue(Context &context, uint64 value)
761 DEFINE_TYPE(fdset_ptr, fd_set *);
/haiku/src/tests/add-ons/kernel/drivers/tty/
H A Dtty-test.cpp56 struct FDSet : fd_set {
152 fd_set *readSet = (fReadSet.Count() > 0 ? &fReadSet : NULL);
153 fd_set *writeSet = (fWriteSet.Count() > 0 ? &fWriteSet : NULL);
154 fd_set *errorSet = (fErrorSet.Count() > 0 ? &fErrorSet : NULL);
/haiku/src/preferences/time/
H A Dntp.cpp166 fd_set waitForReceived;
/haiku/headers/private/kernel/
H A Dvfs.h212 ssize_t _user_select(int numfds, fd_set *readSet, fd_set *writeSet,
213 fd_set *errorSet, bigtime_t timeout, const sigset_t *sigMask);
/haiku/headers/private/system/
H A Dsyscalls.h28 struct fd_set;
299 extern ssize_t _kern_select(int numfds, struct fd_set *readSet,
300 struct fd_set *writeSet, struct fd_set *errorSet,
/haiku/src/tests/system/network/multicast/
H A Dmulticat.c132 fd_set in;
/haiku/src/apps/text_search/
H A DGrepper.cpp369 fd_set readSet;

Completed in 231 milliseconds

12