Searched refs:RTO (Results 1 - 12 of 12) sorted by relevance

/external/chromium_org/third_party/usrsctp/usrsctplib/netinet/
H A Dsctp_timer.c403 if (net->RTO == 0) {
404 net->RTO = stcb->asoc.minrto;
406 net->RTO <<= 1;
407 if (net->RTO > stcb->asoc.maxrto) {
408 net->RTO = stcb->asoc.maxrto;
516 * to account for the RTO. We just let the lower seconds be
838 /* send a immediate HB if our RTO is stale */
849 if ((ms_goneby > net->RTO) || (net->RTO == 0)) {
851 * no recent feed back in an RTO o
[all...]
H A Dsctp_indata.c2739 * update RTO too ?
2743 tp1->whoTo->RTO =
3359 * this guy had a RTO calculation pending on
3697 /* update RTO too? */
3700 tp1->whoTo->RTO =
3870 net->RTO = (net->lastsa >> SCTP_RTT_SHIFT) + net->lastsv;
3871 if (net->RTO < stcb->asoc.minrto) {
3872 net->RTO = stcb->asoc.minrto;
3874 if (net->RTO > stcb->asoc.maxrto) {
3875 net->RTO
[all...]
H A Dsctputil.c2010 /* Here we use the RTO timer */
2018 if (net->RTO == 0) {
2021 rto_val = net->RTO;
2035 if (net->RTO == 0) {
2038 to_ticks = MSEC_TO_TICKS(net->RTO);
2053 /* Here we use the RTO of the destination. */
2057 if (net->RTO == 0) {
2060 to_ticks = MSEC_TO_TICKS(net->RTO);
2066 * the net is used here so that we can add in the RTO. Even
2080 if (net->RTO
[all...]
H A Dsctp_asconf.c1046 SCTPDBG(SCTP_DEBUG_ASCONF1, "net_immediate_retrans: RTO is %d\n", net->RTO);
1398 net->RTO = 0;
2231 net->RTO = 0;
H A Dsctp_structs.h316 /* smoothed average things for RTT and RTO itself */
320 unsigned int RTO; member in struct:sctp_nets
1110 unsigned int initial_init_rto_max; /* initial RTO for INIT's */
1111 unsigned int initial_rto; /* initial send RTO */
1112 unsigned int minrto; /* per assoc RTO-MIN */
1113 unsigned int maxrto; /* per assoc RTO-MAX */
H A Dsctp_input.c546 /* calculate the RTO */
547 net->RTO = sctp_calculate_rto(stcb, asoc, net, &asoc->time_entered, sctp_align_safe_nocopy,
693 /* Now lets do a RTO with this */
694 r_net->RTO = sctp_calculate_rto(stcb, &stcb->asoc, r_net, &tv, sctp_align_safe_nocopy,
1431 /* reset the RTO calc */
1669 net->RTO = sctp_calculate_rto(stcb, asoc, net,
2411 (*netp)->RTO = sctp_calculate_rto(stcb, asoc, *netp,
3042 /* update RTO */
3046 net->RTO = sctp_calculate_rto(stcb, asoc, net,
3414 * this guy had a RTO calculatio
[all...]
H A Dsctp_cc_functions.c1197 net->RTO <<= 1;
2377 net->RTO <<= 1;
H A Dsctp_sysctl.c610 xraddr.rto = net->RTO;
H A Dsctp_usrreq.c3202 paddri->spinfo_rto = net->RTO;
3291 sstat->sstat_primary.spinfo_rto = net->RTO;
H A Dsctp_pcb.c4612 net->RTO = 0;
/external/qemu/disas/
H A Dppc.c750 #define RTO RSO
4534 { "tlbsx", XRC(31,914,0), X_MASK, PPC403|BOOKE, { RTO, RA, RB } },
4535 { "tlbsx.", XRC(31,914,1), X_MASK, PPC403|BOOKE, { RTO, RA, RB } },
4536 { "tlbsxe", XRC(31,915,0), X_MASK, BOOKE64, { RTO, RA, RB } },
4537 { "tlbsxe.", XRC(31,915,1), X_MASK, BOOKE64, { RTO, RA, RB } },
746 #define RTO macro
/external/chromium_org/net/quic/
H A Dquic_connection_test.cc2290 TEST_P(QuicConnectionTest, RTO) {
2491 // Force retransmission due to RTO.
2535 // Make sure that RTO is not started when the packet is queued.
2538 // Test that RTO is started once we write to the socket.
2555 // Advance the time right before the RTO, then receive an ack for the first
2556 // packet to delay the RTO.
2564 // Move forward past the original RTO and ensure the RTO is still pending.
2575 // The new retransmitted sequence number should set the RTO to a larger value
3432 // Retransmit due to RTO
[all...]

Completed in 499 milliseconds