Home
last modified time | relevance | path

Searched refs:JS_CRASH (Results 1 – 25 of 29) sorted by relevance

12

/ohos5.0/docs/zh-cn/release-notes/changelogs/v4.0-beta1/
H A Dchangelogs-ability.md22 | JS_CRASH_NO_RESTART | 0x0002 | 发生JS_CRASH时**不重启**应用。 |
31 | RESTART_WHEN_JS_CRASH | 0x0001 | 发生JS_CRASH时**重启**应用。 |
/ohos5.0/docs/zh-cn/release-notes/changelogs/OpenHarmony_3.2.10.6/
H A Dchangelogs-ability.md21 | JS_CRASH_NO_RESTART | 0x0002 | 发生JS_CRASH时**不重启**应用。 |
30 | RESTART_WHEN_JS_CRASH | 0x0001 | 发生JS_CRASH时**重启**应用。 |
/ohos5.0/docs/zh-cn/release-notes/changelogs/OpenHarmony_4.0.2.3/
H A Dchangelogs-ability.md21 | JS_CRASH_NO_RESTART | 0x0002 | 发生JS_CRASH时**不重启**应用。 |
30 | RESTART_WHEN_JS_CRASH | 0x0001 | 发生JS_CRASH时**重启**应用。 |
/ohos5.0/docs/zh-cn/application-dev/reference/apis-performance-analysis-kit/
H A Djs-apis-faultLogger.md23 | JS_CRASH | 3 | JS程序故障类型 |
94 FaultLogger.query(FaultLogger.FaultType.JS_CRASH, queryFaultLogCallback);
138 …t value: Array<FaultLogger.FaultLogInfo> = await FaultLogger.query(FaultLogger.FaultType.JS_CRASH);
204 FaultLogger.querySelfFaultLog(FaultLogger.FaultType.JS_CRASH, queryFaultLogCallback);
237 …ay<FaultLogger.FaultLogInfo> = await FaultLogger.querySelfFaultLog(FaultLogger.FaultType.JS_CRASH);
/ohos5.0/docs/en/release-notes/changelogs/v4.0-beta1/
H A Dchangelogs-ability.md22 …H_NO_RESTART | 0x0002 | The application is **not restarted** in the case of JS_CRASH.|
31 | RESTART_WHEN_JS_CRASH | 0x0001 | The application is **restarted** in the case of JS_CRASH.|
/ohos5.0/docs/en/release-notes/changelogs/OpenHarmony_3.2.10.6/
H A Dchangelogs-ability.md21 …H_NO_RESTART | 0x0002 | The application is **not restarted** in the case of JS_CRASH.|
30 | RESTART_WHEN_JS_CRASH | 0x0001 | The application is **restarted** in the case of JS_CRASH.|
/ohos5.0/docs/en/release-notes/changelogs/OpenHarmony_4.0.2.3/
H A Dchangelogs-ability.md21 …H_NO_RESTART | 0x0002 | The application is **not restarted** in the case of JS_CRASH.|
30 | RESTART_WHEN_JS_CRASH | 0x0001 | The application is **restarted** in the case of JS_CRASH.|
/ohos5.0/base/hiviewdfx/hiview/plugins/faultlogger/interfaces/js/test/unittest/
H A DExampleJsunit.test.js101 …let ret2 = faultlogger.querySelfFaultLog(faultlogger.FaultType.JS_CRASH, "faultloggertestsummary01…
157 let ret = faultlogger.query(faultlogger.FaultType.JS_CRASH, "faultloggertestsummary03");
296 expect(faultLogInfos[1].type).assertEqual(faultlogger.FaultType.JS_CRASH);
/ohos5.0/docs/en/application-dev/reference/apis-performance-analysis-kit/
H A Djs-apis-faultLogger.md23 | JS_CRASH | 3 | JS program crash.|
94 FaultLogger.query(FaultLogger.FaultType.JS_CRASH, queryFaultLogCallback);
138 …t value: Array<FaultLogger.FaultLogInfo> = await FaultLogger.query(FaultLogger.FaultType.JS_CRASH);
204 FaultLogger.querySelfFaultLog(FaultLogger.FaultType.JS_CRASH, queryFaultLogCallback);
237 …ay<FaultLogger.FaultLogInfo> = await FaultLogger.querySelfFaultLog(FaultLogger.FaultType.JS_CRASH);
/ohos5.0/base/hiviewdfx/hiview/plugins/faultlogger/interfaces/js/declaration/
H A D@ohos.faultLogger.d.ts51 JS_CRASH = 3,
/ohos5.0/base/hiviewdfx/hiview/plugins/faultlogger/interfaces/cpp/innerkits/include/
H A Dfaultlogger_client.h57 JS_CRASH, enumerator
/ohos5.0/base/hiviewdfx/hiview/plugins/faultlogger/common/
H A Dfaultlog_util.cpp56 case FaultLogType::JS_CRASH: in GetFaultNameByType()
113 return FaultLogType::JS_CRASH; in GetLogTypeByName()
H A Dfaultlog_info.h45 JS_CRASH, enumerator
/ohos5.0/base/hiviewdfx/faultloggerd/interfaces/common/
H A Ddfx_socket_request.h33 JS_CRASH, enumerator
/ohos5.0/base/hiviewdfx/hiview/plugins/faultlogger/interfaces/cpp/innerkits/
H A Dfaultlog_info.cpp118 case JS_CRASH: in GetStringFaultType()
/ohos5.0/base/hiviewdfx/hiview/plugins/faultlogger/service/
H A Dfaultlog_database.cpp127 if (faultType == FaultLogType::JS_CRASH || faultType == FaultLogType::ALL) { in CreateQueries()
140 if (faultType != FaultLogType::JS_CRASH) { in CreateQueries()
H A Dfaultlog_formatter.cpp117 case FaultLogType::JS_CRASH: in GetLogParseList()
138 case FaultLogType::JS_CRASH: in GetSummaryByType()
/ohos5.0/docs/zh-cn/release-notes/changelogs/v3.2-beta5/
H A Dchangelogs-ability.md156 | JS_CRASH_NO_RESTART | 0x0002 | 发生JS_CRASH时**不重启**应用。 |
166 | RESTART_WHEN_JS_CRASH | 0x0001 | 发生JS_CRASH时**重启**应用。 |
/ohos5.0/base/hiviewdfx/hiview/plugins/faultlogger/interfaces/cpp/innerkits/test/common/moduletest/
H A Dfaultlogger_native_interface_test.cpp254 auto results = QuerySelfFaultLog(FaultLogType::JS_CRASH, maxQueryCount);
/ohos5.0/docs/zh-cn/application-dev/reference/apis-ability-kit/
H A Djs-apis-app-ability-appRecovery.md25 | RESTART_WHEN_JS_CRASH | 0x0001 | 发生JS_CRASH时重启应用。 |
/ohos5.0/docs/zh-cn/release-notes/api-diff/v3.1-Release/
H A Djs-apidiff-dfx.md80 | ohos.faultLogger | FaultType | JS_CRASH = 3 | 新增 |
/ohos5.0/docs/en/release-notes/changelogs/v3.2-beta5/
H A Dchangelogs-ability.md152 | JS_CRASH_NO_RESTART | 0x0002 | The application is **not restarted** in the case of JS_CRASH. |
162 | RESTART_WHEN_JS_CRASH | 0x0001 | The application is **restarted** in the case of JS_CRASH. |
/ohos5.0/docs/en/release-notes/api-diff/v3.1-Release/
H A Djs-apidiff-dfx.md80 | ohos.faultLogger | FaultType | JS_CRASH = 3 | Added|
/ohos5.0/docs/zh-cn/application-dev/dfx/
H A Dapprecovery-guidelines.md73 | [JS_CRASH](../reference/apis-performance-analysis-kit/js-apis-faultLogger.md#faulttype) | 支持|支持|支…
/ohos5.0/base/hiviewdfx/hiview/plugins/faultlogger/interfaces/js/napi/
H A Dnapi_faultlogger.cpp321 napi_create_int32(env, FaultLogType::JS_CRASH, &jsCrash); in FaultLogTypeEnumInit()

12