Home
last modified time | relevance | path

Searched defs:NotifyData (Results 1 – 6 of 6) sorted by relevance

/base/request/request/services/src/task/
Dnotify.rs34 pub(crate) struct NotifyData { struct
35 pub(crate) bundle: String,
36 pub(crate) progress: Progress,
37 pub(crate) action: Action,
38 pub(crate) version: Version,
39 pub(crate) each_file_status: Vec<EachFileStatus>,
40 pub(crate) task_id: u32,
41 pub(crate) uid: u64,
Dinfo.rs157 pub(crate) fn build_notify_data(&self) -> NotifyData { in build_notify_data()
Drequest_task.rs256 pub(crate) fn build_notify_data(&self) -> NotifyData { in build_notify_data()
/base/request/request/services/src/manage/
Dnotifier.rs21 pub(crate) fn complete(client_manager: &ClientManagerEntry, notify_data: NotifyData) { in complete()
32 pub(crate) fn fail(client_manager: &ClientManagerEntry, notify_data: NotifyData) { in fail()
43 pub(crate) fn pause(client_manager: &ClientManagerEntry, notify_data: NotifyData) { in pause()
47 pub(crate) fn resume(client_manager: &ClientManagerEntry, notify_data: NotifyData) { in resume()
51 pub(crate) fn header_receive(client_manager: &ClientManagerEntry, notify_data: NotifyData) { in header_receive()
55 pub(crate) fn progress(client_manager: &ClientManagerEntry, notify_data: NotifyData) { in progress()
64 pub(crate) fn remove(client_manager: &ClientManagerEntry, notify_data: NotifyData) { in remove()
/base/request/request/frameworks/js/napi/include/
Djs_common.h207 struct NotifyData { struct
208 SubscribeType type;
209 uint32_t taskId;
210 Progress progress;
211 Action action;
212 Version version;
213 Mode mode;
214 std::vector<TaskState> taskStates;
/base/request/request/services/src/service/client/
Dmod.rs50 NotifyData, enumerator
135 pub(crate) fn send_notify_data(&self, subscribe_type: SubscribeType, notify_data: NotifyData) { in send_notify_data()
289 notify_data: NotifyData, in handle_send_notify_data()