Searched refs:available (Results 1 – 7 of 7) sorted by relevance
/DragonOS-0.1.3/user/libs/libc/src/include/sys/ |
D | stat.h | 16 uint64_t available; // 系统总空闲内存大小(包括kmalloc缓冲区) member
|
/DragonOS-0.1.3/docs/userland/libc/apis/api-list/ |
D | errno.md | 18 #define EADDRNOTAVAIL 4 /* 地址不可用 Address not available.*/ 99 #define ENOBUFS 42 /* 缓冲区空间不足 No buffer space available.*/ 101 … #define ENODATA 43 /* 队列头没有可读取的消息 No message is available on the STREAM head read queue.*/ 109 #define ENOLCK 47 /* 没有可用的锁 No locks available.*/ 119 #define ENOPROTOOPT 51 /* 协议不可用 Protocol not available.*/
|
/DragonOS-0.1.3/kernel/src/filesystem/procfs/ |
D | procfs.c | 21 …ic long simple_procfs_read(void *to, int64_t count, long *position, void *from, int64_t available); 197 …tic long simple_procfs_read(void *to, int64_t count, long *position, void *from, int64_t available) in simple_procfs_read() argument 207 if (pos >= available || !count) in simple_procfs_read() 209 if (count > available - pos) in simple_procfs_read() 210 count = available - pos; in simple_procfs_read()
|
/DragonOS-0.1.3/kernel/src/mm/ |
D | mm-stat.c | 175 tmp.available = tmp.free + tmp.cache_free; in mm_stat()
|
D | mm.h | 172 uint64_t available; // 系统总空闲内存大小(包括kmalloc缓冲区) member
|
/DragonOS-0.1.3/docs/kernel/core_api/ |
D | mm-api.md | 267 | available | 系统总空闲内存大小(包括kmalloc缓冲区) |
|
/DragonOS-0.1.3/user/apps/shell/ |
D | cmd.c | 573 mst.cache_used >> 10, mst.available >> 10); in shell_cmd_free() 578 mst.cache_used >> 20, mst.available >> 20); in shell_cmd_free()
|