Home
last modified time | relevance | path

Searched refs:CStringWrapper (Results 1 – 22 of 22) sorted by relevance

/base/request/request/services/service/rust/src/
Dform_item.rs27 pub name: CStringWrapper,
28 pub path: CStringWrapper,
29 pub file_name: CStringWrapper,
30 pub mime_type: CStringWrapper,
36 name: CStringWrapper::from(&self.name), in to_c_struct()
37 path: CStringWrapper::from(&self.path), in to_c_struct()
38 file_name: CStringWrapper::from(&self.file_name), in to_c_struct()
39 mime_type: CStringWrapper::from(&self.mime_type), in to_c_struct()
60 pub name: CStringWrapper,
61 pub value: CStringWrapper,
[all …]
Dtask_info.rs71 pub path: CStringWrapper,
73 pub message: CStringWrapper,
79 path: CStringWrapper::from(&self.path), in to_c_struct()
81 message: CStringWrapper::from(&self.message), in to_c_struct()
96 pub bundle: CStringWrapper,
97 pub url: CStringWrapper,
98 pub data: CStringWrapper,
99 pub token: CStringWrapper,
104 pub title: CStringWrapper,
105 pub description: CStringWrapper,
[all …]
Dprogress.rs38 pub sizes: CStringWrapper,
39 pub processed: CStringWrapper,
40 pub extras: CStringWrapper,
61 sizes: CStringWrapper::from(sizes), in to_c_struct()
62 processed: CStringWrapper::from(processed), in to_c_struct()
63 extras: CStringWrapper::from(extras), in to_c_struct()
Dc_string_wrapper.rs19 pub struct CStringWrapper { struct
24 impl CStringWrapper { impl
28 CStringWrapper { c_str, len } in from()
Drequest_binding.rs26 pub fn RequestCheckPermission(tokenId: u64, permission: CStringWrapper) -> bool; in RequestCheckPermission()
39 pub fn GetTopBundleName() -> CStringWrapper; in GetTopBundleName()
49 pub fn Touch(taskId: u32, uid: u64, token: CStringWrapper) -> *const CTaskInfo; in Touch()
53 pub fn GetCallingBundle(tokenId: u64) -> CStringWrapper; in GetCallingBundle() argument
Dfilter.rs35 bundle: CStringWrapper,
42 bundle: CStringWrapper::from(&self.bundle), in to_c_struct()
Drequest_service_ability.rs163 … unsafe { request_binding::RequestCheckPermission(token_id, CStringWrapper::from(permission)) } in check_permission()
172 …request_binding::RequestCheckPermission(token_id, CStringWrapper::from(&query_download_permission)) in get_query_permission()
175 … request_binding::RequestCheckPermission(token_id, CStringWrapper::from(&query_upload_permission)) in get_query_permission()
Dtask_manager.rs623 let c_task_info = unsafe { Touch(task_id, uid, CStringWrapper::from(&token)) }; in touch()
/base/request/request/services/service/rust/src/c_wrapper/include/
Dc_form_item.h24 CStringWrapper name;
25 CStringWrapper path;
26 CStringWrapper fileName;
27 CStringWrapper mimeType;
38 CStringWrapper name;
39 CStringWrapper value;
Dc_task_info.h43 CStringWrapper path;
45 CStringWrapper message;
55 CStringWrapper bundle;
56 CStringWrapper url;
57 CStringWrapper data;
58 CStringWrapper token;
63 CStringWrapper title;
64 CStringWrapper description;
65 CStringWrapper mimeType;
Dc_progress.h33 CStringWrapper sizes;
34 CStringWrapper processed;
35 CStringWrapper extras;
Dc_string_wrapper.h22 struct CStringWrapper { struct
32 CStringWrapper WrapperCString(const std::string &str); argument
Dget_top_bundle.h25 CStringWrapper GetTopBundleName(void);
Dget_calling_bundle.h25 CStringWrapper GetCallingBundle(uint64_t tokenId);
Dc_check_permission.h27 bool RequestCheckPermission(uint64_t tokenId, CStringWrapper permission);
Dc_filter.h30 CStringWrapper bundle;
Dc_request_database.h122 CTaskInfo *Touch(uint32_t taskId, uint64_t uid, CStringWrapper token);
/base/request/request/services/service/rust/src/c_wrapper/source/
Dc_string_wrapper.cpp28 CStringWrapper WrapperCString(const std::string &str) in WrapperCString()
31 CStringWrapper cStringWrapper; in WrapperCString()
Dget_top_bundle.cpp21 CStringWrapper GetTopBundleName(void) in GetTopBundleName()
Dget_calling_bundle.cpp25 CStringWrapper GetCallingBundle(uint64_t tokenId) in GetCallingBundle()
Dc_check_permission.cpp24 bool RequestCheckPermission(uint64_t tokenId, CStringWrapper permission) in RequestCheckPermission()
Dc_request_database.cpp275 CTaskInfo *Touch(uint32_t taskId, uint64_t uid, CStringWrapper token) in Touch()