Lines Matching refs:firstaction
113 struct ACTION_RECORD *firstaction;
1201 static int refresh_attributes(const struct ACTION_RECORD *firstaction)
1216 for (action=firstaction; action; action=action->next) {
2305 /* enqueue ahead of list, firstaction is the oldest one */
2307 action->next = ctx->firstaction;
2308 if (ctx->firstaction)
2309 ctx->firstaction->prev = action;
2312 ctx->firstaction = action;
2322 err = refresh_attributes(ctx->firstaction);
2328 (int)ctx->firstaction->num);
2339 (int)ctx->firstaction->num,
2342 err = play_redos(ctx->vol, ctx->firstaction);
2353 while (ctx->firstaction) {
2354 action = ctx->firstaction->next;
2355 free(ctx->firstaction);
2356 ctx->firstaction = action;
2365 err = refresh_attributes(ctx->firstaction);
2370 (int)ctx->firstaction->num,
2372 err = play_redos(ctx->vol, ctx->firstaction);
3600 ctx->firstaction = (struct ACTION_RECORD*)NULL;
3678 while (ctx->firstaction) {
3681 action = ctx->firstaction->next;
3682 free(ctx->firstaction);
3683 ctx->firstaction = action;
4009 ctx->firstaction = (struct ACTION_RECORD*)NULL;