Home | History | Annotate | Download | only in server

Lines Matching refs:cur

68     int32_t* cur = &(*out)[ofs];
69 cur[STATS_SUCCESSES] = successes;
70 cur[STATS_ERRORS] = errors;
71 cur[STATS_TIMEOUTS] = timeouts;
72 cur[STATS_INTERNAL_ERRORS] = internal_errors;
73 cur[STATS_RTT_AVG] = rtt_avg;
74 cur[STATS_LAST_SAMPLE_TIME] = last_sample_time;
75 cur[STATS_USABLE] = usable;
83 const int32_t* cur = &in[ofs];
84 successes = cur[STATS_SUCCESSES];
85 errors = cur[STATS_ERRORS];
86 timeouts = cur[STATS_TIMEOUTS];
87 internal_errors = cur[STATS_INTERNAL_ERRORS];
88 rtt_avg = cur[STATS_RTT_AVG];
89 last_sample_time = cur[STATS_LAST_SAMPLE_TIME];
90 usable = cur[STATS_USABLE];