• Home
  • Raw
  • Download

Lines Matching refs:strs

148     let strs: Vec<&str> = option.split(':').collect();  in parse_remote_ro_file_option()  localVariable
149 if strs.len() != 4 { in parse_remote_ro_file_option()
153 ino: strs[0].parse::<Inode>()?, in parse_remote_ro_file_option()
154 remote_id: strs[1].parse::<i32>()?, in parse_remote_ro_file_option()
155 file_size: strs[2].parse::<u64>()?, in parse_remote_ro_file_option()
156 _certificate_path: PathBuf::from(strs[3]), in parse_remote_ro_file_option()
161 let strs: Vec<&str> = option.split(':').collect(); in parse_remote_ro_file_unverified_option() localVariable
162 if strs.len() != 3 { in parse_remote_ro_file_unverified_option()
166 ino: strs[0].parse::<Inode>()?, in parse_remote_ro_file_unverified_option()
167 remote_id: strs[1].parse::<i32>()?, in parse_remote_ro_file_unverified_option()
168 file_size: strs[2].parse::<u64>()?, in parse_remote_ro_file_unverified_option()
173 let strs: Vec<&str> = option.split(':').collect(); in parse_remote_new_rw_file_option() localVariable
174 if strs.len() != 2 { in parse_remote_new_rw_file_option()
178 ino: strs[0].parse::<Inode>().unwrap(), in parse_remote_new_rw_file_option()
179 remote_id: strs[1].parse::<i32>().unwrap(), in parse_remote_new_rw_file_option()
184 let strs: Vec<&str> = option.split(':').collect(); in parse_local_file_ro_option() localVariable
185 if strs.len() != 5 { in parse_local_file_ro_option()
189 ino: strs[0].parse::<Inode>()?, in parse_local_file_ro_option()
190 file_path: PathBuf::from(strs[1]), in parse_local_file_ro_option()
191 merkle_tree_dump_path: PathBuf::from(strs[2]), in parse_local_file_ro_option()
192 signature_path: PathBuf::from(strs[3]), in parse_local_file_ro_option()
193 _certificate_path: PathBuf::from(strs[4]), in parse_local_file_ro_option()
198 let strs: Vec<&str> = option.split(':').collect(); in parse_local_ro_file_unverified_ro_option() localVariable
199 if strs.len() != 2 { in parse_local_ro_file_unverified_ro_option()
203 ino: strs[0].parse::<Inode>()?, in parse_local_ro_file_unverified_ro_option()
204 file_path: PathBuf::from(strs[1]), in parse_local_ro_file_unverified_ro_option()