Home
last modified time | relevance | path

Searched refs:RequestId (Results 1 – 8 of 8) sorted by relevance

/system/iorap/include/binder/
Drequest_id.h26 struct RequestId : public AutoParcelable<RequestId> { struct
29 constexpr bool operator==(const RequestId& other) const { argument
33 constexpr bool operator!=(const RequestId& other) const {
38 IORAP_INTROSPECT_ADAPT_STRUCT(RequestId, request_id);
42 IORAP_JAVA_NAMESPACE_BINDER_TYPEDEF(RequestId)
/system/iorap/binder/com/google/android/startop/iorap/
DIIorap.aidl26 import com.google.android.startop.iorap.RequestId;
113 void onAppLaunchEvent(in RequestId request, in AppLaunchEvent event); in onAppLaunchEvent()
114 void onDexOptEvent(in RequestId request, in DexOptEvent event); in onDexOptEvent()
115 void onJobScheduledEvent(in RequestId request, in JobScheduledEvent event); in onJobScheduledEvent()
116 void onPackageEvent(in RequestId request, in PackageEvent event); in onPackageEvent()
117 void onAppIntentEvent(in RequestId request, in AppIntentEvent event); in onAppIntentEvent()
118 void onSystemServiceEvent(in RequestId request, in SystemServiceEvent event); in onSystemServiceEvent()
119 void onSystemServiceUserEvent(in RequestId request, in SystemServiceUserEvent event); in onSystemServiceUserEvent()
DITaskListener.aidl20 import com.google.android.startop.iorap.RequestId;
29 void onProgress(in RequestId requestId, in TaskResult result); in onProgress()
30 void onComplete(in RequestId requestId, in TaskResult result); in onComplete()
DRequestId.aidl20 parcelable RequestId cpp_header "binder/request_id.h";
/system/iorap/src/binder/
Diiorap_def.h30 FN(onAppLaunchEvent,(const ::com::google::android::startop::iorap::,RequestId,&,request), \
33 (const ::com::google::android::startop::iorap::,RequestId,&,request), \
35 FN(onPackageEvent, (const ::com::google::android::startop::iorap::,RequestId,&,request), \
37 FN(onAppIntentEvent,(const ::com::google::android::startop::iorap::,RequestId,&,request), \
40 (const ::com::google::android::startop::iorap::,RequestId,&,request), \
43 (const ::com::google::android::startop::iorap::,RequestId,&,request), \
45 FN(onDexOptEvent, (const ::com::google::android::startop::iorap::,RequestId,&,request), \
Diiorap_impl.cc103 …virtual void OnProgress(iorap::binder::RequestId request_id, iorap::binder::TaskResult task_result… in OnProgress()
106 …virtual void OnComplete(iorap::binder::RequestId request_id, iorap::binder::TaskResult task_result… in OnComplete()
128 void ReplyWithResult(const RequestId& request_id, TaskResult::State result_state) { in ReplyWithResult()
151 void ReplyWithResult(const RequestId& request_id, bool completed, TaskResult result) { in ReplyWithResult()
171 bool OnAppLaunchEvent(const RequestId& request_id, in OnAppLaunchEvent()
180 bool OnDexOptEvent(const RequestId& request_id, const DexOptEvent& event) { in OnDexOptEvent()
188 bool OnJobScheduledEvent(const RequestId& request_id, in OnJobScheduledEvent()
263 void HandleFakeBehavior(const RequestId& request_id) { in HandleFakeBehavior()
273 bool MaybeHandleFakeBehavior(const RequestId& request_id) { in MaybeHandleFakeBehavior()
395 const RequestId& request_id, in SendArgs()
[all …]
/system/iorap/src/manager/
Devent_manager.h50 …virtual void OnProgress(iorap::binder::RequestId request_id, iorap::binder::TaskResult task_result… in OnProgress()
51 …virtual void OnComplete(iorap::binder::RequestId request_id, iorap::binder::TaskResult task_result… in OnComplete()
74 bool OnAppLaunchEvent(binder::RequestId request_id,
80 bool OnDexOptEvent(binder::RequestId request_id,
88 bool OnJobScheduledEvent(binder::RequestId request_id,
Devent_manager.cc55 using binder::RequestId;
720 Result OnAppLaunchEvent(binder::RequestId request_id, in OnAppLaunchEvent()
868 void Subscribe(rxcpp::subscriber<std::pair<RequestId, JobScheduledEvent>> subscriber) { in Subscribe()
877 void OnNext(RequestId request_id, JobScheduledEvent e) { in OnNext()
886 …subscriber_->on_next(std::pair<RequestId, JobScheduledEvent>{std::move(request_id), std::move(e)}); in OnNext()
916 std::optional<rxcpp::subscriber<std::pair<RequestId, JobScheduledEvent>>> subscriber_;
967 bool OnAppLaunchEvent(RequestId request_id, in OnAppLaunchEvent()
997 bool OnDexOptEvent(RequestId request_id, in OnDexOptEvent()
1011 bool OnJobScheduledEvent(RequestId request_id, in OnJobScheduledEvent()
1136 using RequestAndJobEvent = std::pair<RequestId, JobScheduledEvent>; in InitializeRxGraphForJobScheduledEvents()
[all …]