Home
last modified time | relevance | path

Searched refs:OnQuery (Results 1 – 25 of 50) sorted by relevance

12

/ohos5.0/docs/zh-cn/device-dev/subsystems/
H A Dsubsys-dfx-hisysevent-query.md19 > HiSysEventQueryCallback查询回调对象OnQuery方法中的形参类型HiSysEventRecord请参考[HiSysEvent订阅](subsys-dfx-hisyseve…
86 | void HiSysEventQueryCallback::OnQuery(std::shared_ptr<std::vector<HiSysEventRecord>…
120 | OnQuery | void (*)(HiSysEventRecord records[], size_t size); | 接口功能:事件查询的回调。<br/>输入参数:<br/>-&n…
179 void OnQuery(std::shared_ptr<std::vector<HiSysEventRecord>> sysEvents) override
231 printf("OnQuery: event=%s", records[i].jsonStr);
262 callback.OnQuery = OnQueryTest;
295 void OnQuery(std::shared_ptr<std::vector<HiSysEventRecord>> sysEvents) override
355 printf("OnQuery: event=%s", records[i].jsonStr);
384 callback.OnQuery = OnQueryTest;
/ohos5.0/base/security/security_guard/interfaces/inner_api/obtaindata/src/
H A Dsecurity_event_query_callback_service.cpp19 void SecurityEventQueryCallbackService::OnQuery(const std::vector<SecurityCollector::SecurityEvent>… in OnQuery() function in OHOS::Security::SecurityGuard::SecurityEventQueryCallbackService
22 queryCallback->OnQuery(events); in OnQuery()
/ohos5.0/base/hiviewdfx/hisysevent/adapter/native/idl/src/
H A Dhisysevent_query_proxy.cpp22 void HiSysEventQueryProxy::OnQuery(const ::std::vector<std::u16string>& sysEvents, in OnQuery() function in OHOS::HiviewDFX::HiSysEventQueryProxy
30 queryCallback->OnQuery(destSysEvents, seq); in OnQuery()
/ohos5.0/base/hiviewdfx/hisysevent/interfaces/native/innerkits/hisysevent_manager/include/
H A Dhisysevent_base_query_callback.h34 virtual void OnQuery(const ::std::vector<std::string>& sysEvents, in OnQuery() function
42 callback->OnQuery(records); in OnQuery()
H A Dhisysevent_query_callback.h32 virtual void OnQuery(std::shared_ptr<std::vector<HiSysEventRecord>> sysEvents) = 0;
H A Dhisysevent_query_callback_c.h36 … void OnQuery(std::shared_ptr<std::vector<OHOS::HiviewDFX::HiSysEventRecord>> sysEvents) override;
H A Dhisysevent_manager_c.h53 void (*OnQuery)(HiSysEventRecordC records[], size_t size); member
/ohos5.0/base/hiviewdfx/hisysevent/frameworks/native/test/unittest/common/
H A Dhisysevent_tool_unit_test.cpp167 query1.OnQuery(nullptr);
169 query1.OnQuery(records1);
172 query2.OnQuery(nullptr);
174 query2.OnQuery(records1);
/ohos5.0/foundation/distributeddatamgr/datamgr_service/services/distributeddataservice/service/data_share/
H A Ddata_share_service_stub.h35 int32_t OnQuery(MessageParcel& data, MessageParcel& reply);
62 &DataShareServiceStub::OnQuery,
/ohos5.0/docs/en/device-dev/subsystems/
H A Dsubsys-dfx-hisysevent-query.md19 > For details about **HiSysEventRecord** in the **OnQuery()** API of **HiSysEventQueryCallback**, s…
86 | void&nbsp;HiSysEventQueryCallback::OnQuery(std::shared_ptr&lt;std::vector&lt;HiSysEventRecord&gt;…
120 | OnQuery | void (*)(HiSysEventRecord records[], size_t size); | Callback object for event query…
179 void OnQuery(std::shared_ptr<std::vector<HiSysEventRecord>> sysEvents) override
231 printf("OnQuery: event=%s", records[i].jsonStr);
262 callback.OnQuery = OnQueryTest;
295 void OnQuery(std::shared_ptr<std::vector<HiSysEventRecord>> sysEvents) override
355 printf("OnQuery: event=%s", records[i].jsonStr);
384 callback.OnQuery = OnQueryTest;
/ohos5.0/base/hiviewdfx/hisysevent/interfaces/native/innerkits/hisysevent_manager/
H A Dhisysevent_manager_c.cpp59 …auto callbackC = std::make_shared<HiSysEventQueryCallbackC>(callback.OnQuery, callback.OnComplete); in HiSysEventQuery()
106 if (callback == nullptr || callback->OnQuery == nullptr || callback->OnComplete == nullptr) { in OH_HiSysEvent_Query()
/ohos5.0/base/security/security_guard/interfaces/inner_api/obtaindata/include/
H A Dsecurity_event_query_callback.h28 virtual void OnQuery(const std::vector<SecurityCollector::SecurityEvent> &events) = 0;
H A Dsecurity_event_query_callback_service.h33 void OnQuery(const std::vector<SecurityCollector::SecurityEvent> &events) override;
/ohos5.0/base/hiviewdfx/hiview/adapter/plugins/eventservice/service/idl/include/
H A Diquery_base_callback.h29 …virtual void OnQuery(const std::vector<std::u16string>& sysEvent, const std::vector<int64_t>& seq)…
H A Dquery_sys_event_callback_proxy.h34 void OnQuery(const std::vector<std::u16string>& sysEvent, const std::vector<int64_t>& seq);
H A Ddata_publisher_sys_event_callback.h33 …void OnQuery(const std::vector<std::u16string>& sysEvent, const std::vector<int64_t>& seq) overrid…
/ohos5.0/base/hiviewdfx/hisysevent/adapter/native/idl/include/
H A Diquery_sys_event_callback.h27 …virtual void OnQuery(const std::vector<std::u16string>& sysEvent, const std::vector<int64_t>& seq)…
H A Dhisysevent_query_proxy.h34 void OnQuery(const ::std::vector<std::u16string>& sysEvent,
/ohos5.0/base/security/security_guard/services/data_collect/sa/include/
H A Dsecurity_event_query_callback_proxy.h32 void OnQuery(const std::vector<SecurityCollector::SecurityEvent> &events) override;
/ohos5.0/base/hiviewdfx/hisysevent/frameworks/native/c_wrapper/include/
H A Dhisysevent_rust_querier.h31 …virtual void OnQuery(std::shared_ptr<std::vector<OHOS::HiviewDFX::HiSysEventRecord>> sysEvents) ov…
/ohos5.0/base/hiviewdfx/hisysevent/frameworks/native/
H A Dhisysevent_tool_query.cpp32 void HiSysEventToolQuery::OnQuery(std::shared_ptr<std::vector<HiSysEventRecord>> sysEvents) in OnQuery() function in OHOS::HiviewDFX::HiSysEventToolQuery
/ohos5.0/base/hiviewdfx/hisysevent/frameworks/native/include/
H A Dhisysevent_tool_query.h32 void OnQuery(std::shared_ptr<std::vector<HiSysEventRecord>> sysEvents);
/ohos5.0/base/hiviewdfx/hisysevent/interfaces/js/kits/napi/include/
H A Dnapi_hisysevent_querier.h40 virtual void OnQuery(const ::std::vector<std::string>& sysEvents,
/ohos5.0/base/hiviewdfx/hisysevent/interfaces/rust/innerkits/src/
H A Dsys_event_manager.rs241 pub type OnQuery = unsafe extern "C" fn ( typedef
258 pub on_query_wrapper_cb: OnQuery,
596 on_query_wrapper_callback: OnQuery, in CreateRustEventQuerier() argument
/ohos5.0/base/hiviewdfx/hiview/adapter/plugins/eventservice/service/test/unittest/common/
H A Ddata_share_test.cpp199 callback1.OnQuery(eventList1, emptySeqList);
205 callback2.OnQuery(eventList2, emptySeqList);

12