/ohos5.0/base/hiviewdfx/hiview/hisysevent/ |
H A D | hiviewdfx.yaml | 20 DURATION: {type: UINT32, desc: loading duration } 34 TOTAL: {type: UINT32, desc: total events} 45 USAGE: {type: UINT32, desc: usage duration} 62 TOTAL_COUNT: {type: UINT32, desc: total count} 63 TOTAL_SIZE: {type: UINT32, desc: total size} 66 MIN_SPEED: {type: UINT32, desc: minimum speed} 67 MAX_SPEED: {type: UINT32, desc: maximum speed} 79 TOTAL_COUNT: {type: UINT32, desc: total count} 80 TOTAL_SIZE: {type: UINT32, desc: total size} 113 PID: {type: UINT32, desc: target process id} [all …]
|
/ohos5.0/foundation/multimedia/av_codec/services/engine/codec/video/hevcdecoder/ |
H A D | HevcDec_Typedef.h | 24 typedef unsigned int UINT32; typedef 35 typedef void (*IHW265D_VIDEO_ALG_LOG_FXN)(UINT32 uiChannelID, IHW265VIDEO_ALG_LOG_LEVEL eLevel, INT… 38 UINT32 uiChannelID; // [in] channel ID, used for channel info 44 UINT32 uiStreamLen; 49 UINT32 uiDecWidth; 50 UINT32 uiDecHeight; 51 UINT32 uiDecStride; 52 UINT32 uiDecBitDepth;
|
/ohos5.0/foundation/communication/dsoftbus/ |
H A D | hisysevent.yaml | 366 TOTAL_COUNT: {type: UINT32, desc: total count } 376 DISCTYPE: {type: UINT32, desc: discovery type } 378 REPTIMES: {type: UINT32, desc: report times } 379 DEVNUM: {type: UINT32, desc: report times } 396 TOTAL_COUNT: { type: UINT32, desc: total count } 410 TOTAL_COUNT: { type: UINT32, desc: total count } 472 MODULE_TYPE: {type: UINT32, desc: module type} 475 ERROR_CODE: {type: UINT32, desc: error code} 479 NIGHT_MODE: {type: UINT32, desc: night mode} 480 WIFI_STATUS: {type: UINT32, desc: wifi status} [all …]
|
/ohos5.0/docs/zh-cn/device-dev/kernel/ |
H A D | kernel-mini-basic-soft.md | 144 UINT32 g_timerCount1 = 0; 145 UINT32 g_timerCount2 = 0; 148 void Timer1Callback(UINT32 arg) 155 void Timer2Callback(UINT32 arg) 163 UINT32 ret; 164 UINT32 id1; // 定时器id1,单次触发定时器 165 UINT32 id2; // 定时器id2,周期触发定时器 166 UINT32 tickCount; 219 UINT32 ExampleSwtmr(VOID) 221 UINT32 ret; [all …]
|
H A D | kernel-small-debug-trace-other-lastwords.md | 14 typedef VOID (*log_read_write_fn)(UINT32 startAddr, UINT32 space, UINT32 rwFlag, CHAR *buf); 16 VOID LOS_ExcInfoRegHook(UINT32 startAddr, UINT32 space, CHAR *buf, log_read_write_fn hook);
|
H A D | kernel-mini-basic-ipc-queue.md | 146 STATIC UINT32 g_queue; 151 UINT32 ret = 0; 153 UINT32 len = sizeof(abuf); 163 UINT32 ret = 0; 165 UINT32 readLen = BUFFER_LEN; 184 UINT32 ExampleQueue(VOID) 187 UINT32 ret = 0; 188 UINT32 task1; 189 UINT32 task2;
|
H A D | kernel-mini-basic-time.md | 34 | OsCpuTick2MS | Cycle数目转化为毫秒,使用2个UINT32类型的数值分别表示结果数值的高、低32位。 | 35 | OsCpuTick2US | Cycle数目转化为微秒,使用2个UINT32类型的数值分别表示结果数值的高、低32位。 | 103 UINT32 ms; 104 UINT32 tick; 122 UINT32 cyclePerTick; 134 … printf("LOS_TickCountGet after delay rising = %d \n", (UINT32)(tickCountAfter - tickCountBefore));
|
H A D | kernel-small-debug-memory-info.md | 30 UINT32 totalUsedSize; // 内存池的内存使用量 31 UINT32 totalFreeSize; // 内存池的剩余内存大小 32 UINT32 maxFreeNodeSize; // 内存池的最大空闲内存块大小 33 UINT32 usedNodeNum; // 内存池的非空闲内存块个数 34 UINT32 freeNodeNum; // 内存池的空闲内存块个数 36 UINT32 usageWaterLine; // 内存池的水线值
|
H A D | kernel-mini-basic-memory.md | 106 UINT32 *mem = NULL; 107 UINT32 blkSize = MEMBOX_BLOCK_SZIE; 108 UINT32 poolSize = MEMBOX_POOL_SIZE; 109 UINT32 boxMem[MEMBOX_POOL_SIZE]; 110 UINT32 ret; 122 mem = (UINT32 *)LOS_MemboxAlloc(boxMem); 287 UINT32 *mem = NULL; 288 UINT32 ret; 300 mem = (UINT32 *)LOS_MemAlloc(g_testDynPool, 4);
|
H A D | kernel-small-basic-trans-queue.md | 44 UINT32 queueID; /**< queueID */ 149 static UINT32 g_queue; 154 UINT32 ret = 0; 156 UINT32 len = sizeof(abuf); 166 UINT32 ret = 0; 168 UINT32 readLen = BUFFER_LEN; 186 UINT32 ExampleQueue(VOID) 189 UINT32 ret = 0; 190 UINT32 task1, task2;
|
H A D | kernel-mini-basic-task.md | 171 UINT32 g_taskHiId; 172 UINT32 g_taskLoId; 176 UINT32 ExampleTaskHi(VOID) 178 UINT32 ret; 203 UINT32 ExampleTaskLo(VOID) 205 UINT32 ret; 228 UINT32 ExampleTask(VOID) 230 UINT32 ret;
|
H A D | kernel-small-basic-process-thread.md | 152 UINT32 g_taskLoID; 153 UINT32 g_taskHiID; 156 UINT32 ExampleTaskHi(VOID) 158 UINT32 ret; 179 UINT32 ExampleTaskLo(VOID) 181 UINT32 ret; 200 UINT32 ExampleTaskCaseEntry(VOID) 202 UINT32 ret;
|
H A D | kernel-small-basic-time.md | 68 UINT32 uwMs; 69 UINT32 uwTick; 83 UINT32 uwcyclePerTick; 95 PRINTK("LOS_TickCountGet = %d \n", (UINT32)uwTickCount); 101 PRINTK("LOS_TickCountGet after delay = %d \n", (UINT32)uwTickCount);
|
H A D | kernel-small-debug-shell-guide.md | 49 UINT32 osCmdReg(CmdT ype cmdType, CHAR *cmdKey, UINT32 paraNum, CmdCallBackFunc cmdProc) 52 **表2** UINT32 osCmdReg参数详解 77 UINT32 osShellCmdLs(UINT32 argc, CHAR **argv)
|
H A D | kernel-mini-basic-ipc-sem.md | 111 static UINT32 g_semId; 115 UINT32 ret; 141 UINT32 ret; 159 UINT32 ExampleSem(VOID) 161 UINT32 ret; 164 UINT32 taskId1; 165 UINT32 taskId2;
|
H A D | kernel-small-debug-perf.md | 42 UINT32 len; 53 VOID Example_PerfFlushHook(VOID *addr, UINT32 size) 90 3. 在需要采样的代码起始点调用LOS_PerfStart(UINT32 sectionId), 入参sectionId标记不同的采样回话id。 143 STATIC VOID OsPrintBuff(const CHAR *buf, UINT32 num) 145 UINT32 i = 0; 159 UINT32 ret; 161 UINT32 len; 209 UINT32 Example_Perf_test(VOID) 211 UINT32 ret; 213 UINT32 taskID;
|
H A D | kernel-small-basic-trans-semaphore.md | 128 static UINT32 g_testTaskId01; 129 static UINT32 g_testTaskId02; 136 static UINT32 g_semId; 140 UINT32 ret; 168 UINT32 ret; 186 UINT32 ExampleSem(VOID) 188 UINT32 ret;
|
H A D | kernel-mini-basic-ipc-event.md | 26 UINT32 uwEventID; /* 事件集合,表示已经处理(写入和清零)的事件集合 */ 133 UINT32 ret; 134 UINT32 event; 147 UINT32 ExampleEvent(VOID) 149 UINT32 ret; 150 UINT32 taskId;
|
H A D | kernel-small-basic-memory-physical.md | 96 UINT32 sizeCount; 97 UINT32 count; 98 UINT32 size = PHYS_PAGE_SIZE; 100 UINT32 i = 0; 140 UINT32 size = PHYS_PAGE_SIZE; 157 UINT32 ExamplePhyMemCaseEntry(VOID)
|
H A D | kernel-small-basic-atomic.md | 103 UINT32 g_testTaskId01; 104 UINT32 g_testTaskId02; 108 UINT32 Example_Atomic01(VOID) 119 UINT32 Example_Atomic02(VOID) 130 UINT32 Example_AtomicTaskEntry(VOID)
|
/ohos5.0/base/web/webview/ |
H A D | hisysevent.yaml | 38 PLAIN_TEXT: {type: UINT32, desc: Drag Drop Text size} 39 LINK_URL: {type: UINT32, desc: Drag Drop Url size} 40 HTML: {type: UINT32, desc: Drag Drop Html Size} 88 INSTANCE_ID: {type: UINT32, desc: instance id} 99 VERSION_CODE: {type: UINT32, desc: app version code} 104 INSTANCE_ID: {type: UINT32, desc: web instance id} 122 INSTANCE_ID: {type: UINT32, desc: web instance id} 123 ERROR_CODE: {type: UINT32, desc: page error code} 131 INSTANCE_ID: {type: UINT32, desc: web instance id} 175 CRASH_COUNT: {type: UINT32, desc: crash count} [all …]
|
/ohos5.0/base/security/access_token/ |
H A D | hisysevent.yaml | 19 HAP_SIZE: {type: UINT32, desc: hap token size} 20 NATIVE_SIZE: {type: UINT32, desc: native token size} 21 PERM_DEFINITION_SIZE: {type: UINT32, desc: permission definition size} 32 CALLER_TOKENID: {type: UINT32, desc: caller token id} 39 CALLER_TOKENID: {type: UINT32, desc: caller token id} 46 CALLER_TOKENID: {type: UINT32, desc: caller token id} 61 TOKENID: {type: UINT32, desc: token id} 68 TOKENID: {type: UINT32, desc: tokenID} 77 TOGGLE_STATUS: {type: UINT32, desc: toggle status of permission dialog} 81 TOKENID: {type: UINT32, desc: tokenID}
|
/ohos5.0/foundation/multimedia/av_session/ |
H A D | hisysevent.yaml | 80 PLAY_COUNT: {type: UINT32, desc: play count} 81 PAUSE_COUNT: {type: UINT32, desc: pause count} 82 STOP_COUNT: {type: UINT32, desc: stop count} 83 PLAY_NEXT_COUNT: {type: UINT32, desc: playnext count} 84 PLAY_PREVIOUS_COUNT: {type: UINT32, desc: playprevious count} 85 FAST_FORWARD_COUNT: {type: UINT32, desc: fastforward count} 86 REWIND_COUNT: {type: UINT32, desc: rewind count} 87 SEEK_COUNT: {type: UINT32, desc: seek count} 88 SET_SPEED_COUNT: {type: UINT32, desc: setspeed count} 89 SET_LOOP_MODE_COUNT: {type: UINT32, desc: setloopmode count} [all …]
|
/ohos5.0/foundation/multimedia/media_library/ |
H A D | hisysevent.yaml | 45 LINE: { type: UINT32, desc: failed line } 55 LINE: { type: UINT32, desc: upgrade failed line } 63 LINE: { type: UINT32, desc: upgrade failed line } 68 TIMES: { type: UINT32, desc: history trigger number } 69 GNUMS: { type: UINT32, desc: generate thumbnail nums } 70 ANUMS: { type: UINT32, desc: aging thumbnail nums } 76 COUNT: { type: UINT32, desc: upgrade events count } 80 TIMES: { type: UINT32, desc: sync times } 84 TIMES: { type: UINT32, desc: history trigger times } 85 COUNT: { type: UINT32, desc: the recycle number of aging } [all …]
|
/ohos5.0/base/useriam/user_auth_framework/ |
H A D | hisysevent.yaml | 26 OPERATION_TYPE: {type: UINT32, desc: operation type} 35 OPERATION_TYPE: {type: UINT32, desc: operation type} 43 CHANGE_TYPE: {type: UINT32, desc: change type} 49 SDK_VERSION: {type: UINT32, desc: sdk version} 50 AUTH_TRUST_LEVEL: {type: UINT32, desc: auth trust level} 54 AUTH_WIDGET_TYPE: {type: UINT32, desc: auth widget auth type and window mode} 55 REUSE_UNLOCK_RESULT_TYPE: {type: UINT32, desc: whether to reuse unlock result and reused mode} 64 AUTH_TRUST_LEVEL: {type: UINT32, desc: auth trust level}
|