Lines Matching refs:thread
447 *thread) in acpi_ds_get_current_walk_state()
451 if (!thread) { in acpi_ds_get_current_walk_state()
456 thread->walk_state_list)); in acpi_ds_get_current_walk_state()
458 return (thread->walk_state_list); in acpi_ds_get_current_walk_state()
476 struct acpi_thread_state *thread) in acpi_ds_push_walk_state() argument
480 walk_state->next = thread->walk_state_list; in acpi_ds_push_walk_state()
481 thread->walk_state_list = walk_state; in acpi_ds_push_walk_state()
500 struct acpi_walk_state *acpi_ds_pop_walk_state(struct acpi_thread_state *thread) in acpi_ds_pop_walk_state() argument
506 walk_state = thread->walk_state_list; in acpi_ds_pop_walk_state()
512 thread->walk_state_list = walk_state->next; in acpi_ds_pop_walk_state()
546 *thread) in acpi_ds_create_walk_state()
561 walk_state->thread = thread; in acpi_ds_create_walk_state()
573 if (thread) { in acpi_ds_create_walk_state()
574 acpi_ds_push_walk_state(walk_state, thread); in acpi_ds_create_walk_state()