Home
last modified time | relevance | path

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

/DragonOS-0.1.8/kernel/src/filesystem/vfs/
Dutils.rs5 let mut path_split: core::str::SplitN<&str> = path.trim_matches('/').splitn(2, "/"); in split_path() localVariable
6 let comp = path_split.next().unwrap_or(""); in split_path()
7 let rest_opt = path_split.next(); in split_path()
16 let mut path_split: core::str::RSplitN<&str> = path.trim_matches('/').rsplitn(2, "/"); in rsplit_path() localVariable
17 let comp = path_split.next().unwrap_or(""); in rsplit_path()
18 let rest_opt = path_split.next(); in rsplit_path()