/DragonOS-0.1.2/kernel/.cargo/ |
D | config.toml | 2 target = "src/arch/x86_64/x86_64-unknown-none.json" 8 [target.'cfg(target_os = "none")']
|
/DragonOS-0.1.2/user/libs/libc/.cargo/ |
D | config.toml | 2 target = "src/arch/x86_64/x86_64-unknown-none.json" 8 [target.'cfg(target_os = "none")']
|
/DragonOS-0.1.2/kernel/src/filesystem/fat32/ |
D | fat_ent.c | 321 void fat32_fill_shortname(struct vfs_dir_entry_t *dEntry, struct fat32_Directory_t *target, uint32_… in fat32_fill_shortname() argument 323 memset(target, 0, sizeof(struct fat32_Directory_t)); in fat32_fill_shortname() 332 target->DIR_Name[tmp_index] = dEntry->name[tmp_index]; in fat32_fill_shortname() 334 target->DIR_Name[tmp_index] = 0x20; in fat32_fill_shortname() 341 target->DIR_Name[tmp_index] = 0x20; in fat32_fill_shortname() 349 target->DIR_Name[tmp_index] = 0x20; in fat32_fill_shortname() 357 target->DIR_Name[j] = 'a'; in fat32_fill_shortname() 363 target->DIR_Attr = 0; in fat32_fill_shortname() 365 target->DIR_Attr |= ATTR_DIRECTORY; in fat32_fill_shortname() 367 target->DIR_FileSize = dEntry->dir_inode->file_size; in fat32_fill_shortname() [all …]
|
D | fat_ent.h | 87 void fat32_fill_shortname(struct vfs_dir_entry_t *dEntry, struct fat32_Directory_t *target, uint32_… 97 void fat32_fill_longname(struct vfs_dir_entry_t *dEntry, struct fat32_LongDirectory_t *target, uint…
|
/DragonOS-0.1.2/user/libs/libc/ |
D | .gitignore | 1 target/
|
/DragonOS-0.1.2/tools/ |
D | grub_auto_install.sh | 45 ./configure --target=i386 --prefix=$(dirname $PWD)/${grub_dir_i386_legacy} || exit 1 50 ./configure --target=i386 --with-platform=efi --prefix=$(dirname $PWD)/${grub_dir_i386_efi} || exit… 55 ./configure --target=x86_64 --with-platform=efi --prefix=$(dirname $PWD)/${grub_dir_x86_64_efi} || …
|
D | .gdbinit | 1 target remote localhost:1234
|
D | write_disk_image.sh | 111 …${GRUB_PATH_I386_EFI_INSTALL} --target=i386-efi --efi-directory=${mount_folder} --boot-directory… 113 …${GRUB_PATH_X86_64_EFI_INSTALL} --target=x86_64-efi --efi-directory=${mount_folder} --boot-direct… 117 …${GRUB_PATH_I386_LEGACY_INSTALL} --target=i386-pc --boot-directory=${boot_folder} /dev/$LOOP_DEVICE
|
D | bootstrap.sh | 137 rustup target add x86_64-unknown-none
|
/DragonOS-0.1.2/kernel/ |
D | .gitignore | 1 target/
|
D | cbindgen.toml | 160 # `#[cfg(target = "freebsd")] ...` 377 # prefixed. This does nothing if the target is C, or if 577 # Whether to use a new temporary target directory when running `rustc -Zunpretty=expanded`.
|
/DragonOS-0.1.2/kernel/src/ |
D | Makefile | 36 cargo +nightly build --release --target ./arch/x86_64/x86_64-unknown-none.json 41 …ld -b elf64-x86-64 -z muldefs -o kernel head.o main.o $(shell find . -name "*.o") ../target/x86_64… 58 …ld -b elf64-x86-64 -z muldefs -o kernel head.o main.o $(shell find . -name "*.o") ../target/x86_64…
|
/DragonOS-0.1.2/kernel/src/process/ |
D | kthread.c | 266 struct kthread_info_t *target = to_kthread(pcb); in kthread_stop() local 267 target->flags |= (1 << KTHREAD_SHOULD_STOP); in kthread_stop() 271 while (target->exited == false) in kthread_stop() 273 retval = target->result; in kthread_stop()
|
/DragonOS-0.1.2/.github/workflows/ |
D | makefile.yml | 18 …ponent add rust-src && rustup component add llvm-tools-preview && rustup target add x86_64-unknown…
|
/DragonOS-0.1.2/user/libs/libc/src/ |
D | Makefile | 42 cargo +nightly build --release --target ./x86_64-unknown-none.json
|
/DragonOS-0.1.2/kernel/src/driver/usb/xhci/ |
D | xhci.c | 49 static int xhci_control_in(const int id, struct usb_request_packet_t *packet, void *target, const i… 51 static int xhci_control_out(const int id, struct usb_request_packet_t *packet, void *target, const … 59 static inline int xhci_get_desc(const int id, const int port_id, void *target, const uint16_t desc_… 63 void *target); 1237 static int xhci_control_in(const int id, struct usb_request_packet_t *packet, void *target, const i… in xhci_control_in() argument 1286 memcpy(target, (void *)data_buf_vaddr, packet->length); in xhci_control_in() 1311 static int xhci_control_out(const int id, struct usb_request_packet_t *packet, void *target, const … in xhci_control_out() argument 1350 memcpy(target, (void *)data_buf_vaddr, packet->length); in xhci_control_out() 1376 static inline int xhci_get_desc(const int id, const int port_id, void *target, const uint16_t desc_… in xhci_get_desc() argument 1393 count = xhci_control_in(id, &ctrl_in_packet, target, port_id, dev_desc->max_packet_size); in xhci_get_desc() [all …]
|
/DragonOS-0.1.2/kernel/src/filesystem/VFS/ |
D | VFS.c | 736 struct vfs_index_node_t *target = dentry->dir_inode; in vfs_unlink() local 747 spin_lock(&target->lockref.lock); in vfs_unlink() 761 spin_unlock(&target->lockref.lock); in vfs_unlink()
|
/DragonOS-0.1.2/kernel/src/ktest/ |
D | test-idr.c | 327 int target = i < N / 3 ? i : max(i, 2 * (N / 3) + 1); in ktest_idr_case3() local 330 assert(nextid == target); in ktest_idr_case3()
|
/DragonOS-0.1.2/docs/introduction/ |
D | build_system.md | 116 rustup target add x86_64-unknown-none
|