提交 4afdd670 编写于 作者: J jiangyuan0000

描述修改

Signed-off-by: Njiangyuan0000 <jiangyuan29@huawei.com>
上级 7563a68f
...@@ -16,7 +16,7 @@ import hidebug from '@ohos.hidebug'; ...@@ -16,7 +16,7 @@ import hidebug from '@ohos.hidebug';
getNativeHeapSize(): bigint getNativeHeapSize(): bigint
获取native heap内存的总大小。 获取本应用堆内存的总大小。
本接口在OpenHarmony 3.1 Release版本仅为接口定义,暂不支持使用。 本接口在OpenHarmony 3.1 Release版本仅为接口定义,暂不支持使用。
...@@ -26,7 +26,7 @@ getNativeHeapSize(): bigint ...@@ -26,7 +26,7 @@ getNativeHeapSize(): bigint
| 类型 | 说明 | | 类型 | 说明 |
| ------ | --------------------------- | | ------ | --------------------------- |
| bigint | 返回native heap内存总大小,单位为kB。 | | bigint | 返回本应用堆内存总大小,单位为kB。 |
**示例:** **示例:**
...@@ -39,7 +39,7 @@ getNativeHeapSize(): bigint ...@@ -39,7 +39,7 @@ getNativeHeapSize(): bigint
getNativeHeapAllocatedSize(): bigint getNativeHeapAllocatedSize(): bigint
获取native heap内存的已分配内存大小。 获取本应用堆内存的已分配内存大小。
本接口在OpenHarmony 3.1 Release版本仅为接口定义,暂不支持使用。 本接口在OpenHarmony 3.1 Release版本仅为接口定义,暂不支持使用。
...@@ -49,7 +49,7 @@ getNativeHeapAllocatedSize(): bigint ...@@ -49,7 +49,7 @@ getNativeHeapAllocatedSize(): bigint
| 类型 | 说明 | | 类型 | 说明 |
| ------ | --------------------------------- | | ------ | --------------------------------- |
| bigint | 返回native heap内存的已分配内存,单位为kB。 | | bigint | 返回本应用堆内存的已分配内存,单位为kB。 |
**示例:** **示例:**
...@@ -62,7 +62,7 @@ getNativeHeapAllocatedSize(): bigint ...@@ -62,7 +62,7 @@ getNativeHeapAllocatedSize(): bigint
getNativeHeapFreeSize(): bigint getNativeHeapFreeSize(): bigint
获取native heap内存的空闲内存大小。 获取本应用堆内存的空闲内存大小。
本接口在OpenHarmony 3.1 Release版本仅为接口定义,暂不支持使用。 本接口在OpenHarmony 3.1 Release版本仅为接口定义,暂不支持使用。
...@@ -72,7 +72,7 @@ getNativeHeapFreeSize(): bigint ...@@ -72,7 +72,7 @@ getNativeHeapFreeSize(): bigint
| 类型 | 说明 | | 类型 | 说明 |
| ------ | ------------------------------- | | ------ | ------------------------------- |
| bigint | 返回native heap内存的空闲内存,单位为kB。 | | bigint | 返回本应用堆内存的空闲内存,单位为kB。 |
**示例:** **示例:**
```js ```js
...@@ -84,7 +84,7 @@ getNativeHeapFreeSize(): bigint ...@@ -84,7 +84,7 @@ getNativeHeapFreeSize(): bigint
getPss(): bigint getPss(): bigint
获取应用进程PSS内存大小。 获取应用进程实际使用的物理内存大小。
**系统能力:** SystemCapability.HiviewDFX.HiProfiler.HiDebug **系统能力:** SystemCapability.HiviewDFX.HiProfiler.HiDebug
...@@ -92,7 +92,7 @@ getPss(): bigint ...@@ -92,7 +92,7 @@ getPss(): bigint
| 类型 | 说明 | | 类型 | 说明 |
| ------ | ------------------------- | | ------ | ------------------------- |
| bigint | 返回应用进程PSS内存大小,单位为kB。 | | bigint | 返回应用进程实际使用的物理内存大小,单位为kB。 |
**示例:** **示例:**
```js ```js
...@@ -144,7 +144,7 @@ getPrivateDirty(): bigint ...@@ -144,7 +144,7 @@ getPrivateDirty(): bigint
getCpuUsage(): number getCpuUsage(): number
获取进程的cpu用率。 获取进程的cpu使用率。
如占用率为50%,则返回0.5。 如占用率为50%,则返回0.5。
...@@ -154,7 +154,7 @@ getCpuUsage(): number ...@@ -154,7 +154,7 @@ getCpuUsage(): number
| 类型 | 说明 | | 类型 | 说明 |
| ------ | -------------------------- | | ------ | -------------------------- |
| number | 获取进程的cpu用率。 | | number | 获取进程的cpu使用率。 |
**示例:** **示例:**
...@@ -166,7 +166,7 @@ getCpuUsage(): number ...@@ -166,7 +166,7 @@ getCpuUsage(): number
startProfiling(filename : string) : void startProfiling(filename : string) : void
启动虚拟机Profiling方法跟踪,`startProfiling()`方法的调用需要与`stopProfiling()`方法的调用一一对应,先开启后关闭,严禁使用`start->start->stop``start->stop->stop``start->start->stop->stop`顺序的调用方式 启动虚拟机Profiling方法跟踪,`startProfiling()`方法的调用需要与`stopProfiling()`方法的调用一一对应,先开启后关闭,严禁使用`start->start->stop``start->stop->stop``start->start->stop->stop`类似的顺序调用
**系统能力:** SystemCapability.HiviewDFX.HiProfiler.HiDebug **系统能力:** SystemCapability.HiviewDFX.HiProfiler.HiDebug
...@@ -192,7 +192,7 @@ hidebug.stopProfiling(); ...@@ -192,7 +192,7 @@ hidebug.stopProfiling();
stopProfiling() : void stopProfiling() : void
停止虚拟机Profiling方法跟踪,`stopProfiling()`方法的调用需要与`startProfiling()`方法的调用一一对应,先开启后关闭,严禁使用`start->start->stop``start->stop->stop``start->start->stop->stop`顺序的调用方式 停止虚拟机Profiling方法跟踪,`stopProfiling()`方法的调用需要与`startProfiling()`方法的调用一一对应,先开启后关闭,严禁使用`start->start->stop``start->stop->stop``start->start->stop->stop`类似的顺序调用
**系统能力:** SystemCapability.HiviewDFX.HiProfiler.HiDebug **系统能力:** SystemCapability.HiviewDFX.HiProfiler.HiDebug
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册