Lines Matching refs:handle
1170 acpi_handle_debug(adev->handle, in acpi_hotplug_schedule()
1200 acpi_os_create_semaphore(u32 max_units, u32 initial_units, acpi_handle * handle) in acpi_os_create_semaphore() argument
1210 *handle = (acpi_handle *) sem; in acpi_os_create_semaphore()
1213 *handle, initial_units)); in acpi_os_create_semaphore()
1225 acpi_status acpi_os_delete_semaphore(acpi_handle handle) in acpi_os_delete_semaphore() argument
1227 struct semaphore *sem = (struct semaphore *)handle; in acpi_os_delete_semaphore()
1232 ACPI_DEBUG_PRINT((ACPI_DB_MUTEX, "Deleting semaphore[%p].\n", handle)); in acpi_os_delete_semaphore()
1244 acpi_status acpi_os_wait_semaphore(acpi_handle handle, u32 units, u16 timeout) in acpi_os_wait_semaphore() argument
1247 struct semaphore *sem = (struct semaphore *)handle; in acpi_os_wait_semaphore()
1261 handle, units, timeout)); in acpi_os_wait_semaphore()
1275 handle, units, timeout, in acpi_os_wait_semaphore()
1279 "Acquired semaphore[%p|%d|%d]", handle, in acpi_os_wait_semaphore()
1289 acpi_status acpi_os_signal_semaphore(acpi_handle handle, u32 units) in acpi_os_signal_semaphore() argument
1291 struct semaphore *sem = (struct semaphore *)handle; in acpi_os_signal_semaphore()
1302 ACPI_DEBUG_PRINT((ACPI_DB_MUTEX, "Signaling semaphore[%p|%d]\n", handle, in acpi_os_signal_semaphore()
1510 void acpi_os_delete_lock(acpi_spinlock handle) in acpi_os_delete_lock() argument
1512 ACPI_FREE(handle); in acpi_os_delete_lock()