Home
last modified time | relevance | path

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

/DragonOS/user/apps/user-manage/src/executor/
H A Dexecutor.rs117 let new_users = users.join(","); in write_group_file()
119 new_content.push_str(format!("{}\n", field.join(":")).as_str()); in write_group_file()
159 let new_users = users.join(","); in write_gshadow_file()
161 new_content.push_str(format!("{}\n", field.join(":")).as_str()); in write_gshadow_file()
208 .join("\n"); in update_passwd_file()
232 let users = users.join(","); in update_group_file()
234 new_content.push_str(format!("{}\n", field.join(":").as_str()).as_str()); in update_group_file()
236 new_content.push_str(format!("{}\n", field.join(":").as_str()).as_str()); in update_group_file()
255 .join("\n"); in update_shadow_file()
279 let users = users.join(","); in update_gshadow_file()
[all …]
/DragonOS/docs/kernel/locking/
H A Drwlock.md199 r1.join().expect("r1");
200 t1.join().expect("t1");
201 g1.join().expect("g1");
202 r2.join().expect("r2");
/DragonOS/build-scripts/kernel_build/src/bindgen/
H A Dmod.rs48 .write_to_file(out_path.join("bindings.rs")) in generate_bindings()
/DragonOS/user/apps/test_socket/src/
H A Dtest_unix_stream.rs33 client_thread.join().ok(); in test_unix_stream()
/DragonOS/kernel/src/driver/base/
H A Dkset.rs109 pub fn join(&self, kobj: &Arc<dyn KObject>) { in join() method
H A Dkobject.rs199 kset.join(&kobj); in add_kobj()
/DragonOS/user/apps/test-for-robustfutex/src/
H A Dmain.rs393 thread1.join().unwrap(); in test02()
/DragonOS/user/apps/user-manage/src/check/
H A Dcheck.rs839 format!("group: {} doesn't exist", non_exist_group.join(",")), in scan_group()