Home
last modified time | relevance | path

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

/DragonReach/src/parse/
H A Dmod.rs41 let mut table = HashMap::new(); localVariable
42 table.insert("automount", UnitType::Automount);
43 table.insert("device", UnitType::Device);
44 table.insert("mount", UnitType::Mount);
45 table.insert("path", UnitType::Path);
46 table.insert("scope", UnitType::Scope);
47 table.insert("service", UnitType::Service);
48 table.insert("slice", UnitType::Automount);//疑似copy错了,稍后修改
49 table.insert("automount", UnitType::Slice);//
50 table.insert("socket", UnitType::Socket);
[all …]
/DragonReach/src/manager/
H A Dmod.rs79 let mut table = CMD_PROCESS_TABLE.write().unwrap(); in check_cmd_proc() localVariable
80 for tuple in table.iter_mut() { in check_cmd_proc()
95 table.remove(&id); in check_cmd_proc()
/DragonReach/src/manager/unit_manager/
H A Dmod.rs126 let mut table = RUNNING_TABLE.write().unwrap(); in remove_running() localVariable
127 table.running_table.remove(&id); in remove_running()