Home
last modified time | relevance | path

Searched refs:symlink (Results 1 – 9 of 9) sorted by relevance

/DragonOS/user/dadk/config/
H A Dtest_symlink_0_1_0.dadk2 "name": "test-symlink",
4 "description": "测试symlink系统调用",
9 "path": "apps/test-symlink"
/DragonOS/user/apps/test-symlink/
H A DCargo.toml2 name = "test-symlink"
5 description = "测试symlink系统调用"
/DragonOS/user/apps/test-chown/
H A DREADME.md3 ### 由于symlink系统调用还未实现,目前只测试chown和fchown
/DragonOS/user/apps/test-symlink/src/
H A Dmain.rs6 use std::os::unix::fs::symlink;
23 symlink(target, symlink_path).expect("Failed to create symlink"); in main()
/DragonOS/user/apps/test-chown/src/
H A Dmain.rs96 std::os::unix::fs::symlink(filename, symlink_name)?; in main()
/DragonOS/kernel/src/filesystem/sysfs/
H A Dmod.rs21 pub mod symlink; module
/DragonOS/kernel/src/syscall/
H A Dmod.rs367 Self::symlink(oldname, newname) in handle()
/DragonOS/kernel/src/filesystem/vfs/
H A Dsyscall.rs987 pub fn symlink(oldname: *const u8, newname: *const u8) -> Result<usize, SystemError> { in symlink() method
/DragonOS/docs/community/ChangeLog/V0.1.x/
H A DV0.1.9.md1597 * 修复vfs系统调用未能follow symlink的问题