Home
last modified time | relevance | path

Searched refs:taskID (Results 1 – 25 of 25) sorted by relevance

/ohos5.0/docs/zh-cn/device-dev/kernel/
H A Dkernel-mini-extend-cpup.md126 UINT32 taskID;
133 ret = LOS_TaskCreate(&taskID, &cpupTestTask);
152 cpupUse = LOS_TaskCpuUsage(taskID);
154 taskID, cpupUse / LOS_CPUP_PRECISION_MULT, cpupUse % LOS_CPUP_PRECISION_MULT);
157 cpupUse = LOS_HistoryTaskCpuUsage(taskID, CPUP_LESS_THAN_1S);
159 taskID, cpupUse / LOS_CPUP_PRECISION_MULT, cpupUse % LOS_CPUP_PRECISION_MULT);
H A Dkernel-small-debug-shell-cmd-cpup.md21 | taskID | 任务ID号 | [0, 0xFFFFFFFF] |
30 - 输入两个参数时,第一个参数为mode,第二个参数为taskID,显示对应ID号任务的相应时间前的CPU占用率。
H A Dkernel-small-debug-memory-info.md86 unsigned int taskID;
92 ret = LOS_TaskCreate(&taskID, &taskStatus);
H A Dkernel-small-debug-shell-error.md17 taskID = 4
78 taskID = 4
H A Dkernel-mini-memory-debug.md95 unsigned int taskID;
101 ret = LOS_TaskCreate(&taskID, &taskStatus);
H A Dkernel-small-debug-perf.md213 UINT32 taskID;
219 ret = LOS_TaskCreate(&taskID, &perfTestTask);
H A Dkernel-mini-memory-lms.md179 taskID = 5
233 taskID = 5
H A Dkernel-small-memory-lms.md186 runTask->taskID = 2
215 runTask->taskID = 2
H A Dkernel-small-debug-shell-cmd-oom.md84 taskID = 22
/ohos5.0/foundation/arkui/ace_engine_lite/frameworks/src/core/base/
H A Dasync_task_manager.cpp151 void AsyncTaskManager::Cancel(uint16_t taskID) in Cancel() argument
153 if (DISPATCH_FAILURE == taskID) { in Cancel()
161 if (node->id == taskID && !(node->isRunning)) { in Cancel()
H A Dasync_task_manager.h56 void Cancel(uint16_t taskID);
/ohos5.0/foundation/communication/ipc/ipc/native/c/ipc/src/liteos_a/include/
H A Dlite_ipc.h46 uint32_t taskID; member
61 uint32_t taskID; /**< filled by kernel, taskId of sender/reciever */ member
/ohos5.0/docs/en/device-dev/kernel/
H A Dkernel-mini-extend-cpup.md132 UINT32 taskID;
139 ret = LOS_TaskCreate(&taskID, &cpupTestTask);
158 cpupUse = LOS_TaskCpuUsage(taskID);
160 taskID, cpupUse / LOS_CPUP_PRECISION_MULT, cpupUse % LOS_CPUP_PRECISION_MULT);
163 cpupUse = LOS_HistoryTaskCpuUsage(taskID, CPUP_LESS_THAN_1S);
165 taskID, cpupUse / LOS_CPUP_PRECISION_MULT, cpupUse % LOS_CPUP_PRECISION_MULT);
H A Dkernel-small-debug-shell-cmd-cpup.md21 | taskID | Specifies the task ID.| [0, 0xFFFFFFFF] |
30 - If both **mode** and **taskID** are specified, the CPU usage of the specified task within the giv…
H A Dkernel-small-debug-shell-error.md14 taskID = 4
73 taskID = 4
H A Dkernel-small-debug-memory-info.md88 unsigned int taskID;
94 ret = LOS_TaskCreate(&taskID, &taskStatus);
H A Dkernel-small-debug-perf.md210 UINT32 taskID;
216 ret = LOS_TaskCreate(&taskID, &perfTestTask);
H A Dkernel-mini-memory-lms.md183 taskID = 5
237 taskID = 5
H A Dkernel-small-debug-shell-cmd-oom.md83 taskID = 22
H A Dkernel-small-memory-lms.md186 runTask->taskID = 2
215 runTask->taskID = 2
H A Dkernel-mini-memory-debug.md95 unsigned int taskID;
101 ret = LOS_TaskCreate(&taskID, &taskStatus);
/ohos5.0/docs/en/readme/
H A Dliteipc_driver.md32 | taskID | UINT32 | Specifies the message's sender. Automatically set by the IPC system. |
62 - The outMsg recipient (target.handle) must match the buffToFree sender (taskID).
87 - **CMS_GEN_HANDLE** creates a service handle for the task specified by taskID member and stores th…
89 - **CMS_ADD_ACCESS** gives the process of the task specified by the taskID member access rights to …
/ohos5.0/foundation/communication/ipc/ipc/native/c/ipc/src/liteos_a/
H A Dipc_invoker.c206 .target.handle = ipcMsg->taskID, in SendReply()
243 .target.handle = ipcMsg->taskID, in SendFailedReply()
/ohos5.0/foundation/multimedia/player_framework/services/services/screen_capture/ipc/
H A Dscreen_capture_service_proxy.cpp232 for (int32_t taskID : videoInfo.taskIDs) { in InitVideoCap() local
233 token = data.WriteInt32(taskID); in InitVideoCap()
/ohos5.0/foundation/distributeddatamgr/kv_store/frameworks/libs/distributeddb/common/src/
H A Druntime_context_impl.cpp28 static std::atomic_uint taskID = 0; variable
276 auto id = taskID++; in ScheduleTask()
300 auto id = taskID++; in ScheduleQueuedTask()