Home
last modified time | relevance | path

Searched refs:body_file_paths (Results 1 – 6 of 6) sorted by relevance

/ohos5.0/base/request/request/services/src/task/
H A Dconfig.rs117 pub(crate) body_file_paths: Vec<String>,
230 .body_file_paths in build_config_set()
266 body_file_paths: vec![], in default()
452 parcel.write(&(self.body_file_paths.len() as u32))?; in serialize()
453 for body_file_paths in self.body_file_paths.iter() { in serialize()
454 parcel.write(body_file_paths)?; in serialize()
H A Dfiles.rs126 for (idx, path) in config.body_file_paths.iter().enumerate() { in open_body_files()
H A Dffi.rs335 body_file_paths: build_vec( in from_c_struct()
/ohos5.0/base/request/request/services/src/service/command/
H A Dconstruct.rs162 let mut body_file_paths: Vec<String> = Vec::new(); in construct() localVariable
165 body_file_paths.push(file_name); in construct()
217 body_file_paths, in construct()
/ohos5.0/base/request/request/services/src/service/
H A Dstub.rs225 reply.write(&(config.body_file_paths.len() as u32))?; in serialize_task_config()
226 for i in 0..config.body_file_paths.len() { in serialize_task_config()
227 reply.write(&(config.body_file_paths[i]))?; in serialize_task_config()
/ohos5.0/base/request/request/services/src/manage/
H A Ddatabase.rs449 body_file_paths: vec![], in get_task_config()