bytes            2954 src/ftdm_io.c  	ftdm_size_t bytes = 0;
bytes            2964 src/ftdm_io.c  		if ((bytes = ftdm_buffer_read(ftdmchan->digit_buffer, dtmf, len)) > 0) {
bytes            2965 src/ftdm_io.c  			*(dtmf + bytes) = '\0';
bytes            2970 src/ftdm_io.c  	return bytes;
bytes             296 src/ftmod/ftmod_sangoma_boost/sangoma_boost_client.c 	int bytes = 0;
bytes             303 src/ftmod/ftmod_sangoma_boost/sangoma_boost_client.c 			bytes = (int)e->size;
bytes             304 src/ftmod/ftmod_sangoma_boost/sangoma_boost_client.c 			memcpy(&mcon->event, e->boostmsg, bytes);
bytes             310 src/ftmod/ftmod_sangoma_boost/sangoma_boost_client.c 		bytes = recvfrom(mcon->socket, &mcon->event, sizeof(mcon->event), MSG_DONTWAIT, 
bytes             314 src/ftmod/ftmod_sangoma_boost/sangoma_boost_client.c 	if (bytes <= 0) {
bytes             322 src/ftmod/ftmod_sangoma_boost/sangoma_boost_client.c 	if ((bytes >= MIN_SIZE_CALLSTART_MSG) && boost_full_event(mcon->event.event_id)) {
bytes             325 src/ftmod/ftmod_sangoma_boost/sangoma_boost_client.c 	} else if (bytes == sizeof(sangomabc_short_event_t)) {
bytes             376 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             389 src/ftmod/ftmod_sangoma_boost/sangoma_boost_client.c 	int bytes = 0;
bytes             397 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             400 src/ftmod/ftmod_sangoma_boost/sangoma_boost_client.c 	if (bytes <= 0) {
bytes             408 src/ftmod/ftmod_sangoma_boost/sangoma_boost_client.c 	if (bytes == sizeof(sangomabc_short_event_t)) {
bytes             419 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            1115 src/ftmod/ftmod_zt/ftmod_zt.c 	ftdm_size_t bytes = *datalen;
bytes            1118 src/ftmod/ftmod_zt/ftmod_zt.c 		memset(data+bytes, 0, 2);
bytes            1119 src/ftmod/ftmod_zt/ftmod_zt.c 		bytes += 2;
bytes            1122 src/ftmod/ftmod_zt/ftmod_zt.c 	w = write(ftdmchan->sockfd, data, bytes);
bytes             182 src/m3ua_client.c 	int bytes = 0;
bytes             184 src/m3ua_client.c 	bytes = recvfrom(mcon->socket, &mcon->event, sizeof(mcon->event), MSG_DONTWAIT, 
bytes             187 src/m3ua_client.c 	if (bytes == sizeof(mcon->event) || bytes == (sizeof(mcon->event)-sizeof(uint32_t))) {
bytes             211 src/m3ua_client.c 			ftdm_log(FTDM_LOG_CRIT, "Invalid Event length from boost rxlen=%i evsz=%i\n", bytes, sizeof(mcon->event));
bytes             222 src/m3ua_client.c 	int bytes = 0;
bytes             224 src/m3ua_client.c 	bytes = recvfrom(mcon->socket, &mcon->event, sizeof(mcon->event), MSG_DONTWAIT, (struct sockaddr *) &mcon->local_addr, &fromlen);
bytes             226 src/m3ua_client.c 	if (bytes == sizeof(mcon->event) || bytes == (sizeof(mcon->event)-sizeof(uint32_t))) {
bytes             230 src/m3ua_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              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;