• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1# HiDebug Error Codes
2
3<!--Kit: Performance Analysis Kit-->
4<!--Subsystem: HiviewDFX-->
5<!--Owner: @hello_harmony; @yu_haoqiaida-->
6<!--SE: @kutcherzhou1-->
7<!--TSE: @gcw_KuLfPSbe-->
8
9> **NOTE**
10>
11> This topic describes only module-specific error codes. For details about universal error codes, see [Universal Error Codes](../errorcode-universal.md).
12
13## 11400101 Failed to Obtain the System Service
14
15**Error Message**
16
17ServiceId invalid. The system ability does not exist.
18
19**Description**
20The system service cannot be obtained based on the specified service ID.
21
22**Possible Causes**
23
24The specified service ID is incorrect or the corresponding service is not started.
25
26**Solution**
27
28Specify a correct system service ID.
29
30## 11400102 Repeated Trace Collection
31
32**Error Message**
33
34Capture trace already enabled.
35
36**Description**
37The trace collection has been enabled for the process.
38
39**Possible Causes**
40
41The trace collection is in progress.
42
43**Solution**
44
45Wait until the trace collection is complete or call **OH_HiDebug_StopAppTraceCapture** to stop the trace collection.
46
47## 11400103 Permission Verification Failed
48
49**Error Message**
50
51No write permission on the file.
52
53**Description**
54You do not have the permission to write the trace file in the current directory.
55
56**Possible Causes**
57
58The directory does not exist or is deleted by mistake.
59
60**Solution**
61
62Run the trace collection again to generate a correct trace file in the current directory.
63
64## 11400104 Internal Error
65
66**Error Message**
67
68Abnormal trace status.
69
70**Description**
71This error code is reported if the current trace encounters an internal error.
72
73**Possible Causes**
74
75The system kernel crashes or the application process freezes.
76
77**Solution**
78
79Restart the application or system.
80
81## 11400105 Trace Collection Is Not Enabled
82
83**Error Message**
84
85No capture trace running.
86
87**Description**
88This error code is reported if no trace is in progress.
89
90**Possible Causes**
91
92Trace collection is not enabled.
93
94**Solution**
95
96Enable trace collection and then stop it.
97
98## 11400106 The API Call Quota Is Exceeded
99
100**Error Message**
101
102Quota exceeded.
103
104**Description**
105The API call quota is exceeded.
106
107**Possible Causes**
108
1091. This API is called by a process more than once per day.
110
1112. This API is called by the system more than five times per week.
112
113**Solution**
114
115Wait for the update of the API call quota.
116
117## 11400107 Failed to Fork The Child Dump Process
118
119**Error Message**
120
121Fork operation failed.
122
123**Description**
124Failed to fork the child dump process.
125
126**Possible Causes**
127
128The system resources are insufficient. You are advised to check the system load.
129
130**Solution**
131
132Fork the child dump process again. If it still fails, filter **Error** logs to locate the fault. For details, see [Log Analysis](https://developer.huawei.com/consumer/en/doc/harmonyos-guides/ide-setup-hilog#section2114542680). If the problem persists, <!--RP1-->contact us.<!--RP1End-->
133
134## 11400108 Failed to Wait for the Child Dump Process to Finish
135
136**Error Message**
137
138Failed to wait for the child process to finish.
139
140**Description**
141Failed to wait for the child dump process to finish.
142
143**Possible Causes**
144
145The system resources are insufficient. You are advised to check the system load.
146
147**Solution**
148
149Fork the child dump process again. If it still fails, filter **Error** logs to locate the fault. For details, see [Log Analysis](https://developer.huawei.com/consumer/en/doc/harmonyos-guides/ide-setup-hilog#section2114542680). If the problem persists, <!--RP1-->contact us.<!--RP1End-->
150
151## 11400109 Waiting for the Child Dump Process Times Out
152
153**Error Message**
154
155Timeout while waiting for the child process to finish.
156
157**Description**
158The child dump process times out.
159
160**Possible Causes**
161
162The dump process takes a long time. You are advised to check the system load.
163
164**Solution**
165
166Fork the child dump process again. If it still fails, filter **Error** logs to locate the fault. For details, see [Log Analysis](https://developer.huawei.com/consumer/en/doc/harmonyos-guides/ide-setup-hilog#section2114542680). If the problem persists, <!--RP1-->contact us.<!--RP1End-->
167
168## 11400110 Insufficient Disk Space
169
170**Error Message**
171
172Failed to create dump file.
173
174**Description**
175The disk space is insufficient.
176
177**Possible Causes**
178
179The available disk space is less than 30 GB.
180
181**Solution**
182
183Release the disk space to ensure that the available space is greater than 30 GB.
184
185## 11400111 Failed to Call the Node-API
186
187**Error Message**
188
189Napi interface call exception.
190
191**Description**
192An exception occurs when the Node-API is called.
193
194**Possible Causes**
195
196The VM is abnormal.
197
198**Solution**
199
200Fork the child dump process again. If it still fails, filter **Error** logs to locate the fault. For details, see [Log Analysis](https://developer.huawei.com/consumer/en/doc/harmonyos-guides/ide-setup-hilog#section2114542680). If the problem persists, <!--RP1-->contact us.<!--RP1End-->
201
202## 11400112 Repeated Data Dump
203
204**Error Message**
205
206Repeated data dump.
207
208**Description**
209Dump data is collected repeatedly.
210
211**Possible Causes**
212
213This API has been called and is called repeatedly before the calling is complete.
214
215**Solution**
216
217Optimize the code logic to ensure that the next dump task starts after the previous dump task is complete.
218
219## 11400113 Failed to Create a Dump File
220
221**Error Message**
222
223Failed to create dump file.
224
225**Description**
226
227Failed to create the dump file.
228
229**Possible Causes**
230
2311. A file with the same name exists in the process directory.
232
2332. System resources are insufficient.
234
235**Solution**
236
237Fork the child dump process again. If it still fails, filter **Error** logs to locate the fault. For details, see [Log Analysis](https://developer.huawei.com/consumer/en/doc/harmonyos-guides/ide-setup-hilog#section2114542680). If the problem persists, <!--RP1-->contact us.<!--RP1End-->
238
239## 11400114 Failed to Enable GWP-Asan
240
241**Error Message**
242
243The number of GWP-ASAN applications of this device overflowed after last boot.
244
245**Description**
246
247After the device is restarted, the number of applications for which GWP-Asan is enabled exceeds the system limit.
248
249**Possible Causes**
250
251A maximum of 20 applications can be enabled with GWP-Asan during the running of a single device. The limit is exceeded.
252
253**Solution**
254
255Restart the system to update the device quota.
256