Searched refs:ssize_t (Results 1 – 10 of 10) sorted by relevance
/DragonOS-0.1.2/user/libs/libc/src/ |
D | unistd.h | 21 ssize_t read(int fd, void *buf, size_t count); 31 ssize_t write(int fd, void const *buf, size_t count); 117 void swab(void *restrict src, void *restrict dest, ssize_t nbytes);
|
D | unistd.c | 28 ssize_t read(int fd, void *buf, size_t count) in read() 30 return (ssize_t)syscall_invoke(SYS_READ, fd, (uint64_t)buf, count, 0, 0, 0, 0, 0); in read() 41 ssize_t write(int fd, void const *buf, size_t count) in write() 43 return (ssize_t)syscall_invoke(SYS_WRITE, fd, (uint64_t)buf, count, 0, 0, 0, 0, 0); in write() 181 void swab(void *restrict src, void *restrict dest, ssize_t nbytes) in swab()
|
D | stdlib.h | 10 void *malloc(ssize_t size);
|
D | malloc.c | 271 void *malloc(ssize_t size) in malloc()
|
/DragonOS-0.1.2/kernel/src/common/ |
D | unistd.h | 36 void swab(void *restrict src, void *restrict dest, ssize_t nbytes);
|
/DragonOS-0.1.2/docs/userland/libc/apis/api-list/ |
D | unistd.md | 11 ``ssize_t read(int fd,void *buf,size_t count)`` : 从文件读取 17 ``ssize_t write(int fd,void const *buf,size_t count)`` : 写入文件
|
D | stdlib.md | 8 ``void *malloc(ssize_t size)`` : 普通的 ``malloc``
|
/DragonOS-0.1.2/kernel/src/libs/ |
D | unistd.c | 24 void swab(void *restrict src, void *restrict dest, ssize_t nbytes) in swab()
|
/DragonOS-0.1.2/user/libs/libc/src/sys/ |
D | types.h | 13 typedef long long ssize_t; typedef
|
/DragonOS-0.1.2/kernel/src/common/sys/ |
D | types.h | 13 typedef long long ssize_t; typedef
|