当前仓库属于关闭状态,部分功能使用受限,详情请查阅 仓库状态说明
46 Star 179 Fork 4.8K

OpenHarmony/interface_sdk-js
关闭

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
@ohos.hichecker.d.ts 4.29 KB
一键复制 编辑 原始数据 按行查看 历史
ganchuantao 提交于 1个月前 . fix:adapter arkts 1.2
/*
* Copyright (c) 2022 Huawei Device Co., Ltd.
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
/**
* @file
* @kit PerformanceAnalysisKit
*/
/**
* This module provides the capability to check bad code usage.
*
* @namespace hichecker
* @syscap SystemCapability.HiviewDFX.HiChecker
* @since arkts {'1.1':'8','1.2':'20'}
* @arkts 1.1&1.2
*/
declare namespace hichecker {
/**
* The caution rule print log.
*
* @constant
* @syscap SystemCapability.HiviewDFX.HiChecker
* @since arkts {'1.1':'8','1.2':'20'}
* @arkts 1.1&1.2
*/
const RULE_CAUTION_PRINT_LOG = 9223372036854775808n; // 1 << 63
/**
* The caution rule trigger crash.
*
* @constant
* @syscap SystemCapability.HiviewDFX.HiChecker
* @since arkts {'1.1':'8','1.2':'20'}
* @arkts 1.1&1.2
*/
const RULE_CAUTION_TRIGGER_CRASH = 4611686018427387904n; // 1 << 62
/**
* The thread rule check slow process.
*
* @constant
* @syscap SystemCapability.HiviewDFX.HiChecker
* @since arkts {'1.1':'8','1.2':'20'}
* @arkts 1.1&1.2
*/
const RULE_THREAD_CHECK_SLOW_PROCESS = 1n;
/**
* The process rule check ability connection leak.
*
* @constant
* @syscap SystemCapability.HiviewDFX.HiChecker
* @since arkts {'1.1':'8','1.2':'20'}
* @arkts 1.1&1.2
*/
const RULE_CHECK_ABILITY_CONNECTION_LEAK = 8589934592n; // 1 << 33
/**
* The process rule check ability Arkui performance
*
* @constant
* @syscap SystemCapability.HiviewDFX.HiChecker
* @since arkts {'1.1':'11','1.2':'20'}
* @arkts 1.1&1.2
*/
const RULE_CHECK_ARKUI_PERFORMANCE = 17179869184n; // 1 << 34
/**
* add one or more rule.
*
* @param { bigint } rule
* @syscap SystemCapability.HiviewDFX.HiChecker
* @since 8
* @deprecated since 9
* @useinstead ohos.hichecker/hichecker#addCheckRule
*/
function addRule(rule: bigint): void;
/**
* remove one or more rule.
*
* @param { bigint } rule
* @syscap SystemCapability.HiviewDFX.HiChecker
* @since 8
* @deprecated since 9
* @useinstead ohos.hichecker/hichecker#removeCheckRule
*/
function removeRule(rule: bigint): void;
/**
* get added rule
*
* @returns { bigint } all added thread rule and process rule.
* @syscap SystemCapability.HiviewDFX.HiChecker
* @since arkts {'1.1':'8','1.2':'20'}
* @arkts 1.1&1.2
*/
function getRule(): bigint;
/**
* whether the query rule is added
*
* @param { bigint } rule
* @returns { boolean } the result of whether the query rule is added.
* @syscap SystemCapability.HiviewDFX.HiChecker
* @since 8
* @deprecated since 9
* @useinstead ohos.hichecker/hichecker#containsCheckRule
*/
function contains(rule: bigint): boolean;
/**
* Add one or more rule.
*
* @param { bigint } rule
* @throws { BusinessError } 401 - the parameter check failed, only one bigint type parameter is needed
* @syscap SystemCapability.HiviewDFX.HiChecker
* @since arkts {'1.1':'9','1.2':'20'}
* @arkts 1.1&1.2
*/
function addCheckRule(rule: bigint): void;
/**
* Remove one or more rule.
*
* @param { bigint } rule
* @throws { BusinessError } 401 - the parameter check failed, only one bigint type parameter is needed
* @syscap SystemCapability.HiviewDFX.HiChecker
* @since arkts {'1.1':'9','1.2':'20'}
* @arkts 1.1&1.2
*/
function removeCheckRule(rule: bigint): void;
/**
* Whether the query rule is added
*
* @param { bigint } rule
* @returns { boolean } the result of whether the query rule is added.
* @throws { BusinessError } 401 - the parameter check failed, only one bigint type parameter is needed
* @syscap SystemCapability.HiviewDFX.HiChecker
* @since arkts {'1.1':'9','1.2':'20'}
* @arkts 1.1&1.2
*/
function containsCheckRule(rule: bigint): boolean;
}
export default hichecker;
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/openharmony/interface_sdk-js.git
git@gitee.com:openharmony/interface_sdk-js.git
openharmony
interface_sdk-js
interface_sdk-js
master

搜索帮助