| /developtools/ace_ets2bundle/koala-wrapper/koalaui/interop/src/interop/ |
| D | Platform.ts | 41 abstract getArraySize(blob: KPointer): int32 42 abstract disposeArray(blob: KPointer): void 43 abstract getArrayElement(blob: KPointer, index: int32): T 45 decode(blob: KPointer): Array<T> { 46 const size = this.getArraySize(blob) 49 result[index] = this.getArrayElement(blob, index) 51 this.disposeArray(blob)
|
| /developtools/ace_ets2bundle/koala-wrapper/src/arkts-api/utilities/ |
| D | nativePtrDecoder.ts | 60 getArraySize(blob: pointer) { 61 return global.interop._GetPtrVectorSize(blob) 63 disposeArray(blob: pointer): void { 66 getArrayElement(blob: pointer, index: int32): pointer { 67 return global.interop._GetPtrVectorElement(blob, index)
|
| /developtools/ace_ets2bundle/koala-wrapper/koalaui/interop/dist/lib/src/interop/ |
| D | Platform.d.ts | 27 abstract getArraySize(blob: KPointer): int32; 28 abstract disposeArray(blob: KPointer): void; 29 abstract getArrayElement(blob: KPointer, index: int32): T; 30 decode(blob: KPointer): Array<T>;
|
| D | Platform.js | 34 decode(blob) { argument 35 const size = this.getArraySize(blob); 38 result[index] = this.getArrayElement(blob, index); 40 this.disposeArray(blob);
|
| /developtools/global_resource_tool/ |
| D | README_zh.md | 24 [SDK编译命令参考](https://gitee.com/openharmony/build/blob/master/README_zh.md) 154 [资源类型介绍](https://gitee.com/openharmony/docs/blob/master/zh-cn/application-dev/quick-start/resource-… 160 [third_party_cJSON](https://gitee.com/openharmony/third_party_cJSON/blob/master/README.md) 162 [third_party_libpng](https://gitee.com/openharmony/third_party_libpng/blob/master/README.md) 164 …unction](https://gitee.com/openharmony/third_party_bounds_checking_function/blob/master/README.md )
|
| D | README.md | 53 [third_party_cJSON](https://gitee.com/openharmony/third_party_cJSON/blob/master/README.md) 55 [third_party_libpng](https://gitee.com/openharmony/third_party_libpng/blob/master/README.md) 57 …ction](https://gitee.com/openharmony/third_party_bounds_checking_function/blob/master/README.en.md)
|
| /developtools/ace_ets2bundle/compiler/tools/memory_dotting_viewer/memory/ |
| D | MainMemory.js | 71 const blob = await downloadRes.blob(); 72 const file = new File([blob], filename, {type: blob.type});
|
| /developtools/packing_tool/jar/ |
| D | prebuilts-readme-fastjson.md | 3 1. 获取最新版本的说明文档,请参考如下:[fastjson README](https://github.com/alibaba/fastjson/blob/1.2.83/README.md)
|
| /developtools/smartperf_host/smartperf_host/trace_streamer/ |
| D | .gn_win | 15 # REF: https://gitee.com/openharmony/third_party_llvm-project/blob/master/llvm/utils/gn/.gn
|
| D | .gn | 16 # REF: https://gitee.com/openharmony/third_party_llvm-project/blob/master/llvm/utils/gn/.gn
|
| D | .gn_unix | 16 # REF: https://gitee.com/openharmony/third_party_llvm-project/blob/master/llvm/utils/gn/.gn
|
| /developtools/smartperf_host/smartperf_host/ide/src/trace/component/ |
| D | SpAiAnalysisPage.ts | 304 response.blob().then(blob => { 306 reader.readAsArrayBuffer(blob); 727 const blob = new Blob([reqBufferDB]); constant 728 const response = new Response(blob);
|
| /developtools/hdc/src/common/ |
| D | hdc_huks.cpp | 151 { .tag = HKS_TAG_NONCE, .blob = { length, nonce} }, in MakeAesGcmEncryptParamSets() 206 { .tag = HKS_TAG_NONCE, .blob = { nonce.size(), nonce.data()} }, in MakeAesGcmDecryptParamSets()
|
| /developtools/profiler/host/smartperf/client/client_ui/ |
| D | README_zh.md | 5 …,性能较差或无屏幕设备请使用[命令行版本](https://gitee.com/openharmony/developtools_profiler/blob/master/host/smartpe…
|
| /developtools/smartperf_host/smartperf_host/ |
| D | README_zh.md | 56 …程smaps的抓取和展示说明](https://gitee.com/openharmony/developtools_smartperf_host/blob/master/ide/src/doc/…
|
| /developtools/syscap_codec/ |
| D | README_ZH.md | 69 1. 编译命令:参考[编译构建](https://gitee.com/openharmony/build/blob/master/README_zh.md)文档,执行其指定的sdk编译命令来编译整个…
|
| D | README.md | 65 …ure. How to build SDK please refer to https://gitee.com/openharmony/build/blob/master/README_zh.md.
|
| /developtools/hdc/ |
| D | README.md | 42 1. Compile command: Please refer to https://gitee.com/openharmony/build/blob/master/README_zh.md to…
|
| D | README_zh.md | 45 1. 编译命令:编译sdk命令 请参考https://gitee.com/openharmony/build/blob/master/README_zh.md 仓编译sdk说明, 执行其指定的sdk…
|
| /developtools/profiler/host/smartperf/client/client_command/ |
| D | README_zh.md | 6 …的设备且性能较好的设备推荐使用[UI版本](https://gitee.com/openharmony/developtools_profiler/blob/master/host/smartpe…
|
| /developtools/smartperf_host/smartperf_host/ide/src/trace/component/trace/base/ |
| D | TraceSheet.ts | 810 let blob: Blob | null = file.slice(writeSize, writeSize + sliceLen); 811 let buffer: ArrayBuffer | null = await blob.arrayBuffer(); 833 blob = null;
|
| /developtools/smartperf_host/smartperf_host/ide/src/trace/database/ |
| D | TraceWorker.ts | 1337 let blob: Blob | null = file.slice(writeSize, writeSize + sliceLen); variable 1338 let buffer: ArrayBuffer | null = await blob.arrayBuffer(); 1348 blob = null;
|
| /developtools/profiler/hiebpf/include/ |
| D | vmlinux.h | 7597 void *blob; member 21957 long unsigned int blob[16]; member 52393 unsigned char blob[512]; member
|