Searched refs:syscall (Results 1 – 10 of 10) sorted by relevance
| /u-boot/examples/api/ |
| A D | glue.c | 81 if (!syscall(API_GETC, NULL, &c)) in ub_getc() 91 if (!syscall(API_TSTC, NULL, &t)) in ub_tstc() 99 syscall(API_PUTC, NULL, &c); in ub_putc() 104 syscall(API_PUTS, NULL, s); in ub_puts() 115 syscall(API_RESET, NULL); in ub_reset() 144 syscall(API_UDELAY, NULL, &usec); in ub_udelay() 187 if (!syscall(API_DEV_ENUM, NULL, di)) in ub_dev_enum() 201 if (!syscall(API_DEV_ENUM, NULL, di)) in ub_dev_enum() 223 if (!syscall(API_DEV_OPEN, &err, di)) in ub_dev_open() 237 if (!syscall(API_DEV_CLOSE, NULL, di)) in ub_dev_close() [all …]
|
| A D | crt0.S | 19 .globl syscall 20 syscall: label 37 .globl syscall 38 syscall: label 52 .globl syscall 53 .ent syscall 54 syscall: label 62 .end syscall
|
| A D | glue.h | 23 int syscall(int, int *, ...);
|
| A D | demo.c | 39 syscall_ptr = sig->syscall; in main() 206 printf(" sc entry\t= 0x%08x\n", (unsigned int)sig->syscall); in test_dump_sig()
|
| /u-boot/api/ |
| A D | README | 6 - there is a single entry point (syscall) to the API 8 - per current design the syscall is a C-callable function in the U-Boot 9 text, which might evolve into a real syscall using machine exception trap 15 - upon entry, the syscall dispatches the call to other (existing) U-Boot 44 - implements the single entry point (mimics UNIX syscall) 47 - entry point at the consumer side, allows to make syscall, mandatory 51 the syscall directly, but in a more friendly manner (a la libc calls),
|
| A D | api.c | 622 int syscall(int call, int *retval, ...) in syscall() function 689 sig->syscall = &syscall; in api_init() 693 debugf("syscall entry: 0x%lX\n", (unsigned long)sig->syscall); in api_init()
|
| /u-boot/arch/xtensa/include/asm/ |
| A D | ptrace.h | 98 unsigned long syscall; /* 56 */ member
|
| /u-boot/include/ |
| A D | api_public.h | 28 scp_t syscall; /* entry point to the API */ member
|
| /u-boot/Licenses/ |
| A D | README | 102 // SPDX-License-Identifier: GPL-2.0 WITH Linux-syscall-note 103 // SPDX-License-Identifier: GPL-2.0+ WITH Linux-syscall-note 130 // SPDX-License-Identifier: (GPL-2.0 WITH Linux-syscall-note) AND MIT
|
| /u-boot/ |
| A D | .azure-pipelines.yml | 456 # Needed for mount syscall (for guestmount as well)
|
Completed in 15 milliseconds