Lines Matching refs:path
485 * acpi_handle_path: Return the object path of handle
504 * acpi_handle_printk: Print message with ACPI prefix and object path
510 * a message with ACPI prefix and object path. This function acquires
511 * the global namespace mutex to obtain an object path. In interrupt
512 * context, it shows the object path as <n/a>.
519 const char *path;
525 path = acpi_handle_path(handle);
526 printk("%sACPI: %s: %pV", level, path ? path : "<n/a>" , &vaf);
529 kfree(path);
535 * __acpi_handle_debug: pr_debug with ACPI prefix and object path
541 * prints a message with ACPI prefix and object path. This function
542 * acquires the global namespace mutex to obtain an object path. In
543 * interrupt context, it shows the object path as <n/a>.
551 const char *path;
557 path = acpi_handle_path(handle);
558 __dynamic_pr_debug(descriptor, "ACPI: %s: %pV", path ? path : "<n/a>", &vaf);
561 kfree(path);