Home
last modified time | relevance | path

Searched refs:find (Results 1 – 22 of 22) sorted by relevance

/DragonOS-0.1.2/user/apps/test_signal/
DMakefile3 …x86-64 -z muldefs -o $(tmp_output_dir)/test_signal $(shell find . -name "*.o") $(shell find $(sys…
/DragonOS-0.1.2/user/apps/about/
DMakefile6 …ld -b elf64-x86-64 -z muldefs -o $(tmp_output_dir)/about $(shell find . -name "*.o") $(shell find
/DragonOS-0.1.2/kernel/src/
DMakefile2 DIRS := . $(shell find $(SUBDIR_ROOTS) -type d)
41 …ld -b elf64-x86-64 -z muldefs -o kernel head.o main.o $(shell find . -name "*.o") ../target/x86_64…
57 @echo $(shell find . -name "*.o")
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/user/apps/shell/
DMakefile3 …ld -b elf64-x86-64 -z muldefs -o $(tmp_output_dir)/shell $(shell find . -name "*.o") $(shell find
/DragonOS-0.1.2/kernel/src/filesystem/procfs/
DMakefile5 kernel_fs_procfs_objs:= $(shell find ./*.c)
/DragonOS-0.1.2/kernel/src/filesystem/rootfs/
DMakefile5 kernel_fs_rootfs_objs:= $(shell find ./*.c)
/DragonOS-0.1.2/kernel/src/filesystem/devfs/
DMakefile5 kernel_fs_devfs_objs:= $(shell find ./*.c)
/DragonOS-0.1.2/kernel/src/filesystem/fat32/
DMakefile5 kernel_fs_fat32_objs:= $(shell find ./*.c)
/DragonOS-0.1.2/kernel/src/filesystem/VFS/
DMakefile5 kernel_fs_vfs_objs:= $(shell find ./*.c)
/DragonOS-0.1.2/kernel/src/arch/x86_64/asm/
DMakefile6 kernel_arch_x86_64_asm_objs:= $(shell find ./*.c)
/DragonOS-0.1.2/kernel/src/sched/
DMakefile5 kernel_sched_objs:= $(shell find ./*.c)
/DragonOS-0.1.2/kernel/src/libs/sys/
DMakefile4 kernel_lib_sys_objs:= $(shell find ./*.c)
/DragonOS-0.1.2/kernel/src/driver/hid/usbhid/
DMakefile5 kernel_driver_usbhid_objs:= $(shell find ./*.c)
/DragonOS-0.1.2/kernel/src/driver/hid/
DMakefile6 kernel_driver_hid_objs:= $(shell find ./*.c)
/DragonOS-0.1.2/kernel/src/arch/x86_64/
DMakefile6 kernel_arch_x86_64_objs:= $(shell find ./*.c)
/DragonOS-0.1.2/kernel/src/libs/
DMakefile6 kernel_lib_objs:= $(shell find ./*.c)
/DragonOS-0.1.2/kernel/src/filesystem/
DMakefile5 kernel_fs_objs:= $(shell find ./*.c)
/DragonOS-0.1.2/kernel/src/process/
DMakefile5 kernel_process_objs:= $(shell find ./*.c)
/DragonOS-0.1.2/user/libs/libc/src/
DMakefile14 libc_objs:= $(shell find ./*.c)
/DragonOS-0.1.2/user/
DMakefile4 DIRS := . $(shell find $(SUBDIR_ROOTS) -type d)
/DragonOS-0.1.2/
DREADME_EN.md97 If you find any violation of the open source license, we welcome you to send email feedback! Let's …
/DragonOS-0.1.2/kernel/src/ipc/
Dsignal_types.rs482 pub fn find(&self, sig: SignalNumber) -> (Option<&siginfo>, bool) { in find() method