Lines Matching defs:how_long
110 * PARAMETERS: how_long - The amount of time to stall,
123 acpi_status acpi_ex_system_do_stall(u32 how_long)
129 if (how_long > 255) { /* 255 microseconds */
137 "Time parameter is too large (%u)", how_long));
140 acpi_os_stall(how_long);
150 * PARAMETERS: how_long - The amount of time to sleep,
159 acpi_status acpi_ex_system_do_sleep(u64 how_long)
171 if (how_long > ACPI_MAX_SLEEP) {
172 how_long = ACPI_MAX_SLEEP;
175 acpi_os_sleep(how_long);