Searched refs:stackSize (Results 1 – 8 of 8) sorted by relevance
/dalvik/vm/native/ |
D | java_lang_VMThread.cpp | 34 s8 stackSize = GET_ARG_LONG(args, 1); in Dalvik_java_lang_VMThread_create() local 37 dvmCreateInterpThread(threadObj, (int) stackSize); in Dalvik_java_lang_VMThread_create()
|
/dalvik/vm/interp/ |
D | Stack.h | 178 bool dvmInitInterpStack(Thread* thread, int stackSize);
|
D | Stack.cpp | 38 bool dvmInitInterpStack(Thread* thread, int stackSize) in dvmInitInterpStack() argument
|
/dalvik/vm/ |
D | Thread.cpp | 1237 int stackSize; in dvmCreateInterpThread() local 1239 stackSize = gDvm.stackSize; in dvmCreateInterpThread() 1241 stackSize = kMinStackSize; in dvmCreateInterpThread() 1243 stackSize = kMaxStackSize; in dvmCreateInterpThread() 1245 stackSize = reqStackSize; in dvmCreateInterpThread() 1259 Thread* newThread = allocThread(stackSize); in dvmCreateInterpThread() 1782 self = allocThread(gDvm.stackSize); in dvmAttachCurrentThread()
|
D | Exception.cpp | 952 size_t stackSize = stackData->length / 2; in dvmGetStackTrace() local 954 return dvmGetStackTraceRaw(intVals, stackSize); in dvmGetStackTrace() 1150 int stackSize = stackData->length / 2; in logStackTraceOf() local 1153 dvmLogRawStackTrace(intVals, stackSize); in logStackTraceOf()
|
D | Globals.h | 93 size_t stackSize; member
|
D | Init.cpp | 802 gDvm.stackSize = val; in processOptions() 1076 gDvm.stackSize = kDefaultStackSize; in setCommandLineDefaults()
|
/dalvik/vm/analysis/ |
D | CodeVerify.cpp | 2992 bool trackMonitors, size_t regTypeSize, size_t monEntSize, size_t stackSize) in assignLineStorage() argument 3001 storage += stackSize; in assignLineStorage() 3087 size_t stackSize = kMaxMonitorStackDepth * sizeof(u4); in initRegisterTable() local 3097 (trackMonitors ? monEntSize + stackSize : 0); in initRegisterTable() 3137 trackMonitors, regTypeSize, monEntSize, stackSize); in initRegisterTable() 3145 trackMonitors, regTypeSize, monEntSize, stackSize); in initRegisterTable() 3147 trackMonitors, regTypeSize, monEntSize, stackSize); in initRegisterTable()
|