Home
last modified time | relevance | path

Searched refs:types (Results 1 – 4 of 4) sorted by relevance

/DragonOS-0.1.5/docs/kernel/process_management/
Dpcb.md3 PCB的全称为process control block, 它是每个进程/线程的核心控制结构。定义于`kernel/src/process/proc-types.h`中。
/DragonOS-0.1.5/kernel/src/driver/hid/
Dhidparse.c395 if (unlikely(upage == NULL || upage->types == NULL)) in hid_get_usage_type()
400 struct hid_usage_types_string *types = upage->types; in hid_get_usage_type() local
402 while ((types[i].value < type) && (types[i].value != 0xffff)) in hid_get_usage_type()
405 if ((types[i].value != type) || (types[i].value == 0xffff)) in hid_get_usage_type()
408 return &types[i]; in hid_get_usage_type()
/DragonOS-0.1.5/docs/userland/libc/apis/api-list/
Ddirent.md21 ``ino_t(see libc/sys/types.h) ino`` : 文件序列号(不推荐修改)
/DragonOS-0.1.5/kernel/src/common/
Dhid.h160 struct hid_usage_types_string *types; member