Home
last modified time | relevance | path

Searched refs:QuerySelfFaultLog (Results 1 – 17 of 17) sorted by relevance

/base/hiviewdfx/hiview/plugins/faultlogger/interfaces/cpp/innerkits/test/common/moduletest/
Dfaultlogger_native_interface_test.cpp142 auto result = QuerySelfFaultLog(FaultLogType::NO_SPECIFIC, maxQueryCount);
185 auto result = QuerySelfFaultLog(FaultLogType::NO_SPECIFIC, maxQueryCount);
187 auto result2 = QuerySelfFaultLog(FaultLogType::NO_SPECIFIC, maxQueryCount);
205 auto result = QuerySelfFaultLog(FaultLogType::CPP_CRASH, maxQueryCount);
207 auto result2 = QuerySelfFaultLog(FaultLogType::CPP_CRASH, maxQueryCount);
225 …auto result = QuerySelfFaultLog(static_cast<OHOS::HiviewDFX::FaultLogType>(-1), -1); // -1 : inval…
227 auto result2 = QuerySelfFaultLog(FaultLogType::CPP_CRASH, 100000); // 100000 : max count
254 auto results = QuerySelfFaultLog(FaultLogType::JS_CRASH, maxQueryCount);
292 auto results = QuerySelfFaultLog(FaultLogType::RUST_PANIC, maxQueryCount);
/base/hiviewdfx/hiview/plugins/faultlogger/service/idl/include/
Difaultlogger_service.h32 virtual sptr<IRemoteObject> QuerySelfFaultLog(int32_t faultType, int32_t maxNum) = 0;
Dfaultlogger_service_proxy.h33 virtual sptr<IRemoteObject> QuerySelfFaultLog(int32_t faultType, int32_t maxNum) override;
Dfaultlogger_service_ohos.h45 sptr<IRemoteObject> QuerySelfFaultLog(int32_t faultType, int32_t maxNum) override;
/base/hiviewdfx/hiview/plugins/faultlogger/common/
Dfaultlogger_plugin.h45 virtual std::unique_ptr<FaultLogQueryResultInner> QuerySelfFaultLog(int32_t uid, int32_t pid, in QuerySelfFaultLog() function
/base/hiviewdfx/hiview/plugins/faultlogger/interfaces/cpp/innerkits/include/
Dfaultlogger_client.h134 std::unique_ptr<FaultLogQueryResult> QuerySelfFaultLog(FaultLogType faultType, int32_t maxNum);
/base/hiviewdfx/hiview/plugins/faultlogger/service/idl/src/
Dfaultlogger_service_stub.cpp54 auto result = QuerySelfFaultLog(type, maxNum); in OnRemoteRequest()
Dfaultlogger_service_proxy.cpp55 sptr<IRemoteObject> FaultLoggerServiceProxy::QuerySelfFaultLog(int32_t faultType, int32_t maxNum) in QuerySelfFaultLog() function in OHOS::HiviewDFX::FaultLoggerServiceProxy
/base/hiviewdfx/hiview/plugins/faultlogger/interfaces/cpp/innerkits/impl/
Dfaultlogger_client.cpp124 std::unique_ptr<FaultLogQueryResult> QuerySelfFaultLog(FaultLogType faultType, int32_t maxNum) in QuerySelfFaultLog() function
132 auto result = service->QuerySelfFaultLog(static_cast<int32_t>(faultType), maxNum); in QuerySelfFaultLog()
/base/hiviewdfx/hiview/plugins/faultlogger/service/idl/
Dfaultlogger_service_ohos.cpp133 sptr<IRemoteObject> FaultloggerServiceOhos::QuerySelfFaultLog(int32_t faultType, int32_t maxNum) in QuerySelfFaultLog() function in OHOS::HiviewDFX::FaultloggerServiceOhos
149 auto queryResult = service->QuerySelfFaultLog(uid, pid, faultType, maxNum); in QuerySelfFaultLog()
/base/hiviewdfx/hiview/plugins/faultlogger/test/common/fuzztest/faultloggerclient_fuzzer/
Dfaultlogger_client_fuzzer.cpp43 auto result = HiviewDFX::QuerySelfFaultLog(type, count); in FuzzInterfaceQuerySelfFaultLog()
/base/hiviewdfx/hiview/plugins/faultlogger/service/
Dfaultlogger.h60 std::unique_ptr<FaultLogQueryResultInner> QuerySelfFaultLog(int32_t uid,
Dfaultlogger.cpp493 std::unique_ptr<FaultLogQueryResultInner> Faultlogger::QuerySelfFaultLog(int32_t id, in QuerySelfFaultLog() function in OHOS::HiviewDFX::Faultlogger
/base/hiviewdfx/hiview/plugins/faultlogger/test/common/fuzztest/faultloggerservice_fuzzer/
Dfaultlogger_service_fuzzer.cpp80 (void)serviceOhos.QuerySelfFaultLog(faultType, maxNum); in FuzzServiceInterfaceQuerySelfFaultLog()
/base/hiviewdfx/hiview/plugins/faultlogger/test/common/unittest/
Dfaultlogger_client_unittest.cpp127 auto result = QuerySelfFaultLog(FaultLogType::NO_SPECIFIC, maxQueryCount);
Dfaultlogger_unittest.cpp513 auto list = serviceOhos.QuerySelfFaultLog(2, 10);
522 list = serviceOhos.QuerySelfFaultLog(2, 10);
531 list = serviceOhos.QuerySelfFaultLog(8, 10);
/base/hiviewdfx/hiview/plugins/faultlogger/interfaces/js/napi/
Dnapi_faultlogger.cpp82 auto faultLogResult = QuerySelfFaultLog((FaultLogType)faultLogInfoContext->faultType, in FaultLogExecuteCallback()
155 static napi_value QuerySelfFaultLog(napi_env env, napi_callback_info info) in QuerySelfFaultLog() function
393 DECLARE_NAPI_FUNCTION("querySelfFaultLog", QuerySelfFaultLog), in InitNapiRegistry()