action_stack_t 34 core/action_stack.c static action_stack_t* action_stacks = NULL; // List of active stacks action_stack_t 35 core/action_stack.c static action_stack_t* active_stack = NULL; // Currently executing stack action_stack_t 36 core/action_stack.c static action_stack_t* free_stacks = NULL; // Free list (for reuse of memory) action_stack_t 47 core/action_stack.c action_stack_t *p = action_stacks; action_stack_t 69 core/action_stack.c action_stack_t* stack = 0; action_stack_t 79 core/action_stack.c stack = (action_stack_t*)malloc(sizeof(action_stack_t)); action_stack_t 81 core/action_stack.c memset(stack,0,sizeof(action_stack_t)); action_stack_t 106 core/action_stack.c static void action_stack_finish(action_stack_t *p) action_stack_t 118 core/action_stack.c action_stack_t* prev = action_stacks; action_stack_t 145 core/action_stack.c action_stack_t *p = action_stacks; action_stack_t 473 core/action_stack.c action_stack_t *next = active_stack->next;