/DragonOS-0.1.8/kernel/src/driver/multiboot2/ |
D | multiboot2.c | 26 for (; tag->type != MULTIBOOT_TAG_TYPE_END; in multiboot2_iter() 58 if (_iter_data->type != MULTIBOOT_TAG_TYPE_MMAP) in multiboot2_get_memory() 84 if (_iter_data->type != MULTIBOOT_TAG_TYPE_VBE) in multiboot2_get_VBE_info() 98 if (_iter_data->type != MULTIBOOT_TAG_TYPE_FRAMEBUFFER) in multiboot2_get_Framebuffer_info() 114 if (_iter_data->type != MULTIBOOT_TAG_TYPE_ACPI_OLD) in multiboot2_get_acpi_old_RSDP() 132 if (_iter_data->type != MULTIBOOT_TAG_TYPE_ACPI_NEW) in multiboot2_get_acpi_new_RSDP()
|
D | multiboot2.h | 122 uint16_t type; member 128 uint16_t type; member 136 uint16_t type; member 148 uint16_t type; member 157 uint16_t type; member 166 uint16_t type; member 177 uint16_t type; member 184 uint16_t type; member 206 unsigned int type; member 212 unsigned int type; member [all …]
|
/DragonOS-0.1.8/kernel/src/libs/libUI/ |
D | screen_manager.c | 26 static struct scm_buffer_info_t *__create_buffer(uint64_t type) in __create_buffer() argument 39 if (type & SCM_BF_PIXEL) in __create_buffer() 104 static int __check_ui_param(const char *name, const uint8_t type, const struct scm_ui_framework_ope… in __check_ui_param() argument 108 if ((type == SCM_FRAMWORK_TYPE_GUI || type == SCM_FRAMWORK_TYPE_TEXT) == 0) in __check_ui_param() 126 int scm_register_alloc(const char *name, const uint8_t type, struct scm_ui_framework_operations_t *… in scm_register_alloc() argument 133 if (__check_ui_param(name, type, ops) != 0) in scm_register_alloc() 139 ui->type = type; in scm_register_alloc() 148 ui->buf = __create_buffer(ui->type); in scm_register_alloc() 175 if (__check_ui_param(ui->name, ui->type, ui->ui_ops) != 0) in scm_register() 183 ui->buf = __create_buffer(ui->type); in scm_register()
|
D | screen_manager.h | 47 uint8_t type; member 72 int scm_register_alloc(const char *name, const uint8_t type, struct scm_ui_framework_operations_t *…
|
/DragonOS-0.1.8/kernel/src/common/ |
D | list.h | 137 #define list_entry(ptr, type, member) container_of(ptr, type, member) argument 147 #define list_first_entry(ptr, type, member) list_entry((ptr)->next, type, member) argument 157 #define list_first_entry_or_null(ptr, type, member) (!list_empty(ptr) ? list_entry((ptr)->next, typ… argument 167 #define list_last_entry(ptr, type, member) list_entry((ptr)->prev, type, member) argument 177 #define list_last_entry_or_full(ptr, type, member) (!list_empty(ptr) ? list_entry((ptr)->prev, type… argument
|
D | glib.h | 27 #define container_of(ptr, type, member) \ argument 29 typeof(((type *)0)->member) *p = (ptr); \ 30 (type *)((unsigned long)p - (unsigned long)&(((type *)0)->member)); \
|
D | hid.h | 109 uint8_t type; // 数据类型:FEATURE / INPUT / OUTPUT member
|
/DragonOS-0.1.8/ |
D | bochsrc | 8 # ata0-master: type=disk, path="/data/home/longjin/code/hd.img", mode=flat 14 ata0-master: type=disk, path="bin/disk.img", mode=flat 15 ata0-slave: type=none 17 ata1-master: type=cdrom, path="DragonOS.iso", status=inserted 43 keyboard: type=mf, serial_delay=250, paste_delay=100000, user_shortcut=none 44 mouse: type=ps2, enabled=0, toggle=ctrl+mbutton
|
/DragonOS-0.1.8/kernel/src/driver/hid/ |
D | hidparse.c | 20 static const char *hid_get_usage_type_str(const int page, const int type); 26 const struct hid_usage_pages_string *upage, const int type); 241 parser->data.type = (uint8_t)(parser->item & HID_ITEM_MASK); in hid_parse() 393 const struct hid_usage_pages_string *upage, const int type) in hid_get_usage_type() argument 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() 436 static const char *hid_get_usage_type_str(const int page, const int type) in hid_get_usage_type_str() argument 448 sprintk(__tmp_usage_page_str, "Button number %i", type); in hid_get_usage_type_str() 453 sprintk(__tmp_usage_page_str, "Ordinal %i", type); in hid_get_usage_type_str() 458 sprintk(__tmp_usage_page_str, "UTC %#04X", type); in hid_get_usage_type_str() [all …]
|
/DragonOS-0.1.8/tools/ |
D | list_contributors.py | 10 parser.add_argument('--since', type=str, help='Since date') 11 parser.add_argument('--until', type=str, help='Until date') 12 parser.add_argument('--mode', type=str, help='脚本的运行模式 可选:<all> 输出所有信息\n' +
|
/DragonOS-0.1.8/user/libs/libc/src/include/export/sys/ |
D | types.h | 58 int type; member 64 int type; member
|
/DragonOS-0.1.8/kernel/src/common/sys/ |
D | types.h | 62 int type; member 68 int type; member
|
/DragonOS-0.1.8/user/libs/libc/ |
D | Cargo.toml | 8 crate-type = ["staticlib"]
|
/DragonOS-0.1.8/kernel/src/debug/ |
D | kallsyms.c | 30 char type; member 54 int retval = fscanf(filp, "%llx %c %510s\n", &entry->vaddr, &entry->type, str); in read_symbol()
|
/DragonOS-0.1.8/docs/kernel/core_api/ |
D | kernel_api.md | 129 ### `list_entry(ptr, type, member)` 141 **type** argument 149 ### `list_first_entry(ptr, type, member)` 159 ### `list_first_entry_or_null(ptr, type, member)` argument 169 ### `list_last_entry(ptr, type, member)` argument 179 ### `list_last_entry_or_full(ptr, type, member)` argument
|
/DragonOS-0.1.8/user/apps/shell/ |
D | shell.c | 122 void change_command(char *buf, int type) in change_command() argument 124 current_command_index -= type; in change_command()
|
/DragonOS-0.1.8/kernel/src/driver/pci/ |
D | pci.c | 230 void *pci_read_header(int *type, uchar bus, uchar slot, uchar func, bool add_to_list) in pci_read_header() argument 262 *type = -ENXIO; in pci_read_header() 277 *type = 0x0; in pci_read_header() 286 *type = 0x1; in pci_read_header() 295 *type = 0x2; in pci_read_header() 300 *type = -EINVAL; in pci_read_header()
|
D | pci.h | 201 void *pci_read_header(int *type, uchar bus, uchar slot, uchar func, bool add_to_list);
|
/DragonOS-0.1.8/docs/userland/libc/apis/api-list/ |
D | errno.md | 117 #define ENOMSG 50 /* 没有期待类型的消息 No message of the desired type.*/ 149 #define EOVERFLOW 65 /* 数值过大,产生溢出 Value too large to be stored in data type.*/ 163 #define EPROTOTYPE 71 /* 对于套接字而言,错误的协议 Protocol wrong type for socket.*/
|
/DragonOS-0.1.8/kernel/src/driver/interrupt/apic/ |
D | apic.c | 70 if (header->type == 1) in apic_io_apic_init() 600 uint apic_get_ics(const uint type, ul ret_vaddr[], uint *total) in apic_get_ics() argument 612 if (header->type == type) in apic_get_ics()
|
D | apic.h | 302 uint apic_get_ics(const uint type, ul ret_vaddr[], uint *total);
|
/DragonOS-0.1.8/kernel/src/driver/acpi/ |
D | acpi.h | 117 unsigned char type; member
|
/DragonOS-0.1.8/kernel/ |
D | Cargo.toml | 9 crate-type = ["staticlib"]
|
/DragonOS-0.1.8/kernel/src/filesystem/vfs/ |
D | VFS.h | 181 typedef int (*vfs_filldir_t)(void *buf, ino_t d_ino, char *name, int namelen, unsigned char type, o…
|
/DragonOS-0.1.8/kernel/src/ |
D | head.S | 128 .type _start, @function 232 .type _start64, @function
|