Lines Matching refs:path
453 * acpi_handle_path: Return the object path of handle
472 * acpi_handle_printk: Print message with ACPI prefix and object path
478 * a message with ACPI prefix and object path. This function acquires
479 * the global namespace mutex to obtain an object path. In interrupt
480 * context, it shows the object path as <n/a>.
487 const char *path;
493 path = acpi_handle_path(handle);
494 printk("%sACPI: %s: %pV", level, path ? path : "<n/a>" , &vaf);
497 kfree(path);
503 * __acpi_handle_debug: pr_debug with ACPI prefix and object path
509 * prints a message with ACPI prefix and object path. This function
510 * acquires the global namespace mutex to obtain an object path. In
511 * interrupt context, it shows the object path as <n/a>.
519 const char *path;
525 path = acpi_handle_path(handle);
526 __dynamic_pr_debug(descriptor, "ACPI: %s: %pV", path ? path : "<n/a>", &vaf);
529 kfree(path);