Searched refs:byte_list (Results 1 – 8 of 8) sorted by relevance
/qemu/hw/acpi/ |
H A D | tpm.c | 126 uint8_t byte_list[2] = { 0xff, 0x01 }; /* functions 1-8 */ in tpm_build_ppi_acpi() local 129 aml_return(aml_buffer(sizeof(byte_list), in tpm_build_ppi_acpi() 130 byte_list))); in tpm_build_ppi_acpi() 424 uint8_t byte_list[1] = { 0x03 }; /* functions 1-2 supported */ in tpm_build_ppi_acpi() local 427 aml_return(aml_buffer(sizeof(byte_list), in tpm_build_ppi_acpi() 428 byte_list))); in tpm_build_ppi_acpi()
|
H A D | cxl.c | 50 uint8_t byte_list[1] = { 0x01 }; /* function 1 only */ in build_cxl_dsm_method() local 53 aml_return(aml_buffer(sizeof(byte_list), byte_list))); in build_cxl_dsm_method()
|
H A D | aml-build-stub.c | 100 Aml *aml_buffer(int buffer_size, uint8_t *byte_list) in aml_buffer() argument
|
H A D | nvdimm.c | 939 uint8_t byte_list[1]; in nvdimm_build_common_dsm() local 1052 byte_list[0] = 0 /* No function Supported */; in nvdimm_build_common_dsm() 1053 aml_append(ifctx, aml_return(aml_buffer(1, byte_list))); in nvdimm_build_common_dsm() 1057 byte_list[0] = NVDIMM_DSM_RET_STATUS_UNSUPPORT; in nvdimm_build_common_dsm() 1058 aml_append(unsupport, aml_return(aml_buffer(1, byte_list))); in nvdimm_build_common_dsm()
|
H A D | aml-build.c | 1165 Aml *aml_buffer(int buffer_size, uint8_t *byte_list) in aml_buffer() argument 1171 if (byte_list == NULL) { in aml_buffer() 1174 build_append_byte(var->buf, byte_list[i]); in aml_buffer()
|
/qemu/hw/pci-host/ |
H A D | gpex-acpi.c | 117 uint8_t byte_list[1] = {1}; in acpi_dsdt_add_pci_osc() local 118 buf = aml_buffer(1, byte_list); in acpi_dsdt_add_pci_osc() 123 byte_list[0] = 0; in acpi_dsdt_add_pci_osc() 124 buf = aml_buffer(1, byte_list); in acpi_dsdt_add_pci_osc()
|
/qemu/include/hw/acpi/ |
H A D | aml-build.h | 394 Aml *aml_buffer(int buffer_size, uint8_t *byte_list);
|
/qemu/hw/i386/ |
H A D | acpi-build.c | 367 uint8_t byte_list[1] = { 0 }; /* nothing supported yet */ in build_append_pci_dsm_func0_common() local 369 aml_append(ctx, aml_store(aml_buffer(1, byte_list), retvar)); in build_append_pci_dsm_func0_common()
|