Searched refs:read_fd (Results 1 - 15 of 15) sorted by relevance

/macosx-10.10.1/SmartCardServices-55111/src/PCSC/
H A Dwinscard_msg_srv.c173 fd_set read_fd; local
182 FD_ZERO(&read_fd);
187 FD_SET(commonSocket, &read_fd);
189 selret = select(commonSocket + 1, &read_fd, (fd_set *) NULL,
215 if (FD_ISSET(commonSocket, &read_fd))
242 fd_set read_fd; local
249 FD_ZERO(&read_fd);
250 FD_SET(dwClientID, &read_fd);
252 selret = select(dwClientID + 1, &read_fd, (fd_set *) NULL,
270 if (FD_ISSET(dwClientID, &read_fd))
[all...]
H A Dwinscard_msg.c198 fd_set read_fd; local
202 FD_ZERO(&read_fd);
203 FD_SET(filedes, &read_fd);
215 selret = select(filedes + 1, &read_fd, NULL, NULL, &timeout);
224 if (!FD_ISSET(filedes, &read_fd))
H A Dwinscard_msg.cpp411 fd_set read_fd; local
415 FD_ZERO(&read_fd);
416 FD_SET(filedes, &read_fd);
429 selret = select(filedes + 1, &read_fd, NULL, NULL, &timeout);
438 if (!FD_ISSET(filedes, &read_fd))
/macosx-10.10.1/webdavfs-367/webdav_cert_ui.tproj/
H A Dmain.m41 read_fd(int fd, size_t * ret_size)
110 buf = read_fd(fd, &bufsize);
111 require(buf != NULL, read_fd);
124 read_fd:
/macosx-10.10.1/bootp-298/IPConfiguration.bproj/
H A Dbootp_session.c77 FDCalloutRef read_fd; member in struct:bootp_session
224 if (session->read_fd == NULL) {
236 FDCalloutGetFD(session->read_fd));
239 FDCalloutRelease(&session->read_fd);
292 if (session->read_fd != NULL) {
309 session->read_fd = FDCalloutCreate(sockfd,
351 if (session->read_fd != NULL) {
352 fd = FDCalloutGetFD(session->read_fd);
420 if (session->read_fd != NULL) {
421 sockfd = FDCalloutGetFD(session->read_fd);
[all...]
H A DDHCPv6Socket.c76 FDCalloutRef read_fd; member in struct:DHCPv6SocketGlobals
192 FDCalloutRelease(&globals->read_fd);
212 if (S_globals->read_fd == NULL) {
224 FDCalloutGetFD(S_globals->read_fd));
227 FDCalloutRelease(&S_globals->read_fd);
410 n = recvmsg(FDCalloutGetFD(S_globals->read_fd), &mhdr, 0);
471 if (S_globals->read_fd != NULL) {
488 S_globals->read_fd = FDCalloutCreate(sockfd,
568 ret = S_send_packet(FDCalloutGetFD(S_globals->read_fd),
H A DRTADVSocket.c123 FDCalloutRef read_fd; member in struct:RTADVSocketGlobals
201 FDCalloutRelease(&globals->read_fd);
239 if (S_globals->read_fd == NULL) {
251 FDCalloutGetFD(S_globals->read_fd));
254 FDCalloutRelease(&S_globals->read_fd);
472 n = recvmsg(FDCalloutGetFD(S_globals->read_fd), &mhdr, 0);
707 if (S_globals->read_fd != NULL) {
724 S_globals->read_fd = FDCalloutCreate(sockfd,
778 ret = IPv6SocketSend(FDCalloutGetFD(S_globals->read_fd),
H A Darp_session.c118 FDCalloutRef read_fd; member in struct:arp_if_session
339 if (if_session->read_fd != NULL) {
342 FDCalloutGetFD(if_session->read_fd));
344 FDCalloutRelease(&if_session->read_fd);
561 n = read(FDCalloutGetFD(if_session->read_fd), if_session->receive_buf,
830 if_session->read_fd
833 if (if_session->read_fd == NULL) {
970 status = bpf_write(FDCalloutGetFD(if_session->read_fd), txbuf, size);
/macosx-10.10.1/postfix-255/postfix/src/util/
H A Dvstream.c639 VSTREAM_SAVE_STATE(stream, read_buf, read_fd);
785 VSTREAM_SAVE_STATE(stream, read_buf, read_fd);
794 VSTREAM_RESTORE_STATE(stream, read_buf, read_fd);
829 VSTREAM_RESTORE_STATE(stream, read_buf, read_fd);
936 VSTREAM_SAVE_STATE(stream, read_buf, read_fd);
991 VSTREAM_SAVE_STATE(stream, read_buf, read_fd);
1282 if (stream->read_fd >= 0)
1283 err |= close(stream->read_fd);
1284 if (stream->write_fd != stream->read_fd)
1323 stream->fd = stream->read_fd
[all...]
H A Dvstream.h51 int read_fd; /* read channel (double-buffered) */ member in struct:VSTREAM
/macosx-10.10.1/cxxfilt-11/cxxfilt/include/gdb/
H A Dcallback.h101 void (*pipe_empty) PARAMS ((host_callback *, int read_fd, int write_fd));
105 void (*pipe_nonempty) PARAMS ((host_callback *, int read_fd, int write_fd));
/macosx-10.10.1/Security-57031.1.35/codesign_wrapper/
H A Dcheck_entitlements.c270 ssize_t read_fd(int fd, void **buffer) function
375 size_t entitlements_size = read_fd(entitlements_fd, &entitlements);
H A Dcodesign_wrapper.c272 read_fd(int fd, void **buffer) function
363 requirements_size = read_fd(requirements_fd, &requirements);
380 entitlements_size = read_fd(entitlements_fd, &entitlements);
478 ssize_t size = read_fd(data_file, &data);
/macosx-10.10.1/apache-793/httpd/server/
H A Dlog.c185 apr_file_t *read_fd, *write_fd; member in struct:piped_log
198 return pl->read_fd;
1554 pl->read_fd,
1582 close_handle_in_child(pl->p, pl->read_fd);
1652 apr_file_close(pl->read_fd);
1680 if (apr_file_pipe_create_ex(&pl->read_fd,
1689 apr_file_close(pl->read_fd);
1724 pl->read_fd = NULL;
/macosx-10.10.1/llvmCore-3425.0.34/utils/unittest/googletest/
H A Dgtest-death-test.cc347 int read_fd() const { return read_fd_; } function in class:testing::internal::DeathTestImpl
394 bytes_read = posix::Read(read_fd(), &flag, 1);
411 FailFromInternalError(read_fd()); // Does not return.
422 GTEST_DEATH_TEST_CHECK_SYSCALL_(posix::Close(read_fd()));

Completed in 368 milliseconds