Home
last modified time | relevance | path

Searched refs:ssize_t (Results 1 – 10 of 10) sorted by relevance

/DragonOS-0.1.2/user/libs/libc/src/
Dunistd.h21 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);
Dunistd.c28 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()
Dstdlib.h10 void *malloc(ssize_t size);
Dmalloc.c271 void *malloc(ssize_t size) in malloc()
/DragonOS-0.1.2/kernel/src/common/
Dunistd.h36 void swab(void *restrict src, void *restrict dest, ssize_t nbytes);
/DragonOS-0.1.2/docs/userland/libc/apis/api-list/
Dunistd.md11 ``ssize_t read(int fd,void *buf,size_t count)`` : 从文件读取
17 ``ssize_t write(int fd,void const *buf,size_t count)`` : 写入文件
Dstdlib.md8 ``void *malloc(ssize_t size)`` : 普通的 ``malloc``
/DragonOS-0.1.2/kernel/src/libs/
Dunistd.c24 void swab(void *restrict src, void *restrict dest, ssize_t nbytes) in swab()
/DragonOS-0.1.2/user/libs/libc/src/sys/
Dtypes.h13 typedef long long ssize_t; typedef
/DragonOS-0.1.2/kernel/src/common/sys/
Dtypes.h13 typedef long long ssize_t; typedef