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));
408 union acpi_object *out_obj;
413 out_obj = dev->gtf_cache;
428 out_obj = dev->gtf_cache = output.pointer;
449 if (out_obj->type != ACPI_TYPE_BUFFER) {
451 out_obj->type);
456 if (out_obj->buffer.length % REGS_PER_GTF) {
458 out_obj->buffer.length);
464 rc = out_obj->buffer.length / REGS_PER_GTF;
466 *gtf = (void *)out_obj->buffer.pointer;