HomeSort by relevance Sort by last modified time
    Searched defs:stackBottom (Results 1 - 2 of 2) sorted by null

  /dalvik/vm/
Thread.cpp 808 u1* stackBottom;
836 stackBottom = (u1*) malloc(interpStackSize);
837 if (stackBottom == NULL) {
844 memset(stackBottom, 0xc5, interpStackSize); // stop valgrind complaints
846 stackBottom = (u1*) mmap(NULL, interpStackSize, PROT_READ | PROT_WRITE,
848 if (stackBottom == MAP_FAILED) {
857 assert(((u4)stackBottom & 0x03) == 0); // looks like our malloc ensures this
859 thread->interpStackStart = stackBottom + interpStackSize;
860 thread->interpStackEnd = stackBottom + STACK_OVERFLOW_RESERVE;
    [all...]
  /external/robolectric/lib/main/
sqlite-jdbc-3.7.2.jar 

Completed in 40 milliseconds