Lines Matching defs:out
830 struct acpi_buffer out = { ACPI_ALLOCATE_BUFFER, NULL };
836 status = wmab_execute(&args, &out);
840 obj = (union acpi_object *) out.pointer;
845 kfree(out.pointer);
852 kfree(out.pointer);
882 struct acpi_buffer out = { ACPI_ALLOCATE_BUFFER, NULL };
902 status = wmab_execute(&args, &out);
906 obj = out.pointer;
912 goto out;
923 * But we need to kfree(out.pointer) if next wmab_execute fail.
925 status = wmab_execute(&args, &out);
927 goto out;
929 obj = (union acpi_object *) out.pointer;
935 goto out;
950 out:
951 kfree(out.pointer);
967 WMI_execute_u32(u32 method_id, u32 in, u32 *out)
991 if (out)
992 *out = tmp;
1283 struct acpi_buffer out = {ACPI_ALLOCATE_BUFFER, NULL};
1288 status = wmi_query_block(WMID_GUID2, 0, &out);
1292 obj = (union acpi_object *) out.pointer;
1301 kfree(out.pointer);
1305 kfree(out.pointer);
1320 kfree(out.pointer);
1337 WMI_gaming_execute_u64(u32 method_id, u64 in, u64 *out)
1362 if (out)
1363 *out = tmp;
2202 struct acpi_buffer out = {ACPI_ALLOCATE_BUFFER, NULL};
2207 status = wmi_query_block(WMID_GUID2, 0, &out);
2211 obj = (union acpi_object *) out.pointer;
2222 kfree(out.pointer);