Lines Matching refs:child_node
196 struct acpi_namespace_node *child_node;
224 child_node = parent_node->child;
226 if (!child_node) {
231 while (child_node->peer) {
232 child_node = child_node->peer;
235 child_node->peer = node;
320 struct acpi_namespace_node *child_node = NULL;
345 child_node = acpi_ns_get_next_node(parent_node, child_node);
346 if (child_node) {
350 acpi_ns_detach_object(child_node);
354 if (child_node->child) {
360 parent_node = child_node;
361 child_node = NULL;
378 child_node = parent_node;
408 struct acpi_namespace_node *child_node;
429 child_node = NULL;
438 * Get the next child of this parent node. When child_node is NULL,
441 child_node = acpi_ns_get_next_node(parent_node, child_node);
449 if (child_node) {
450 if (child_node->owner_id == owner_id) {
454 acpi_ns_detach_object(child_node);
459 if (child_node->child) {
465 parent_node = child_node;
466 child_node = NULL;
467 } else if (child_node->owner_id == owner_id) {
468 deletion_node = child_node;
484 child_node = parent_node;