Searched refs:stackSize (Results 1 - 8 of 8) sorted by relevance
/base/security/device_auth/deps_adapter/os_adapter/impl/src/linux/ |
H A D | hc_thread.c | 42 thread->stackSize, StringGet(&thread->name));
in StaticThreadFunc() 72 if (thread->stackSize > 0 && thread->stackSize <= MAX_THREAD_STACK_SIZE) {
in Start() 73 pthread_attr_setstacksize(&attr, thread->stackSize);
in Start() 116 int32_t InitThread(HcThread *thread, ThreadFunc func, size_t stackSize, const char *threadName)
in InitThread() argument 127 thread->stackSize = stackSize;
in InitThread()
|
/base/security/device_auth/deps_adapter/os_adapter/impl/src/liteos/ |
H A D | hc_thread.c | 65 if (thread->stackSize > 0 && thread->stackSize <= MAX_THREAD_STACK_SIZE) {
in Start() 66 pthread_attr_setstacksize(&attr, thread->stackSize);
in Start() 115 int32_t InitThread(HcThread *thread, ThreadFunc func, size_t stackSize, const char *threadName)
in InitThread() argument 126 thread->stackSize = stackSize;
in InitThread()
|
/base/security/device_auth/deps_adapter/os_adapter/interfaces/ |
H A D | hc_thread.h | 37 size_t stackSize;
member 45 int32_t InitThread(HcThread* thread, ThreadFunc func, size_t stackSize, const char* threadName);
|
H A D | hc_task_thread.h | 48 int32_t InitHcTaskThread(HcTaskThread* thread, size_t stackSize, const char* threadName);
|
/base/security/device_auth/deps_adapter/os_adapter/interfaces/liteos/ |
H A D | hc_thread.h | 33 size_t stackSize;
member 41 int32_t InitThread(HcThread* thread, ThreadFunc func, size_t stackSize, const char* threadName);
|
/base/security/device_auth/deps_adapter/os_adapter/impl/src/ |
H A D | hc_task_thread.c | 121 int32_t InitHcTaskThread(HcTaskThread* thread, size_t stackSize, const char* threadName)
in InitHcTaskThread() argument 131 int32_t res = InitThread(&thread->thread, TaskThreadLoop, stackSize, threadName);
in InitHcTaskThread()
|
/base/startup/init/test/unittest/seccomp/ |
H A D | seccomp_unittest.cpp | 194 const int stackSize = 65536;
in CheckCloneNs() local 196 char *stack = static_cast<char *>(malloc(stackSize));
in CheckCloneNs() 200 char *stackTop = stack + stackSize;
in CheckCloneNs()
|
/base/hiviewdfx/hicollie/frameworks/native/ |
H A D | xcollie_utils.cpp | 346 uint64_t stackSize = stack.size(); in WriteStackToFd() local 347 uint64_t fileSize = OHOS::GetFolderSize(realPath) + stackSize; in WriteStackToFd()
|
Completed in 4 milliseconds