Lines Matching refs:lt_stackp
84 self unsigned int lt_stackp; variable
193 this->cause = self->lt_stackp > 0 ?
194 self->lt_cause[self->lt_stackp - 1] : "";
195 this->priority = self->lt_stackp > 0 ?
196 self->lt_prio[self->lt_stackp - 1] : 0;
355 this->cause = self->lt_stackp > 0 ?
356 self->lt_cause[self->lt_stackp - 1] : "";
357 this->priority = self->lt_stackp > 0 ?
358 self->lt_prio[self->lt_stackp - 1] : 0;
377 this->cause = self->lt_stackp > 0 ?
378 self->lt_cause[self->lt_stackp - 1] : "";
379 this->priority = self->lt_stackp > 0 ?
380 self->lt_prio[self->lt_stackp - 1] : 0;
398 TRACE_FILTER_COND(self->lt_stackp == 0 || \
399 (self->lt_stackp < MAX_TAG && \
400 self->lt_prio[self->lt_stackp - 1] <= priority) ) \
402 self->lt_prio[self->lt_stackp] = priority; \
403 self->lt_cause[self->lt_stackp] = cause; \
404 ++self->lt_stackp; \
407 TRACE_FILTER_COND(self->lt_stackp > 0 && \
408 self->lt_cause[self->lt_stackp - 1] == cause) \
410 --self->lt_stackp; \
411 self->lt_cause[self->lt_stackp] = NULL; \