Home
last modified time | relevance | path

Searched defs:P (Results 1 – 6 of 6) sorted by relevance

/commonlibrary/rust/ylong_runtime/ylong_runtime/src/iter/
Dcore.rs30 pub(crate) async fn core<P, C>(par_iter: P, consumer: C) -> Result<C::Output, ScheduleError> in core()
72 async fn recur<P, C>( in recur()
75 par_iter: P, in recur()
124 unsafe fn spawn_task<P, C>( in spawn_task()
127 par_iter: P, in spawn_task()
150 async fn recur_ffrt<P, C>( in recur_ffrt()
152 par_iter: P, in recur_ffrt()
187 unsafe fn spawn_task_ffrt<P, C>( in spawn_task_ffrt()
189 par_iter: P, in spawn_task_ffrt()
/commonlibrary/rust/ylong_runtime/ylong_runtime/src/iter/pariter/
Dmap.rs18 pub fn map<P, F>(par_iter: P, map_op: F) -> Map<P, F> { in map() argument
Dfilter.rs18 pub fn filter<P, F>(par_iter: P, predicate: F) -> Filter<P, F> { in filter() argument
Dfor_each.rs17 pub async fn for_each<P, F>(par_iter: P, f: F) -> Result<(), ScheduleError> in for_each()
/commonlibrary/rust/ylong_runtime/ylong_runtime/src/fs/
Dasync_dir.rs237 pub async fn rename<P: AsRef<Path>, Q: AsRef<Path>>(from: P, to: Q) -> io::Result<()> { in rename()
273 pub async fn copy<P: AsRef<Path>, Q: AsRef<Path>>(from: P, to: Q) -> io::Result<u64> { in copy()
344 pub async fn write<P: AsRef<Path>, C: AsRef<[u8]>>(path: P, contents: C) -> io::Result<()> { in write()
401 pub async fn hard_link<P: AsRef<Path>, Q: AsRef<Path>>(original: P, link: Q) -> io::Result<()> { in hard_link()
516 pub async fn set_permissions<P: AsRef<Path>>(path: P, perm: Permissions) -> io::Result<()> { in set_permissions()
/commonlibrary/rust/ylong_http/ylong_http_client/src/util/c_openssl/ssl/
Dctx.rs191 file: P, in set_certificate_file()