Lines Matching refs:t
169 const struct fscache_transition *t; in fscache_object_sm_dispatcher() local
192 for (t = object->oob_table; t->events; t++) { in fscache_object_sm_dispatcher()
193 if (events & t->events) { in fscache_object_sm_dispatcher()
194 state = t->transit_to; in fscache_object_sm_dispatcher()
196 event = fls(events & t->events) - 1; in fscache_object_sm_dispatcher()
208 for (t = state->transitions; t->events; t++) { in fscache_object_sm_dispatcher()
209 if (events & t->events) { in fscache_object_sm_dispatcher()
210 new_state = t->transit_to; in fscache_object_sm_dispatcher()
211 event = fls(events & t->events) - 1; in fscache_object_sm_dispatcher()
261 for (t = state->transitions; t->events; t++) in fscache_object_sm_dispatcher()
262 event_mask |= t->events; in fscache_object_sm_dispatcher()
305 const struct fscache_transition *t; in fscache_object_init() local
333 for (t = object->oob_table; t->events; t++) in fscache_object_init()
334 object->oob_event_mask |= t->events; in fscache_object_init()
336 for (t = object->state->transitions; t->events; t++) in fscache_object_init()
337 object->event_mask |= t->events; in fscache_object_init()