Lines Matching refs:table

41         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);
51 table.insert("swap", UnitType::Swap);
52 table.insert("target", UnitType::Target);
53 table.insert("timer", UnitType::Timer);
54 table
57 let mut table = HashMap::new(); localVariable
58 table.insert("[Unit]", Segment::Unit);
59 table.insert("[Install]", Segment::Install);
60 table.insert("[Service]", Segment::Service);
61 table.insert("[Timer]", Segment::Timer);
63 table
112 let mut table = HashMap::new(); localVariable
113 table.insert(
117 table.insert("P", 1024u64 * 1024u64 * 1024u64 * 1024u64 * 1024u64);
118 table.insert("T", 1024u64 * 1024u64 * 1024u64 * 1024u64);
119 table.insert("G", 1024u64 * 1024u64 * 1024u64);
120 table.insert("M", 1024u64 * 1024u64);
121 table.insert("K", 1024u64);
122 table.insert("B", 1u64);
123 table.insert("", 1u64);
124 table
127 let mut table = HashMap::new(); localVariable
128 table.insert(
132 table.insert("P", 1000u64 * 1000u64 * 1000u64 * 1000u64 * 1000u64);
133 table.insert("T", 1000u64 * 1000u64 * 1000u64 * 1000u64);
134 table.insert("G", 1000u64 * 1000u64 * 1000u64);
135 table.insert("M", 1000u64 * 1000u64);
136 table.insert("K", 1000u64);
137 table.insert("B", 1u64);
138 table.insert("", 1u64);
139 table
142 let mut table = HashMap::new(); localVariable
143 table.insert("h", 60 * 60 * 1000 * 1000 * 1000);
144 table.insert("min", 60 * 1000 * 1000 * 1000);
145 table.insert("m", 60 * 1000 * 1000 * 1000);
146 table.insert("s", 1000 * 1000 * 1000);
147 table.insert("", 1000 * 1000 * 1000);
148 table.insert("ms", 1000 * 1000);
149 table.insert("us", 1000);
150 table.insert("ns", 1);
151 table