Lines Matching refs:object

25 			      union acpi_operand_object *object,
111 if (walk_state->local_variables[index].object) { in acpi_ds_method_data_delete_all()
115 object)); in acpi_ds_method_data_delete_all()
127 if (walk_state->arguments[index].object) { in acpi_ds_method_data_delete_all()
130 walk_state->arguments[index].object)); in acpi_ds_method_data_delete_all()
282 union acpi_operand_object *object, in acpi_ds_method_data_set_value() argument
291 "NewObj %p Type %2.2X, Refs=%u [%s]\n", object, in acpi_ds_method_data_set_value()
292 type, object->common.reference_count, in acpi_ds_method_data_set_value()
293 acpi_ut_get_type_name(object->common.type))); in acpi_ds_method_data_set_value()
308 acpi_ut_add_reference(object); in acpi_ds_method_data_set_value()
312 node->object = object; in acpi_ds_method_data_set_value()
341 union acpi_operand_object *object; in acpi_ds_method_data_get_value() local
361 object = node->object; in acpi_ds_method_data_get_value()
365 if (!object) { in acpi_ds_method_data_get_value()
377 object = acpi_ut_create_integer_object((u64) 0); in acpi_ds_method_data_get_value()
378 if (!object) { in acpi_ds_method_data_get_value()
382 node->object = object; in acpi_ds_method_data_get_value()
417 *dest_desc = object; in acpi_ds_method_data_get_value()
418 acpi_ut_add_reference(object); in acpi_ds_method_data_get_value()
445 union acpi_operand_object *object; in acpi_ds_method_data_delete_value() local
458 object = acpi_ns_get_attached_object(node); in acpi_ds_method_data_delete_value()
465 node->object = NULL; in acpi_ds_method_data_delete_value()
467 if ((object) && in acpi_ds_method_data_delete_value()
468 (ACPI_GET_DESCRIPTOR_TYPE(object) == ACPI_DESC_TYPE_OPERAND)) { in acpi_ds_method_data_delete_value()
474 acpi_ut_remove_reference(object); in acpi_ds_method_data_delete_value()
598 object, in acpi_ds_store_object_to_local()
657 union acpi_operand_object *object; in acpi_ds_method_data_get_type() local
670 object = acpi_ns_get_attached_object(node); in acpi_ds_method_data_get_type()
671 if (!object) { in acpi_ds_method_data_get_type()
680 return_VALUE(object->type); in acpi_ds_method_data_get_type()