Home
last modified time | relevance | path

Searched full:a (Results 1 – 25 of 4073) sorted by relevance

12345678910>>...163

/developtools/hdc/
DREADME_zh.md1 # HDC-OpenHarmony设备连接器<a name="ZH-CN_TOPIC_0000001149090043"></a>
3 - [HDC-OpenHarmony设备连接器<a name="ZH-CN_TOPIC_0000001149090043"></a>](#)
4 - [简介<a name="section662115419449"></a>](#简介)
5 - [架构<a name="section15908143623714"></a>](#架构)
6 - [目录<a name="section161941989596"></a>](#目录)
7 - [pc端编译说明<a name="section129654513262"></a>](#pc端编译说明)
8 - [pc端获取说明<a name="section129654513263"></a>](#pc端获取说明)
9 - [Linux端USB设备权限说明<a name="section129654513264"></a>](#linux端usb设备权限说明)
10 - [命令帮助<a name="section129654513265"></a>](#命令帮助)
11 - [使用问题自查说明<a name="section1371113476307"></a>](#使用问题自查说明)
[all …]
DREADME.md1 # HDC-OpenHarmony Device Connector<a name="EN-US_TOPIC_0000001149090043"></a>
3 - [HDC-OpenHarmony Device Connector<a name="EN-US_TOPIC_0000001149090043"></a>](#hdc-OpenHarmony-De…
4 - [Introduction<a name="section662115419449"></a>](#introduction)
5 - [Architecture<a name="section15908143623714"></a>](#architecture)
6 - [Table of Contents<a name="section161941989596"></a>](#table-of-contents)
7 …- [PC-side compilation instructions<a name="section129654513262"></a>](#pc-side-compilation-instru…
8 - [Getting instructions on pc<a name="section129654513263"></a>](#getting-instructions-on-pc)
9 - [More help and docs<a name="section129654513264"></a>](#more-help-and-docs)
11 ## Introduction<a name="section662115419449"></a>
13 HDC (OpenHarmony Device Connector) is a command-line tool for developers to connect and debug the d…
[all …]
/developtools/profiler/
DREADME_zh.md1 # 性能调优组件<a name="ZH-CN_TOPIC_0000001149491319"></a>
23 ## 简介<a name="section6874544183112"></a>
29 ## 架构图<a name="section1514713331342"></a>
33 ## 目录<a name="section1742612449345"></a>
72 ## 说明<a name="section2165102016359"></a>
76 ### 接口说明<a name="section558917318367"></a>
84 <a name="table214mcpsimp"></a>
85 …idth="30%" id="mcps1.2.4.1.1"><p id="p223mcpsimp"><a name="p223mcpsimp"></a><a name="p223mcpsimp">…
87 …00000003%" id="mcps1.2.4.1.2"><p id="p225mcpsimp"><a name="p225mcpsimp"></a><a name="p225mcpsimp">…
89 …h="39.98%" id="mcps1.2.4.1.3"><p id="p227mcpsimp"><a name="p227mcpsimp"></a><a name="p227mcpsimp">…
[all …]
/developtools/ace_ets2bundle/compiler/test/transform_ut/application/entry/src/main/ets/pages/utForValidate/Decorators/v1AndV2ComponentDecorators/
Dv1ToV2ComponentValidate.ets5 * You may obtain a copy of the License at
21 class A {
32 @State state_value: A | string = new A("hello")
44 @Param param_value: A | string = "hello"
50 type newType = A | B
54 @State state_value: A | B = new A("hello")
55 @State state_value_alias_type: newType = new A("hello")
68 @Param param_value: A | B = new B()
86 regular_value: A = new A("hello")
87 @State state_value: A = new A("hello")
[all …]
/developtools/smartperf_host/ide/src/trace/component/trace/base/
DCommonSql.ts5 * You may obtain a copy of the License at
30 …sql: 'SELECT (A.ts - B.start_ts) AS startTs,IFNULL(dur,B.end_ts - A.ts) dur,value FROM measure A,t…
54 …'SELECT cpu,SUM(A.dur) / CAST(B.end_ts - B.start_ts AS float) AS usage FROM thread_state A,trace_r…
55 'WHERE (A.ts - B.start_ts) > 0 AND A.dur > 0 GROUP BY cpu;',
87 …'GROUP BY m.ts UNION ALL SELECT a.ts - tr.start_ts AS startNs,SUM( a.size ) AS value FROM memory_a…
88 'trace_range tr WHERE a.ts < tr.end_ts AND a.flag = 0 GROUP BY a.ts) GROUP BY startNs;',
93 …'SELECT (A.ts - B.start_ts) AS startNs,SUM(A.size) AS value,E.data AS expTaskComm, A.flag AS flag …
94 …'FROM memory_dma A,trace_range B LEFT JOIN data_dict AS E ON E.id=A.exp_task_comm_id WHERE A.flag …
95 'AND A.ts < B.end_ts GROUP BY A.ts;',
100 …'SELECT (A.ts - B.start_ts) AS startNs, SUM(A.used_gpu_size) AS value FROM memory_process_gpu A,tr…
[all …]
/developtools/ace_ets2bundle/compiler/test/ut/annotations/
DannotationDeclarationFieldInitializer6.ts5 * You may obtain a copy of the License at
21 A,
26 a: number = +E.A
27 b: number = -E.A
28 c: number = ~E.A
29 d = !E.A
30 e: number = E.A | E.B
31 f: number = E.A & E.B
32 g: number = E.A >> E.B
33 h: number = E.A >>> E.B
[all …]
DannotationDeclarationFieldInitializer1.ts5 * You may obtain a copy of the License at
20 const a = 1
24 d = !a
25 e: number = a | b
26 f: number = a & b
27 g: number = a >> b
28 h: number = a >>> b
29 i: number = a << b
30 j: number = a ^ b
31 k: number = a * b
[all …]
DannotationDeclarationFieldInitializer3.ts5 * You may obtain a copy of the License at
20 const a = "a"
24 d = !a
25 r = a && b
26 s = a || b
27 t = a < b
28 u = a <= b
29 v = a > b
30 w = a >= b
31 x = a === a
[all …]
DannotationDeclarationFieldInitializer5.ts5 * You may obtain a copy of the License at
20 const a = true
24 d = !a
25 r: boolean = a && b
26 s = a || b
27 t = a < b
28 u = a <= b
29 v = a > b
30 w = a >= b
31 x = a === a
[all …]
DannotationApplication4.ts5 * You may obtain a copy of the License at
21 a: string,
25 a: string,
28 @Anno({a: "a", b: 10})
29 @Anno2({a: "a"})
38 a: string;
42 a: string;
44 @__$$ETS_ANNOTATION$$__Anno({ a: "a", b: 10 })
45 @__$$ETS_ANNOTATION$$__Anno2({ a: "a" })
/developtools/smartperf_host/ide/src/trace/database/
DTempSql.ts5 * You may obtain a copy of the License at
21 A.name,
23 A.tid,
24 A.id,
25 A.type,
31 left join thread as A on B.itid = A.id
34 left join process AS IP on A.ipid = IP.id
80 A.name as threadName,
90 from thread A,
92 left join callstack C on A.id = C.callid
[all …]
/developtools/smartperf_host/ide/src/trace/database/data-trafic/process/
DProcessExpectedDataReceiver.ts4 // You may obtain a copy of the License at
24 (a.ts - ${recordStartNS}) AS ts,
25 a.dur,
27 a.id,
28 a.vsync as name,
29 a.type,
30 a.depth
31 FROM frame_slice AS a
32 WHERE a.type = 1
33 and (a.flag <> 2 or a.flag is null)
[all …]
DProcessActualDataReceiver.ts4 // You may obtain a copy of the License at
21 (a.ts - ${args.recordStartNS}) AS ts,
22 a.dur,
25 a.id,
26 a.vsync AS name,
27 a.type,
28 a.flag AS jankTag,
29 a.dst AS dstSlice,
30 a.depth
31 FROM frame_slice AS a
[all …]
/developtools/smartperf_host/ide/src/trace/database/sql/
DMemory.sql.ts5 * You may obtain a copy of the License at
25 (A.ts - B.start_ts) as startNs,
26 sum(A.used_gpu_size) as value,
27 A.ipid as ipid
28 FROM memory_process_gpu A,trace_range B
30 $pid = A.ipid
31 AND A.ts < B.end_ts
32 GROUP by A.ts;`,
42 FROM memory_process_gpu A, trace_range B
43 WHERE $pid = A.ipid
[all …]
DSmaps.sql.ts5 * You may obtain a copy of the License at
32 (A.timestamp - B.start_ts) as startNs,
35 FROM smaps A,trace_range B WHERE A.timestamp < B.end_ts GROUP by A.timestamp;`,
44 (A.timestamp - B.start_ts) as startNS,
46 FROM smaps A,trace_range B GROUP by A.timestamp order by max_value desc LIMIT 1`
55 (A.timestamp - B.start_ts) as startNS,
57 FROM smaps A,trace_range B where startNS <= $rightNs and (startNS+$dur)>=$leftNs`,
67 (A.timestamp - t.start_ts) AS startNs,
70 A.type,
73 pss * 1024 as pss,virtaul_size * 1024 AS size,reside,A.path_id AS path,
[all …]
DJanks.sql.ts5 * You may obtain a copy of the License at
109 FROM frame_slice AS a
110 LEFT JOIN process AS p ON a.ipid = p.ipid
111 WHERE a.flag <> 2;
120 a.id,
121 (a.ts - TR.start_ts) AS ts,
122 a.vsync AS name,
123 a.type,
124 a.dur,
125 a.src AS src_slice,
[all …]
/developtools/smartperf_host/ide/src/base-ui/tabs/
Dlit-tabs.ts5 * You may obtain a copy of the License at
122 Array.from(items).forEach((a, index) => {
124 this.tabPos[a.dataset.key] = {
126 width: a.offsetWidth,
127 height: a.offsetHeight,
128 left: a.offsetLeft,
129 top: a.offsetTop,
130 label: a.textContent,
179 panes.forEach((a) => {
180 if (a.key === this.activekey) {
[all …]
/developtools/smartperf_host/ide/src/trace/component/trace/sheet/vmtracker/
DTabPaneVmTrackerShmSelection.ts5 * You may obtain a copy of the License at
67 this.shmData = result.sort((a, b) => b.size - a.size);
90 private compareValues(a: unknown, b: unknown, sort: number): number {
93 return a > b ? 1 : a < b ? -1 : 0;
96 return a < b ? 1 : a > b ? -1 : 0;
101 const comparisonFunctions: { [key: string]: (a: unknown, b: unknown) => number } = {
103 ts: (a, b) => this.compareValues(a.startNS, b.startNS, sort),
105 fd: (a, b) => this.compareValues(a.fd, b.fd, sort),
107 sizeStr: (a, b) => this.compareValues(a.size, b.size, sort),
109 adj: (a, b) => this.compareValues(a.adj, b.adj, sort),
[all …]
/developtools/ace_ets2bundle/compiler/test/
Dtransform_ut_error.json3 "message": "The '@Link' property cannot be specified a default value.",
9 "message": "The '@ObjectLink' property cannot be specified a default value.",
15 …ed component, the 'build' method can have only one root node, which must be a container component.…
61 "message": "The Button component with a label parameter can not have any child.",
94 …"solutions": ["A structurally modified page must have at least one and no more than one 'build' me…
97 …"message": "The '@CustomDialog' decorated custom component must contain a property of the CustomDi…
117 "message": "The '@State' property 'message' must be specified a default value.",
122 "message": "The '@Link' property cannot be specified a default value.",
128 "message": "The property 'message' must specify a type.",
146 "message": "The '@State' property 'message' cannot be a 'CustomDialogController' object.",
[all …]
/developtools/packing_tool/modulecheck/
Dmodule.json16 …"description": "Indicates the configuration of a .hap file. The module configuration is valid only…
215 "pattern": "^[a-zA-Z][0-9a-zA-Z_.]*$",
242 "pattern": "^[a-zA-Z][0-9a-zA-Z_.]*$",
248 "pattern": "^[a-zA-Z][0-9a-zA-Z_.]*$",
287 …of the current hap is supported.If installationFree is true, this module is a service.OtherWise, t…
312 "pattern": "^[$]profile:[0-9a-zA-Z_.]+$",
329 …"description": "Indicates the key of a data element. The value is a string with a maximum of 255 b…
334 …"description": "Indicates the value of a data element. The value is a string with a maximum of 255…
339 "description": "Indicates the resource of a data element.",
341 "pattern": "^[$]profile:[0-9a-zA-Z_.]+$",
[all …]
/developtools/profiler/device/plugins/native_daemon/test/unittest/resource/testdata/
Dshdrs_from_readelf_326 [ 1] .interp PROGBITS 000001b4 0001b4 000013 00 A 0 0 1
7 [ 2] .note.gnu.build-i NOTE 000001c8 0001c8 000024 00 A 0 0 4
8 [ 3] .note.gnu.propert NOTE 000001ec 0001ec 00001c 00 A 0 0 4
9 [ 4] .note.ABI-tag NOTE 00000208 000208 000020 00 A 0 0 4
10 [ 5] .gnu.hash GNU_HASH 00000228 000228 000030 04 A 6 0 4
11 [ 6] .dynsym DYNSYM 00000258 000258 000220 10 A 7 1 4
12 [ 7] .dynstr STRTAB 00000478 000478 0005cc 00 A 0 0 1
13 [ 8] .gnu.version VERSYM 00000a44 000a44 000044 02 A 6 0 2
14 [ 9] .gnu.version_r VERNEED 00000a88 000a88 0000a0 00 A 7 3 4
15 [10] .rel.dyn REL 00000b28 000b28 000060 08 A 6 0 4
[all …]
/developtools/hiperf/test/unittest/resource/testdata/
Dshdrs_from_readelf_326 [ 1] .interp PROGBITS 000001b4 0001b4 000013 00 A 0 0 1
7 [ 2] .note.gnu.build-i NOTE 000001c8 0001c8 000024 00 A 0 0 4
8 [ 3] .note.gnu.propert NOTE 000001ec 0001ec 00001c 00 A 0 0 4
9 [ 4] .note.ABI-tag NOTE 00000208 000208 000020 00 A 0 0 4
10 [ 5] .gnu.hash GNU_HASH 00000228 000228 000030 04 A 6 0 4
11 [ 6] .dynsym DYNSYM 00000258 000258 000220 10 A 7 1 4
12 [ 7] .dynstr STRTAB 00000478 000478 0005cc 00 A 0 0 1
13 [ 8] .gnu.version VERSYM 00000a44 000a44 000044 02 A 6 0 2
14 [ 9] .gnu.version_r VERNEED 00000a88 000a88 0000a0 00 A 7 3 4
15 [10] .rel.dyn REL 00000b28 000b28 000060 08 A 6 0 4
[all …]
/developtools/ace_ets2bundle/compiler/test/transform_ut/application/entry/src/main/ets/pages/utForPartialUpdate/v2_component_decorator/reusableV2/
DreusableV2_initialRender.ets5 * You may obtain a copy of the License at
20 class A {
29 a:A;
30 constructor(b:number,a:A) {
32 this.a= a;
42 @Provider('a') pro:number = 500;
46 ss:A = new A(300);
47 bbb:B = new B(50,new A(20));
48 static bbb2:B = new B(50,new A(20));
49 static ss2:A = new A(300);
[all …]
/developtools/smartperf_host/ide/src/trace/database/data-trafic/
DVmTrackerDataReceiver.ts5 * You may obtain a copy of the License at
19 return `SELECT (A.timestamp - ${args.recordStartNS}) as startNs,
21 FROM smaps A
22 WHERE A.timestamp < ${args.recordEndNS}
23 GROUP by A.timestamp`;
26 return `SELECT (A.ts - ${args.recordStartNS}) as startNs,
27 sum(A.size) as value
28 FROM memory_dma A
29 WHERE A.flag = 0
30 AND ${args.ipid} = A.ipid
[all …]
/developtools/smartperf_host/ide/src/trace/database/data-trafic/xpower/
DXpowerAppDetailDataReceiver.ts4 // You may obtain a copy of the License at
20 SELECT a.start_time - b.start_ts AS startTime,
21 ifnull(a.count_1hz, 0) AS c1hz,
22 ifnull(a.count_5hz, 0) AS c5hz,
23 ifnull(a.count_10hz, 0) AS c10hz,
24 ifnull(a.count_15hz, 0) AS c15hz,
25 ifnull(a.count_24hz, 0) AS c24hz,
26 ifnull(a.count_30hz, 0) AS c30hz,
27 ifnull(a.count_45hz, 0) AS c45hz,
28 ifnull(a.count_60hz, 0) AS c60hz,
[all …]

12345678910>>...163