Lines Matching defs:out_obj
290 union acpi_object *out_obj;
311 out_obj = output.pointer;
312 if (out_obj->type != ACPI_TYPE_BUFFER) {
314 out_obj->type);
319 if (out_obj->buffer.length != sizeof(struct ata_acpi_gtm)) {
321 out_obj->buffer.length);
325 memcpy(gtm, out_obj->buffer.pointer, sizeof(struct ata_acpi_gtm));
407 union acpi_object *out_obj;
412 out_obj = dev->gtf_cache;
423 out_obj = dev->gtf_cache = output.pointer;
442 if (out_obj->type != ACPI_TYPE_BUFFER) {
444 out_obj->type);
449 if (out_obj->buffer.length % REGS_PER_GTF) {
451 out_obj->buffer.length);
457 rc = out_obj->buffer.length / REGS_PER_GTF;
459 *gtf = (void *)out_obj->buffer.pointer;