Lines Matching refs:firstaction
113 struct ACTION_RECORD *firstaction; member
1201 static int refresh_attributes(const struct ACTION_RECORD *firstaction) in refresh_attributes() argument
1216 for (action=firstaction; action; action=action->next) { in refresh_attributes()
2307 action->next = ctx->firstaction; in enqueue_action()
2308 if (ctx->firstaction) in enqueue_action()
2309 ctx->firstaction->prev = action; in enqueue_action()
2312 ctx->firstaction = action; in enqueue_action()
2322 err = refresh_attributes(ctx->firstaction); in enqueue_action()
2328 (int)ctx->firstaction->num); in enqueue_action()
2339 (int)ctx->firstaction->num, in enqueue_action()
2342 err = play_redos(ctx->vol, ctx->firstaction); in enqueue_action()
2353 while (ctx->firstaction) { in enqueue_action()
2354 action = ctx->firstaction->next; in enqueue_action()
2355 free(ctx->firstaction); in enqueue_action()
2356 ctx->firstaction = action; in enqueue_action()
2365 err = refresh_attributes(ctx->firstaction); in enqueue_action()
2370 (int)ctx->firstaction->num, in enqueue_action()
2372 err = play_redos(ctx->vol, ctx->firstaction); in enqueue_action()
3600 ctx->firstaction = (struct ACTION_RECORD*)NULL; in walkback()
3678 while (ctx->firstaction) { in walkback()
3681 action = ctx->firstaction->next; in walkback()
3682 free(ctx->firstaction); in walkback()
3683 ctx->firstaction = action; in walkback()
4009 ctx->firstaction = (struct ACTION_RECORD*)NULL; in walk()