Lines Matching defs:thread
403 * PARAMETERS: thread - Get current active state for this Thread
413 *thread)
417 if (!thread) {
422 thread->walk_state_list));
424 return (thread->walk_state_list);
432 * thread - Thread state object
442 struct acpi_thread_state *thread)
446 walk_state->next = thread->walk_state_list;
447 thread->walk_state_list = walk_state;
456 * PARAMETERS: thread - Current thread state
458 * RETURN: A walk_state object popped from the thread's stack
466 struct acpi_walk_state *acpi_ds_pop_walk_state(struct acpi_thread_state *thread)
472 walk_state = thread->walk_state_list;
478 thread->walk_state_list = walk_state->next;
497 * thread - Current thread state
512 *thread)
527 walk_state->thread = thread;
539 if (thread) {
540 acpi_ds_push_walk_state(walk_state, thread);