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()
281 union acpi_operand_object *object, in acpi_ds_method_data_set_value() argument
290 "NewObj %p Type %2.2X, Refs=%u [%s]\n", object, in acpi_ds_method_data_set_value()
291 type, object->common.reference_count, in acpi_ds_method_data_set_value()
292 acpi_ut_get_type_name(object->common.type))); in acpi_ds_method_data_set_value()
307 acpi_ut_add_reference(object); in acpi_ds_method_data_set_value()
311 node->object = object; in acpi_ds_method_data_set_value()
340 union acpi_operand_object *object; in acpi_ds_method_data_get_value() local
360 object = node->object; in acpi_ds_method_data_get_value()
364 if (!object) { in acpi_ds_method_data_get_value()
376 object = acpi_ut_create_integer_object((u64) 0); in acpi_ds_method_data_get_value()
377 if (!object) { in acpi_ds_method_data_get_value()
381 node->object = object; in acpi_ds_method_data_get_value()
416 *dest_desc = object; in acpi_ds_method_data_get_value()
417 acpi_ut_add_reference(object); in acpi_ds_method_data_get_value()
444 union acpi_operand_object *object; in acpi_ds_method_data_delete_value() local
457 object = acpi_ns_get_attached_object(node); in acpi_ds_method_data_delete_value()
464 node->object = NULL; in acpi_ds_method_data_delete_value()
466 if ((object) && in acpi_ds_method_data_delete_value()
467 (ACPI_GET_DESCRIPTOR_TYPE(object) == ACPI_DESC_TYPE_OPERAND)) { in acpi_ds_method_data_delete_value()
473 acpi_ut_remove_reference(object); in acpi_ds_method_data_delete_value()
597 object, in acpi_ds_store_object_to_local()
656 union acpi_operand_object *object; in acpi_ds_method_data_get_type() local
669 object = acpi_ns_get_attached_object(node); in acpi_ds_method_data_get_type()
670 if (!object) { in acpi_ds_method_data_get_type()
679 return_VALUE(object->type); in acpi_ds_method_data_get_type()