• Home
  • Raw
  • Download

Lines Matching full:value

3 …e APIs use the application bundle name and the UID allocated by the system as the unique key value.
23 | Name| Value| Description|
60 …ed to return the fault information array.<br>**value** is the fault information array obtained. If…
78 function queryFaultLogCallback(error: BusinessError, value: Array<FaultLogger.FaultLogInfo>) {
82 console.info("value length is " + value.length);
83 let len: number = value.length;
86 console.info("Log pid: " + value[i].pid);
87 console.info("Log uid: " + value[i].uid);
88 console.info("Log type: " + value[i].type);
89 console.info("Log timestamp: " + value[i].timestamp);
90 console.info("Log reason: " + value[i].reason);
91 console.info("Log module: " + value[i].module);
92 console.info("Log summary: " + value[i].summary);
93 console.info("Log text: " + value[i].fullLog);
118 **Return value**
122 …n its **then()** method or use **await**.<br>**value** is the fault information array obtained. If…
142 …let value: Array<FaultLogger.FaultLogInfo> = await FaultLogger.query(FaultLogger.FaultType.JS_CRAS…
143 if (value) {
144 console.info("value length is " + value.length);
145 let len: number = value.length;
148 console.info("Log pid: " + value[i].pid);
149 console.info("Log uid: " + value[i].uid);
150 console.info("Log type: " + value[i].type);
151 console.info("Log timestamp: " + value[i].timestamp);
152 console.info("Log reason: " + value[i].reason);
153 console.info("Log module: " + value[i].module);
154 console.info("Log summary: " + value[i].summary);
155 console.info("Log text: " + value[i].fullLog);
181 …ed to return the fault information array.<br>**value** is the fault information array obtained. If…
189 function queryFaultLogCallback(error: BusinessError, value: Array<FaultLogger.FaultLogInfo>) {
193 console.info("value length is " + value.length);
194 let len: number = value.length;
197 console.info("Log pid: " + value[i].pid);
198 console.info("Log uid: " + value[i].uid);
199 console.info("Log type: " + value[i].type);
200 console.info("Log timestamp: " + value[i].timestamp);
201 console.info("Log reason: " + value[i].reason);
202 console.info("Log module: " + value[i].module);
203 console.info("Log summary: " + value[i].summary);
204 console.info("Log text: " + value[i].fullLog);
229 **Return value**
233 …n its **then()** method or use **await**.<br>**value** is the fault information array obtained. If…
241 …let value: Array<FaultLogger.FaultLogInfo> = await FaultLogger.querySelfFaultLog(FaultLogger.Fault…
242 if (value) {
243 console.info("value length is " + value.length);
244 let len: number = value.length;
247 console.info("Log pid: " + value[i].pid);
248 console.info("Log uid: " + value[i].uid);
249 console.info("Log type: " + value[i].type);
250 console.info("Log timestamp: " + value[i].timestamp);
251 console.info("Log reason: " + value[i].reason);
252 console.info("Log module: " + value[i].module);
253 console.info("Log summary: " + value[i].summary);
254 console.info("Log text: " + value[i].fullLog);