Lines Matching refs:interpStackSize
233 static Thread* allocThread(int interpStackSize);
805 static Thread* allocThread(int interpStackSize) in allocThread() argument
824 assert(interpStackSize >= kMinStackSize && interpStackSize <=kMaxStackSize); in allocThread()
836 stackBottom = (u1*) malloc(interpStackSize); in allocThread()
844 memset(stackBottom, 0xc5, interpStackSize); // stop valgrind complaints in allocThread()
846 stackBottom = (u1*) mmap(NULL, interpStackSize, PROT_READ | PROT_WRITE, in allocThread()
858 thread->interpStackSize = interpStackSize; in allocThread()
859 thread->interpStackStart = stackBottom + interpStackSize; in allocThread()
869 dvmInitInterpStack(thread, interpStackSize); in allocThread()
915 thread->threadId, thread->interpStackStart - thread->interpStackSize); in prepareThread()
983 interpStackBottom -= thread->interpStackSize; in freeThread()
987 if (munmap(interpStackBottom, thread->interpStackSize) != 0) in freeThread()