Searched refs:RequestId (Results 1 – 8 of 8) sorted by relevance
/system/iorap/include/binder/ |
D | request_id.h | 26 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/ |
D | IIorap.aidl | 26 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()
|
D | ITaskListener.aidl | 20 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()
|
D | RequestId.aidl | 20 parcelable RequestId cpp_header "binder/request_id.h";
|
/system/iorap/src/binder/ |
D | iiorap_def.h | 30 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), \
|
D | iiorap_impl.cc | 103 …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/ |
D | event_manager.h | 50 …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,
|
D | event_manager.cc | 55 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 …]
|