fd                 83 mod_freetdm/mod_freetdm.c 	int fd;
fd                  6 src/detect_dtmf.c 	int fd, b;
fd                 18 src/detect_dtmf.c 	if ((fd = open(argv[1], O_RDONLY)) < 0) {
fd                 23 src/detect_dtmf.c 	while((b = read(fd, sln, 320)) > 0) {
fd                 30 src/detect_dtmf.c 	close(fd);
fd                  9 src/detect_tones.c 	int fd, b;
fd                 21 src/detect_tones.c 	if ((fd = open(argv[1], O_RDONLY)) < 0) {
fd                 26 src/detect_tones.c 	while((b = read(fd, sln, 320)) > 0) {
fd                 29 src/detect_tones.c 	close(fd);
fd                333 src/ftdm_threadmutex.c 	ints[0].fd = interrupt->readfd;
fd                339 src/ftdm_threadmutex.c 		ints[1].fd = interrupt->device;
fd                359 src/ftdm_threadmutex.c 		res = read(ints[0].fd, pipebuf, sizeof(pipebuf));
fd                383 src/ftdm_threadmutex.c 	testpoll.fd = interrupt->readfd;
fd                465 src/ftdm_threadmutex.c 		ints[i].fd = interrupts[i]->readfd;
fd                469 src/ftdm_threadmutex.c 			ints[size+numdevices].fd = interrupts[i]->device;
fd                492 src/ftdm_threadmutex.c 			res = read(ints[i].fd, pipebuf, sizeof(pipebuf));
fd                688 src/ftmod/ftmod_pritap/ftmod_pritap.c 	dpoll.fd = pritap->dchan->sockfd;
fd                139 src/ftmod/ftmod_wanpipe/ftmod_wanpipe.c     pfds[0].fd = ftdmchan->sockfd;
fd                905 src/ftmod/ftmod_wanpipe/ftmod_wanpipe.c 		pfds[j].fd = span->channels[i]->sockfd;
fd                336 src/ftmod/ftmod_wanpipe/wanpipe_tdm_api_iface.h 	int (*wp_rbs_event)(sng_fd_t fd, unsigned char rbs_bits);
fd                337 src/ftmod/ftmod_wanpipe/wanpipe_tdm_api_iface.h 	int (*wp_dtmf_event)(sng_fd_t fd, unsigned char dtmf, unsigned char type, unsigned char port);
fd                338 src/ftmod/ftmod_wanpipe/wanpipe_tdm_api_iface.h 	int (*wp_rxhook_event)(sng_fd_t fd, unsigned char hook_state);
fd                339 src/ftmod/ftmod_wanpipe/wanpipe_tdm_api_iface.h 	int (*wp_ring_detect_event)(sng_fd_t fd, unsigned char ring_state);
fd                340 src/ftmod/ftmod_wanpipe/wanpipe_tdm_api_iface.h 	int (*wp_ring_trip_detect_event)(sng_fd_t fd, unsigned char ring_state);
fd                341 src/ftmod/ftmod_wanpipe/wanpipe_tdm_api_iface.h 	int (*wp_fe_alarm_event)(sng_fd_t fd, unsigned char fe_alarm_event);
fd                342 src/ftmod/ftmod_wanpipe/wanpipe_tdm_api_iface.h 	int (*wp_link_status_event)(sng_fd_t fd, unsigned char link_status_event);
fd                886 src/ftmod/ftmod_zt/ftmod_zt.c     pfds[0].fd = ftdmchan->sockfd;
fd                940 src/ftmod/ftmod_zt/ftmod_zt.c 		pfds[j].fd = span->channels[i]->sockfd;
fd                103 src/include/private/sangoma_tdm_api.h static __inline__ int tdmv_api_wait_socket(sng_fd_t fd, int timeout, int *flags)
fd                115 src/include/private/sangoma_tdm_api.h 						 fd,
fd                156 src/include/private/sangoma_tdm_api.h     pfds[0].fd = fd;
fd                177 src/include/private/sangoma_tdm_api.h static __inline__ int tdmv_api_readmsg_tdm(sng_fd_t fd, void *hdrbuf, int hdrlen, void *databuf, int datalen)
fd                194 src/include/private/sangoma_tdm_api.h 						 fd,
fd                240 src/include/private/sangoma_tdm_api.h 	rx_len = read(fd,&msg,datalen+hdrlen);
fd                251 src/include/private/sangoma_tdm_api.h static __inline__ int tdmv_api_writemsg_tdm(sng_fd_t fd, void *hdrbuf, int hdrlen, void *databuf, unsigned short datalen)
fd                271 src/include/private/sangoma_tdm_api.h 						 fd,
fd                301 src/include/private/sangoma_tdm_api.h 	bsent = write(fd, &msg, datalen + hdrlen);
fd                 62 src/priserver.c 	int fd = 0, file = 0, inlen = 0, outlen = 0;
fd                174 src/sangoma_pri.c 	FD_SET(spri->pri->fd, &rfds);
fd                175 src/sangoma_pri.c 	FD_SET(spri->pri->fd, &efds);
fd                195 src/sangoma_pri.c 	sel = select(spri->pri->fd + 1, &rfds, NULL, &efds, next ? &now : NULL);
fd                  6 src/testcid.c  	int fd;
fd                 14 src/testcid.c  	len = write(foo->fd, buf, buflen * 2);
fd                 24 src/testcid.c  	int fd = -1;
fd                 42 src/testcid.c  		if ((fd = open("tone.raw", O_WRONLY | O_TRUNC | O_CREAT, S_IRUSR | S_IWUSR)) < 0) {
fd                 67 src/testcid.c  		foo.fd = fd;
fd                 75 src/testcid.c  		if (fd > -1) {
fd                 76 src/testcid.c  			close (fd);
fd                 87 src/testcid.c  	if ((fd = open(argv[1], O_RDONLY)) < 0) {
fd                 92 src/testcid.c  	while((len = read(fd, buf, sizeof(buf))) > 0) {
fd                107 src/testcid.c  	close(fd);
fd                 19 src/testpri.c  	int fd = -1;
fd                 30 src/testpri.c  	if ((fd = open("test.raw", O_RDONLY, 0)) < 0) {
fd                 35 src/testpri.c  		ssize_t bytes = read(fd, buf, sizeof(buf));
fd                 51 src/testpri.c  	close(fd);
fd                  4 src/testtones.c 	int fd;
fd                 14 src/testtones.c 	len = write(tmp->fd, ts->buffer, wrote * 2);
fd                 32 src/testtones.c 	if ((tmp.fd = open(argv[1], O_WRONLY | O_TRUNC | O_CREAT, S_IRUSR | S_IWUSR)) < 0) {
fd                 42 src/testtones.c 	close(tmp.fd);
fd                 49 src/testtones.c 	int32_t j, i, fd = -1;
fd                 58 src/testtones.c 	if (argc < 2 || (fd = open(argv[1], O_WRONLY | O_TRUNC | O_CREAT, S_IRUSR | S_IWUSR)) < 0) {
fd                 69 src/testtones.c 			len = write(fd, &sample, sizeof(sample));
fd                 74 src/testtones.c 	close(fd);