Searched defs:setup (Results 1 - 2 of 2) sorted by relevance

/systemd/src/boot/efi/
H A Dlinux.c66 typedef VOID(*handover_f)(VOID *image, EFI_SYSTEM_TABLE *table, struct SetupHeader *setup);
67 static inline VOID linux_efi_handover(EFI_HANDLE image, struct SetupHeader *setup) { argument
71 handover = (handover_f)((UINTN)setup->code32_start + 512 + setup->handover_offset);
72 handover(image, ST, setup);
75 typedef VOID(*handover_f)(VOID *image, EFI_SYSTEM_TABLE *table, struct SetupHeader *setup) __attribute__((regparm(0)));
76 static inline VOID linux_efi_handover(EFI_HANDLE image, struct SetupHeader *setup) { argument
79 handover = (handover_f)((UINTN)setup->code32_start + setup->handover_offset);
80 handover(image, ST, setup);
[all...]
/systemd/src/journal/
H A Dtest-journal-interleaving.c152 static void test_skip(void (*setup)(void)) { argument
160 setup();

Completed in 16 milliseconds