OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:default_stack_size
(Results
1 - 7
of
7
) sorted by null
/external/chromium_org/base/threading/
platform_thread_mac.mm
189
//
DEFAULT_STACK_SIZE
for this purpose.
204
size_t
default_stack_size
= 0;
206
if (pthread_attr_getstacksize(&attributes, &
default_stack_size
) == 0 &&
209
default_stack_size
=
210
std::max(std::max(
default_stack_size
,
214
return
default_stack_size
;
/external/chromium/base/threading/
platform_thread_posix.cc
75
//
DEFAULT_STACK_SIZE
for this purpose.
91
size_t
default_stack_size
;
local
93
if (pthread_attr_getstacksize(&attributes, &
default_stack_size
) == 0 &&
96
stack_size = std::max(std::max(
default_stack_size
,
/bionic/tests/
pthread_test.cpp
417
size_t
default_stack_size
;
local
418
ASSERT_EQ(0, pthread_attr_getstacksize(&attributes, &
default_stack_size
));
424
ASSERT_EQ(
default_stack_size
, stack_size);
425
ASSERT_GE(GetActualStackSize(attributes),
default_stack_size
);
local
/external/valgrind/main/coregrind/m_ume/
macho.c
333
static vki_size_t
default_stack_size
(void)
function
366
vki_size_t stacksize = VG_PGROUNDUP(
default_stack_size
());
396
requested_size =
default_stack_size
();
/art/runtime/
thread.cc
446
size_t
default_stack_size
;
local
448
CHECK_PTHREAD_CALL(pthread_attr_getstacksize, (&default_attributes, &
default_stack_size
),
454
stack_size_ =
default_stack_size
;
[
all
...]
/external/valgrind/main/coregrind/m_syswrap/
syswrap-amd64-darwin.c
493
stacksize = 512*1024; // wq stacks are always
DEFAULT_STACK_SIZE
syswrap-x86-darwin.c
454
stacksize = 512*1024; // wq stacks are always
DEFAULT_STACK_SIZE
Completed in 739 milliseconds