Home | History | Annotate | Download | only in threading

Lines Matching refs:stack_size

92 bool CreateThreadInternal(size_t stack_size,
96 if (stack_size > 0 && base::win::GetVersion() >= base::win::VERSION_XP) {
99 stack_size = 0;
112 NULL, stack_size, ThreadFunc, params, flags, NULL);
187 bool PlatformThread::Create(size_t stack_size, Delegate* delegate,
190 return CreateThreadInternal(stack_size, delegate, thread_handle);
194 bool PlatformThread::CreateWithPriority(size_t stack_size, Delegate* delegate,
197 bool result = Create(stack_size, delegate, thread_handle);
204 bool PlatformThread::CreateNonJoinable(size_t stack_size, Delegate* delegate) {
205 return CreateThreadInternal(stack_size, delegate, NULL);