/Zephyr-latest/lib/libc/minimal/include/ |
D | stdio.h | 37 int __printf_like(1, 2) printf(const char *ZRESTRICT format, ...); 38 int __printf_like(3, 4) snprintf(char *ZRESTRICT str, size_t len, 39 const char *ZRESTRICT format, ...); 40 int __printf_like(2, 3) sprintf(char *ZRESTRICT str, 41 const char *ZRESTRICT format, ...); 42 int __printf_like(2, 3) fprintf(FILE *ZRESTRICT stream, 43 const char *ZRESTRICT format, ...); 46 int __printf_like(1, 0) vprintf(const char *ZRESTRICT format, va_list list); 47 int __printf_like(3, 0) vsnprintf(char *ZRESTRICT str, size_t len, 48 const char *ZRESTRICT format, [all …]
|
D | string.h | 19 extern char *strcpy(char *ZRESTRICT d, const char *ZRESTRICT s); 22 extern char *strncpy(char *ZRESTRICT d, const char *ZRESTRICT s, 31 extern char *strcat(char *ZRESTRICT dest, 32 const char *ZRESTRICT src); 33 extern char *strncat(char *ZRESTRICT dest, const char *ZRESTRICT src, 42 extern void *memcpy(void *ZRESTRICT d, const void *ZRESTRICT s,
|
D | time.h | 56 struct tm *gmtime_r(const time_t *ZRESTRICT timep, 57 struct tm *ZRESTRICT result); 61 char *asctime_r(const struct tm *ZRESTRICT tp, char *ZRESTRICT buf); 63 struct tm *localtime_r(const time_t *ZRESTRICT timer, struct tm *ZRESTRICT result);
|
/Zephyr-latest/lib/libc/minimal/source/stdout/ |
D | fprintf.c | 15 int fprintf(FILE *ZRESTRICT stream, const char *ZRESTRICT format, ...) in fprintf() 27 int vfprintf(FILE *ZRESTRICT stream, const char *ZRESTRICT format, in vfprintf() 37 int printf(const char *ZRESTRICT format, ...) in printf() 49 int vprintf(const char *ZRESTRICT format, va_list vargs) in vprintf()
|
D | sprintf.c | 28 int snprintf(char *ZRESTRICT str, size_t len, in snprintf() 29 const char *ZRESTRICT format, ...) in snprintf() 52 int sprintf(char *ZRESTRICT str, const char *ZRESTRICT format, ...) in sprintf() 70 int vsnprintf(char *ZRESTRICT str, size_t len, in vsnprintf() 71 const char *ZRESTRICT format, va_list vargs) in vsnprintf() 90 int vsprintf(char *ZRESTRICT str, const char *ZRESTRICT format, in vsprintf()
|
D | stdout_console.c | 46 int fputs(const char *ZRESTRICT s, FILE *ZRESTRICT stream) in fputs() 68 size_t z_impl_zephyr_fwrite(const void *ZRESTRICT ptr, size_t size, in z_impl_zephyr_fwrite() 69 size_t nitems, FILE *ZRESTRICT stream) in z_impl_zephyr_fwrite() 99 static inline size_t z_vrfy_zephyr_fwrite(const void *ZRESTRICT ptr, in z_vrfy_zephyr_fwrite() 101 FILE *ZRESTRICT stream) in z_vrfy_zephyr_fwrite() 110 size_t fwrite(const void *ZRESTRICT ptr, size_t size, size_t nitems, in fwrite() 111 FILE *ZRESTRICT stream) in fwrite()
|
/Zephyr-latest/include/zephyr/posix/ |
D | signal.h | 126 int sigaction(int sig, const struct sigaction *ZRESTRICT act, struct sigaction *ZRESTRICT oact); 130 int sigwait(const sigset_t *ZRESTRICT set, int *ZRESTRICT signo); 138 int sigprocmask(int how, const sigset_t *ZRESTRICT set, sigset_t *ZRESTRICT oset); 140 int pthread_sigmask(int how, const sigset_t *ZRESTRICT set, sigset_t *ZRESTRICT oset);
|
D | semaphore.h | 19 int sem_getvalue(sem_t *ZRESTRICT semaphore, int *ZRESTRICT value); 22 int sem_timedwait(sem_t *ZRESTRICT semaphore, struct timespec *ZRESTRICT abstime);
|
D | pthread.h | 132 int pthread_condattr_getclock(const pthread_condattr_t *ZRESTRICT att, 133 clockid_t *ZRESTRICT clock_id); 337 int pthread_barrierattr_getpshared(const pthread_barrierattr_t *ZRESTRICT attr, 338 int *ZRESTRICT pshared); 360 int pthread_mutex_getprioceiling(const pthread_mutex_t *ZRESTRICT mutex, 361 int *ZRESTRICT prioceiling); 362 int pthread_mutex_setprioceiling(pthread_mutex_t *ZRESTRICT mutex, int prioceiling, 363 int *ZRESTRICT old_ceiling); 364 int pthread_mutexattr_getprioceiling(const pthread_mutexattr_t *ZRESTRICT attr, 365 int *ZRESTRICT prioceiling); [all …]
|
D | dirent.h | 31 int readdir_r(DIR *ZRESTRICT dirp, struct dirent *ZRESTRICT entry, 32 struct dirent **ZRESTRICT result);
|
D | aio.h | 37 int lio_listio(int mode, struct aiocb *const ZRESTRICT list[], int nent, 38 struct sigevent *ZRESTRICT sig);
|
/Zephyr-latest/lib/libc/minimal/source/string/ |
D | string.c | 20 char *strcpy(char *ZRESTRICT d, const char *ZRESTRICT s) in strcpy() 42 char *strncpy(char *ZRESTRICT d, const char *ZRESTRICT s, size_t n) in strncpy() 193 char *strcat(char *ZRESTRICT dest, const char *ZRESTRICT src) in strcat() 199 char *strncat(char *ZRESTRICT dest, const char *ZRESTRICT src, in strncat() 279 void *memcpy(void *ZRESTRICT d, const void *ZRESTRICT s, size_t n) in memcpy()
|
/Zephyr-latest/lib/libc/common/include/ |
D | threads.h | 55 int mtx_timedlock(mtx_t *ZRESTRICT mutex, const struct timespec *ZRESTRICT time_point); 61 int cnd_timedwait(cnd_t *ZRESTRICT cond, mtx_t *ZRESTRICT mtx, const struct timespec *ZRESTRICT ts);
|
/Zephyr-latest/lib/posix/options/ |
D | signal.c | 104 int sigprocmask(int how, const sigset_t *ZRESTRICT set, sigset_t *ZRESTRICT oset) in sigprocmask() 150 int sigaction(int sig, const struct sigaction *ZRESTRICT act, struct sigaction *ZRESTRICT oact) in sigaction() 173 int sigwait(const sigset_t *ZRESTRICT set, int *ZRESTRICT sig) in sigwait()
|
D | aio.c | 72 int lio_listio(int mode, struct aiocb *const ZRESTRICT list[], int nent, in lio_listio() 73 struct sigevent *ZRESTRICT sig) in lio_listio()
|
D | cond.c | 241 int pthread_condattr_getclock(const pthread_condattr_t *ZRESTRICT att, in pthread_condattr_getclock() 242 clockid_t *ZRESTRICT clock_id) in pthread_condattr_getclock()
|
D | rwlock.c | 396 int pthread_rwlockattr_getpshared(const pthread_rwlockattr_t *ZRESTRICT attr, in pthread_rwlockattr_getpshared() 397 int *ZRESTRICT pshared) in pthread_rwlockattr_getpshared()
|
D | pthread.c | 1366 int pthread_attr_getguardsize(const pthread_attr_t *ZRESTRICT _attr, size_t *ZRESTRICT guardsize) in pthread_attr_getguardsize() 1494 int pthread_sigmask(int how, const sigset_t *ZRESTRICT set, sigset_t *ZRESTRICT oset) in pthread_sigmask()
|
/Zephyr-latest/lib/os/zvfs/ |
D | zvfs_select.c | 75 int z_impl_zvfs_select(int nfds, struct zvfs_fd_set *ZRESTRICT readfds, in z_impl_zvfs_select() 76 struct zvfs_fd_set *ZRESTRICT writefds, in z_impl_zvfs_select() 77 struct zvfs_fd_set *ZRESTRICT exceptfds, in z_impl_zvfs_select() 78 const struct timespec *ZRESTRICT timeout, const void *ZRESTRICT sigmask) in z_impl_zvfs_select() 219 static int z_vrfy_zvfs_select(int nfds, struct zvfs_fd_set *ZRESTRICT readfds, in z_vrfy_zvfs_select() 220 struct zvfs_fd_set *ZRESTRICT writefds, in z_vrfy_zvfs_select() 221 struct zvfs_fd_set *ZRESTRICT exceptfds, in z_vrfy_zvfs_select() 222 const struct timespec *ZRESTRICT timeout, in z_vrfy_zvfs_select() 223 const void *ZRESTRICT sigmask) in z_vrfy_zvfs_select()
|
/Zephyr-latest/include/zephyr/sys/ |
D | fdtable.h | 238 __syscall int zvfs_select(int nfds, struct zvfs_fd_set *ZRESTRICT readfds, 239 struct zvfs_fd_set *ZRESTRICT writefds, 240 struct zvfs_fd_set *ZRESTRICT errorfds, 241 const struct timespec *ZRESTRICT timeout, const void *ZRESTRICT sigmask);
|
D | libc-hooks.h | 41 __syscall size_t zephyr_fwrite(const void *ZRESTRICT ptr, size_t size, 42 size_t nitems, FILE *ZRESTRICT stream);
|
/Zephyr-latest/lib/libc/common/source/time/ |
D | gmtime_r.c | 36 struct tm *ZRESTRICT tp) in time_civil_from_days() 81 struct tm *gmtime_r(const time_t *ZRESTRICT timep, in gmtime_r() 82 struct tm *ZRESTRICT result) in gmtime_r()
|
/Zephyr-latest/include/zephyr/toolchain/ |
D | common.h | 34 #ifndef ZRESTRICT 36 #define ZRESTRICT restrict macro 38 #define ZRESTRICT macro
|
D | gcc.h | 93 #define ZRESTRICT __restrict macro 95 #define ZRESTRICT restrict macro
|