Lines Matching refs:systab
1615 struct efi_configuration_table *this = &systab.tables[i]; in efi_remove_configuration_table()
1616 struct efi_configuration_table *next = &systab.tables[i + 1]; in efi_remove_configuration_table()
1617 struct efi_configuration_table *end = &systab.tables[systab.nr_tables]; in efi_remove_configuration_table()
1620 systab.nr_tables--; in efi_remove_configuration_table()
1644 for (i = 0; i < systab.nr_tables; i++) { in efi_install_configuration_table()
1645 if (!guidcmp(guid, &systab.tables[i].guid)) { in efi_install_configuration_table()
1647 systab.tables[i].table = table; in efi_install_configuration_table()
1662 guidcpy(&systab.tables[i].guid, guid); in efi_install_configuration_table()
1663 systab.tables[i].table = table; in efi_install_configuration_table()
1664 systab.nr_tables = i + 1; in efi_install_configuration_table()
1668 efi_update_table_header_crc32(&systab.hdr); in efi_install_configuration_table()
1745 info->system_table = &systab; in efi_setup_loaded_image()
2069 info->system_table = &systab; in efi_load_image()
2135 if (!systab.boottime) in efi_exit_boot_services()
2185 systab.con_in_handle = NULL; in efi_exit_boot_services()
2186 systab.con_in = NULL; in efi_exit_boot_services()
2187 systab.con_out_handle = NULL; in efi_exit_boot_services()
2188 systab.con_out = NULL; in efi_exit_boot_services()
2189 systab.stderr_handle = NULL; in efi_exit_boot_services()
2190 systab.std_err = NULL; in efi_exit_boot_services()
2191 systab.boottime = NULL; in efi_exit_boot_services()
2194 efi_update_table_header_crc32(&systab.hdr); in efi_exit_boot_services()
3044 ret = EFI_CALL(image_obj->entry(image_handle, &systab)); in efi_start_image()
3052 return EFI_CALL(systab.boottime->exit(image_handle, ret, 0, NULL)); in efi_start_image()
3756 struct efi_system_table __efi_runtime_data systab = { variable
3782 (void **)&systab.tables); in efi_initialize_system_table()
3788 systab.con_in = &efi_con_in; in efi_initialize_system_table()
3789 systab.con_out = &efi_con_out; in efi_initialize_system_table()
3790 systab.std_err = &efi_con_out; in efi_initialize_system_table()
3791 systab.boottime = &efi_boot_services; in efi_initialize_system_table()
3794 efi_update_table_header_crc32(&systab.hdr); in efi_initialize_system_table()