Home
last modified time | relevance | path

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

/DragonOS-0.1.8/
DMakefile1 SUBDIRS = kernel user
41 all: kernel user
50 .PHONY: user
51 user: target
54 $(MAKE) -C ./user all || (sh -c "echo 用户程序编译失败" && exit 1)
69 …cppcheck kernel user --platform=unix64 --std=c11 -I user/libs/ -I=kernel/ --force -j $(NPROCS) --x…
72 cppcheck kernel user --platform=unix64 --std=c11 -I user/libs/ -I=kernel/ --force -j $(NPROCS)
D.gitignore14 user/sys_api_lib
DREADME.md140 …h in modern C++. Featuring a reactive UI library and a strong emphasis on user experience.](https:…
DREADME_EN.md122 …h in modern C++. Featuring a reactive UI library and a strong emphasis on user experience.](https:…
DLICENSE109 these conditions, and telling the user how to view a copy of this
/DragonOS-0.1.8/user/
DMakefile9 tmp_output_dir=$(ROOT_PATH)/bin/tmp/user
10 output_dir=$(ROOT_PATH)/bin/user
78 mkdir -p $(ROOT_PATH)/bin/user/
79 mkdir -p $(ROOT_PATH)/bin/tmp/user
95 mkdir -p $(ROOT_PATH)/bin/tmp/user/sys_api_lib_build_tmp
98 …$(AR) x $(ROOT_PATH)/user/libs/libc/target/x86_64-unknown-none/release/liblibc.a --output=$(ROOT_P…
99 …bc.a $(shell find ./libs/* -name "*.o") $(shell find $(ROOT_PATH)/bin/tmp/user/sys_api_lib_build_t…
100 rm -rf $(ROOT_PATH)/bin/tmp/user/sys_api_lib_build_tmp
102 $(shell cp -r $(ROOT_PATH)/user/libs/libc/src/include/export/* $(OLD_LIBC_INSTALL_PATH)/include/)
103 $(shell cp -r $(ROOT_PATH)/user/libs/libc/src/arch/x86_64/c*.o $(OLD_LIBC_INSTALL_PATH)/lib/)
/DragonOS-0.1.8/kernel/src/syscall/
Duser_access.rs70 user: *const u8, in check_and_clone_cstr()
73 if user.is_null() { in check_and_clone_cstr()
84 let addr = unsafe { user.add(i) }; in check_and_clone_cstr()
111 pub fn check_and_clone_cstr_array(user: *const *const u8) -> Result<Vec<String>, SystemError> { in check_and_clone_cstr_array()
112 if user.is_null() { in check_and_clone_cstr_array()
118 let addr = unsafe { user.add(i) }; in check_and_clone_cstr_array()
/DragonOS-0.1.8/user/apps/test_relibc/
DMakefile8 tmp_output_dir=$(ROOT_PATH)/bin/tmp/user
Dlink.lds126 doesn't matter if the user does not
/DragonOS-0.1.8/user/apps/test_bind/
DMakefile8 tmp_output_dir=$(ROOT_PATH)/bin/tmp/user
Dlink.lds126 doesn't matter if the user does not
/DragonOS-0.1.8/user/apps/test_gettimeofday/
DMakefile8 tmp_output_dir=$(ROOT_PATH)/bin/tmp/user
Dlink.lds126 doesn't matter if the user does not
/DragonOS-0.1.8/user/apps/test_fstat/
DMakefile8 tmp_output_dir=$(ROOT_PATH)/bin/tmp/user
Dlink.lds126 doesn't matter if the user does not
/DragonOS-0.1.8/user/apps/http_server/
DMakefile8 tmp_output_dir=$(ROOT_PATH)/bin/tmp/user
Dlink.lds126 doesn't matter if the user does not
/DragonOS-0.1.8/tools/
Dconfigure_network.sh11 sudo ip tuntap add name tap0 mode tap user $USER
Dwrite_disk_image.sh91 cp -r ${root_folder}/bin/user/* ${root_folder}/bin/disk_mount/bin
/DragonOS-0.1.8/user/apps/test_sqlite3/
DMakefile10 tmp_output_dir=$(ROOT_PATH)/bin/tmp/user
/DragonOS-0.1.8/docs/community/ChangeLog/V0.1.x/
DV0.1.2.md209 调整user下libs的libc目录结构 (#103)
211 * 调整user下libs的libc目录结构
/DragonOS-0.1.8/kernel/src/mm/
Dpage.rs261 pub fn from_prot_flags(prot_flags: ProtFlags, user: bool) -> PageFlags<Arch> { in from_prot_flags()
263 .set_user(user) in from_prot_flags()
291 pub fn new_page_table(user: bool) -> Self { in new_page_table()
294 if user { in new_page_table()