Lines Matching refs:op
68 union acpi_parse_object *op, in acpi_ps_get_arg() argument
80 op_info = acpi_ps_get_opcode_info (op->common.aml_opcode); in acpi_ps_get_arg()
97 arg = op->common.value.arg; in acpi_ps_get_arg()
122 union acpi_parse_object *op, in acpi_ps_append_arg() argument
132 if (!op) { in acpi_ps_append_arg()
138 op_info = acpi_ps_get_opcode_info (op->common.aml_opcode); in acpi_ps_append_arg()
143 op->common.aml_opcode)); in acpi_ps_append_arg()
158 if (op->common.value.arg) { in acpi_ps_append_arg()
161 prev_arg = op->common.value.arg; in acpi_ps_append_arg()
171 op->common.value.arg = arg; in acpi_ps_append_arg()
178 arg->common.parent = op; in acpi_ps_append_arg()
198 union acpi_parse_object *op) in acpi_ps_get_child() argument
206 switch (op->common.aml_opcode) { in acpi_ps_get_child()
213 child = acpi_ps_get_arg (op, 0); in acpi_ps_get_child()
224 child = acpi_ps_get_arg (op, 1); in acpi_ps_get_child()
231 child = acpi_ps_get_arg (op, 2); in acpi_ps_get_child()
238 child = acpi_ps_get_arg (op, 3); in acpi_ps_get_child()
268 union acpi_parse_object *op) in acpi_ps_get_depth_next() argument
278 if (!op) { in acpi_ps_get_depth_next()
284 next = acpi_ps_get_arg (op, 0); in acpi_ps_get_depth_next()
291 next = op->common.next; in acpi_ps_get_depth_next()
298 parent = op->common.parent; in acpi_ps_get_depth_next()
302 while (arg && (arg != origin) && (arg != op)) { in acpi_ps_get_depth_next()
318 op = parent; in acpi_ps_get_depth_next()