Lines Matching refs:abort
46 if ( tx_el->tx_s.abort.abort_time < tx_el->tx_s.end_tx_time ) { in f_tx_end()
194 TxEndt = BS_MIN(tx_s->end_tx_time, tx_s->abort.abort_time); in tx_schedule_next_event()
197 if ( NextTime >= tx_s->abort.recheck_time ){ in tx_schedule_next_event()
198 fq_add(tx_s->abort.recheck_time, Tx_Abort_Reeval, d); in tx_schedule_next_event()
230 if (pick_and_validate_abort(d, &(tx_s->abort), "Tx")) in f_tx_abort_reeval()
279 bs_time_t end_time = BS_MIN((rx_status->scan_end + 1), rx_status->rx_s.abort.recheck_time); in rx_enqueue_search_reeval()
305 if ( current_time >= rx_st->rx_s.abort.recheck_time ) { in rx_possible_abort_recheck()
306 if ( pick_and_validate_abort(d, &(rx_a[d].rx_s.abort), "Rx") != 0 ){ in rx_possible_abort_recheck()
309 if (scanning && (rx_st->rx_s.abort.abort_time < rx_st->scan_end) ) { in rx_possible_abort_recheck()
310 rx_st->scan_end = rx_st->rx_s.abort.abort_time - 1; in rx_possible_abort_recheck()
398 if ( rx_status->rx_s.abort.abort_time != current_time ) { //if we are not aborting in rx_scan_ended()
456 bs_time_t next_time = BS_MIN(rx_status->sync_start, rx_status->rx_s.abort.recheck_time); in f_rx_found()
498 bs_time_t next_time = BS_MIN(rx_a[d].sync_start,rx_a[d].rx_s.abort.recheck_time); in f_rx_sync()
554 if (pick_and_validate_abort_Rxcont(d, &(rx_a[d].rx_s.abort)) != 0 ){ in f_rx_sync()
599 ( current_time >= rx_a[d].rx_s.abort.abort_time ) ) { in f_rx_header()
626 || (current_time >= rx_a[d].rx_s.abort.abort_time)) { in f_rx_payload()
687 if ( current_time >= req->abort.recheck_time ) { in f_cca_meas()
688 if ( pick_and_validate_abort(d, &(req->abort), "CCA") != 0 ) { in f_cca_meas()
691 if ((req->abort.abort_time < cca_s->scan_end) ) { in f_cca_meas()
692 cca_s->scan_end = req->abort.abort_time; in f_cca_meas()
748 bs_time_t next_time = BS_MIN(cca_s->scan_end, req->abort.recheck_time); in f_cca_meas()
779 static void check_valid_abort(p2G4_abort_t *abort, bs_time_t start_time, const char* type, uint d){ in check_valid_abort() argument
780 if (current_time >= abort->abort_time){ in check_valid_abort()
782 d, type, abort->abort_time); in check_valid_abort()
784 if (current_time >= abort->recheck_time){ in check_valid_abort()
786 d, type, abort->recheck_time); in check_valid_abort()
789 if (start_time > abort->abort_time) { in check_valid_abort()
791 d, type, type, start_time, abort->abort_time); in check_valid_abort()
793 if (start_time > abort->recheck_time) { in check_valid_abort()
795 d, type, type, start_time, abort->recheck_time); in check_valid_abort()
819 check_valid_abort(&tx_s->abort, tx_s->start_tx_time , "Tx", d); in prepare_tx_common()
827 tx_s->abort.abort_time, tx_s->abort.recheck_time); in prepare_tx_common()
872 check_valid_abort(&rxv2_s->abort, rxv2_s->start_time , "Rx", d); in prepare_rx_common()
875 d, rxv2_s->start_time, rxv2_s->abort.abort_time, rxv2_s->abort.recheck_time); in prepare_rx_common()
899 if ( rxv2_s->abort.abort_time < rx_status->scan_end ) { in prepare_rx_common()
900 rx_status->scan_end = rxv2_s->abort.abort_time - 1; in prepare_rx_common()
976 check_valid_abort(&cca_req->abort, cca_req->start_time , "CCA", d); in prepare_CCA()
994 …ime, cca_req->scan_period, cca_req->scan_duration, cca_req->abort.abort_time, cca_req->abort.reche… in prepare_CCA()