bytes            3399 src/ftdm_io.c  	ftdm_size_t bytes = 0;
bytes            3409 src/ftdm_io.c  		if ((bytes = ftdm_buffer_read(ftdmchan->digit_buffer, dtmf, len)) > 0) {
bytes            3410 src/ftdm_io.c  			*(dtmf + bytes) = '\0';
bytes            3415 src/ftdm_io.c  	return bytes;
bytes             298 src/ftmod/ftmod_sangoma_boost/sangoma_boost_client.c 	int bytes = 0;
bytes             305 src/ftmod/ftmod_sangoma_boost/sangoma_boost_client.c 			bytes = (int)e->size;
bytes             306 src/ftmod/ftmod_sangoma_boost/sangoma_boost_client.c 			memcpy(&mcon->event, e->boostmsg, bytes);
bytes             312 src/ftmod/ftmod_sangoma_boost/sangoma_boost_client.c 		bytes = recvfrom(mcon->socket, &mcon->event, sizeof(mcon->event), MSG_DONTWAIT, 
bytes             316 src/ftmod/ftmod_sangoma_boost/sangoma_boost_client.c 	if (bytes <= 0) {
bytes             324 src/ftmod/ftmod_sangoma_boost/sangoma_boost_client.c 	if ((bytes >= MIN_SIZE_CALLSTART_MSG) && boost_full_event(mcon->event.event_id)) {
bytes             327 src/ftmod/ftmod_sangoma_boost/sangoma_boost_client.c 	} else if (bytes == sizeof(sangomabc_short_event_t)) {
bytes             378 src/ftmod/ftmod_sangoma_boost/sangoma_boost_client.c 			ftdm_log(FTDM_LOG_CRIT, "NC -  Invalid Event length from boost rxlen=%i evsz=%i\n", bytes, sizeof(mcon->event));
bytes             391 src/ftmod/ftmod_sangoma_boost/sangoma_boost_client.c 	int bytes = 0;
bytes             399 src/ftmod/ftmod_sangoma_boost/sangoma_boost_client.c 		bytes = recvfrom(mcon->socket, &mcon->event, sizeof(mcon->event), MSG_DONTWAIT, (struct sockaddr *) &mcon->local_addr, &fromlen);
bytes             402 src/ftmod/ftmod_sangoma_boost/sangoma_boost_client.c 	if (bytes <= 0) {
bytes             410 src/ftmod/ftmod_sangoma_boost/sangoma_boost_client.c 	if (bytes == sizeof(sangomabc_short_event_t)) {
bytes             421 src/ftmod/ftmod_sangoma_boost/sangoma_boost_client.c 			ftdm_log(FTDM_LOG_CRIT, "Critical Error: PQ Invalid Event lenght from boost rxlen=%i evsz=%i\n", bytes, sizeof(mcon->event));
bytes            1211 src/ftmod/ftmod_zt/ftmod_zt.c 	ftdm_size_t bytes = *datalen;
bytes            1214 src/ftmod/ftmod_zt/ftmod_zt.c 		memset(data+bytes, 0, 2);
bytes            1215 src/ftmod/ftmod_zt/ftmod_zt.c 		bytes += 2;
bytes            1219 src/ftmod/ftmod_zt/ftmod_zt.c 	w = write(ftdmchan->sockfd, data, bytes);
bytes              35 src/testpri.c  		ssize_t bytes = read(fd, buf, sizeof(buf));
bytes              38 src/testpri.c  		if (bytes <= 0) {
bytes              42 src/testpri.c  		bbytes = (size_t) bytes;