/kernel/liteos_a/kernel/base/vm/ |
H A D | los_vm_dump.c | 146 UINT32 usedCount = 0; in OsKProcessPmUsage() local 160 OsVmPhysUsedInfoGet(&usedCount, &totalCount); in OsKProcessPmUsage() 176 memUsed += ((usedCount << PAGE_SHIFT) - UProcessUsed); in OsKProcessPmUsage() 544 VOID OsVmPhysUsedInfoGet(UINT32 *usedCount, UINT32 *totalCount) in OsVmPhysUsedInfoGet() argument 550 if (usedCount == NULL || totalCount == NULL) { in OsVmPhysUsedInfoGet() 553 *usedCount = 0; in OsVmPhysUsedInfoGet() 561 *usedCount += (*totalCount - segFreePages); in OsVmPhysUsedInfoGet()
|
/kernel/liteos_a/kernel/base/misc/ |
H A D | mempt_shellcmd.c | 140 UINT32 usedCount, totalCount; in OsShellCmdFreeInfo() local 141 OsVmPhysUsedInfoGet(&usedCount, &totalCount); in OsShellCmdFreeInfo() 144 memUsed += (usedCount << PAGE_SHIFT) - freeMem; in OsShellCmdFreeInfo()
|
/kernel/liteos_a/testsuites/unittest/container/smoke/ |
H A D | It_ipc_container_008.cpp | 66 int usedCount = atoi(array[2] + strlen("count: ")); in ItIpcContainer008() local 69 ret = sprintf_s(buf, configLen, "%d", usedCount + 1); in ItIpcContainer008()
|
H A D | It_ipc_container_007.cpp | 62 int usedCount = atoi(array[2] + strlen("count: ")); in ItIpcContainer007() local 65 ret = sprintf_s(buf, configLen, "%d", usedCount + 1); in ItIpcContainer007()
|
H A D | It_mnt_container_010.cpp | 66 int usedCount = atoi(array[2] + strlen("count: ")); in ItMntContainer010() local 69 ret = sprintf_s(buf, configLen, "%d", usedCount + 1); in ItMntContainer010()
|
H A D | It_mnt_container_009.cpp | 62 int usedCount = atoi(array[2] + strlen("count: ")); in ItMntContainer009() local 65 ret = sprintf_s(buf, configLen, "%d", usedCount + 1); in ItMntContainer009()
|
H A D | It_net_container_012.cpp | 66 int usedCount = atoi(array[2] + strlen("count: ")); in ItNetContainer012() local 69 ret = sprintf_s(buf, configLen, "%d", usedCount + 1); in ItNetContainer012()
|
H A D | It_net_container_011.cpp | 62 int usedCount = atoi(array[2] + strlen("count: ")); in ItNetContainer011() local 65 ret = sprintf_s(buf, configLen, "%d", usedCount + 1); in ItNetContainer011()
|
H A D | It_pid_container_033.cpp | 68 int usedCount = atoi(array[2] + strlen("count: ")); in ItPidContainer033() local 71 ret = sprintf_s(buf, configLen, "%d", usedCount + 1); in ItPidContainer033()
|
H A D | It_pid_container_032.cpp | 64 int usedCount = atoi(array[2] + strlen("count: ")); in ItPidContainer032() local 67 ret = sprintf_s(buf, configLen, "%d", usedCount + 1); in ItPidContainer032()
|
H A D | It_time_container_006.cpp | 72 int usedCount = atoi(array[2] + strlen("count: ")); in ItTimeContainer006() local 75 ret = sprintf_s(buf, configLen, "%d", usedCount + 1); in ItTimeContainer006()
|
H A D | It_user_container_007.cpp | 66 int usedCount = atoi(array[2] + strlen("count: ")); in ItUserContainer007() local 69 ret = sprintf_s(buf, configLen, "%d", usedCount + 1); in ItUserContainer007()
|
H A D | It_user_container_006.cpp | 62 int usedCount = atoi(array[2] + strlen("count: ")); in ItUserContainer006() local 65 ret = sprintf_s(buf, configLen, "%d", usedCount + 1); in ItUserContainer006()
|
H A D | It_uts_container_008.cpp | 66 int usedCount = atoi(array[2] + strlen("count: ")); in ItUtsContainer008() local 69 ret = sprintf_s(buf, configLen, "%d", usedCount + 1); in ItUtsContainer008()
|
H A D | It_uts_container_007.cpp | 62 int usedCount = atoi(array[2] + strlen("count: ")); in ItUtsContainer007() local 65 ret = sprintf_s(buf, configLen, "%d", usedCount + 1); in ItUtsContainer007()
|
/kernel/liteos_a/kernel/base/ipc/ |
H A D | los_sem_debug.c | 122 STATIC VOID OsSemSort(UINT32 *semIndexArray, UINT32 usedCount) in OsSemSort() argument 140 OsArraySortByTime(semIndexArray, 0, usedCount - 1, &semSortParam, SemCompareValue); in OsSemSort() 142 for (i = 0; i < usedCount; i++) { in OsSemSort()
|
/kernel/liteos_a/kernel/base/include/ |
H A D | los_vm_dump.h | 70 VOID OsVmPhysUsedInfoGet(UINT32 *usedCount, UINT32 *totalCount);
|