Lines Matching refs:setp
945 fd_set *setp; in packet_read_seqnr() local
949 setp = (fd_set *)xmalloc(howmany(connection_in+1, NFDBITS) * in packet_read_seqnr()
967 xfree(setp); in packet_read_seqnr()
974 memset(setp, 0, howmany(connection_in + 1, NFDBITS) * in packet_read_seqnr()
976 FD_SET(connection_in, setp); in packet_read_seqnr()
979 while (select(connection_in + 1, setp, NULL, NULL, NULL) == -1 && in packet_read_seqnr()
1560 fd_set *setp; in packet_write_wait() local
1562 setp = (fd_set *)xmalloc(howmany(connection_out + 1, NFDBITS) * in packet_write_wait()
1566 memset(setp, 0, howmany(connection_out + 1, NFDBITS) * in packet_write_wait()
1568 FD_SET(connection_out, setp); in packet_write_wait()
1569 while (select(connection_out + 1, NULL, setp, NULL, NULL) == -1 && in packet_write_wait()
1574 xfree(setp); in packet_write_wait()