not              4293 src/ftdm_io.c  static void print_channels_by_flag(ftdm_stream_handle_t *stream, int32_t flagval, int not, int *count)
not              4320 src/ftdm_io.c  			if (not && !ftdm_test_flag(fchan, flag)) {
not              4326 src/ftdm_io.c  			} else if (!not && ftdm_test_flag(fchan, flag)) {
not              4340 src/ftdm_io.c  static void print_channels_by_state(ftdm_stream_handle_t *stream, ftdm_channel_state_t state, int not, int *count)
not              4366 src/ftdm_io.c  			if (not && (fchan->state != state)) {
not              4371 src/ftdm_io.c  			} else if (!not && (fchan->state == state)) {
not              4399 src/ftdm_io.c  	int not = 0;
not              4433 src/ftdm_io.c  			not = 1;
not              4445 src/ftdm_io.c  		print_channels_by_state(&stream, i, not, &count);
not              4446 src/ftdm_io.c  		stream.write_function(&stream, "\nTotal channels %s %s: %d\n", not ? "not in state" : "in state", ftdm_channel_state2str(i), count);
not              4455 src/ftdm_io.c  			not = 1;
not              4459 src/ftdm_io.c  		print_channels_by_flag(&stream, flagval, not, &count);
not              4460 src/ftdm_io.c  		stream.write_function(&stream, "\nTotal channels %s %d: %d\n", not ? "without flag" : "with flag", flagval, count);