Lines Matching defs:op

33 		      u8 * aml_op_start, union acpi_parse_object *op);
41 * op - Current Op
51 u8 * aml_op_start, union acpi_parse_object *op)
60 op->common.aml_op_name));
62 switch (op->common.aml_opcode) {
74 op);
81 op,
98 switch (op->common.aml_opcode) {
123 acpi_ps_append_arg(op, arg);
136 switch (op->common.aml_opcode) {
144 op->named.data = walk_state->parser_state.aml;
145 op->named.length = (u32)
160 if ((op->common.parent) &&
161 (op->common.parent->common.aml_opcode ==
174 op->named.data = aml_op_start;
175 op->named.length = (u32)
224 union acpi_parse_object *op = NULL; /* current op */
249 if ((parser_state->scope->parse_scope.op) &&
250 ((parser_state->scope->parse_scope.op->common.
252 || (parser_state->scope->parse_scope.op->common.
261 walk_state->op = NULL;
279 acpi_ps_next_parse_state(walk_state, op,
283 acpi_ps_pop_scope(parser_state, &op,
287 "Popped scope, Op=%p\n", op));
290 /* We were in the middle of an op */
292 op = walk_state->prev_op;
300 while ((parser_state->aml < parser_state->aml_end) || (op)) {
304 if (!op) {
306 acpi_ps_create_op(walk_state, aml_op_start, &op);
334 acpi_ps_complete_op(walk_state, &op,
343 * If the scope/device op fails to parse, skip the body of
344 * the scope op because the parse failure indicates that
371 acpi_ex_start_trace_opcode(op, walk_state);
380 switch (op->common.aml_opcode) {
401 acpi_ps_get_arguments(walk_state, aml_op_start, op);
404 acpi_ps_complete_op(walk_state, &op,
415 * If the if/while op fails to parse, we will skip parsing
416 * the body of the op.
442 op = NULL;
458 status = acpi_ps_push_scope(parser_state, op,
463 acpi_ps_complete_op(walk_state, &op,
472 op = NULL;
481 acpi_ps_get_opcode_info(op->common.aml_opcode);
483 if (op->common.aml_opcode == AML_REGION_OP ||
484 op->common.aml_opcode == AML_DATA_REGION_OP) {
493 op->named.length =
494 (u32) (parser_state->aml - op->named.data);
505 op->named.length =
506 (u32) (parser_state->aml - op->named.data);
509 if (op->common.aml_opcode == AML_BANK_FIELD_OP) {
515 op->named.length =
516 (u32) (parser_state->aml - op->named.data);
519 /* This op complete, notify the dispatcher */
522 walk_state->op = op;
523 walk_state->opcode = op->common.aml_opcode;
527 acpi_ps_next_parse_state(walk_state, op, status);
552 status = acpi_ps_complete_op(walk_state, &op, status);
559 status = acpi_ps_complete_final_op(walk_state, op, status);