• Home
  • Raw
  • Download

Lines Matching refs:object

61 			      union acpi_operand_object *object,
146 if (walk_state->local_variables[index].object) { in acpi_ds_method_data_delete_all()
150 object)); in acpi_ds_method_data_delete_all()
162 if (walk_state->arguments[index].object) { in acpi_ds_method_data_delete_all()
165 walk_state->arguments[index].object)); in acpi_ds_method_data_delete_all()
316 union acpi_operand_object *object, in acpi_ds_method_data_set_value() argument
325 "NewObj %p Type %2.2X, Refs=%u [%s]\n", object, in acpi_ds_method_data_set_value()
326 type, object->common.reference_count, in acpi_ds_method_data_set_value()
327 acpi_ut_get_type_name(object->common.type))); in acpi_ds_method_data_set_value()
342 acpi_ut_add_reference(object); in acpi_ds_method_data_set_value()
346 node->object = object; in acpi_ds_method_data_set_value()
375 union acpi_operand_object *object; in acpi_ds_method_data_get_value() local
395 object = node->object; in acpi_ds_method_data_get_value()
399 if (!object) { in acpi_ds_method_data_get_value()
411 object = acpi_ut_create_integer_object((u64) 0); in acpi_ds_method_data_get_value()
412 if (!object) { in acpi_ds_method_data_get_value()
416 node->object = object; in acpi_ds_method_data_get_value()
451 *dest_desc = object; in acpi_ds_method_data_get_value()
452 acpi_ut_add_reference(object); in acpi_ds_method_data_get_value()
479 union acpi_operand_object *object; in acpi_ds_method_data_delete_value() local
492 object = acpi_ns_get_attached_object(node); in acpi_ds_method_data_delete_value()
499 node->object = NULL; in acpi_ds_method_data_delete_value()
501 if ((object) && in acpi_ds_method_data_delete_value()
502 (ACPI_GET_DESCRIPTOR_TYPE(object) == ACPI_DESC_TYPE_OPERAND)) { in acpi_ds_method_data_delete_value()
508 acpi_ut_remove_reference(object); in acpi_ds_method_data_delete_value()
632 object, in acpi_ds_store_object_to_local()
689 union acpi_operand_object *object; in acpi_ds_method_data_get_type() local
702 object = acpi_ns_get_attached_object(node); in acpi_ds_method_data_get_type()
703 if (!object) { in acpi_ds_method_data_get_type()
712 return_VALUE(object->type); in acpi_ds_method_data_get_type()