Searched defs:curCount (Results 1 - 1 of 1) sorted by relevance

/frameworks/base/core/jni/
H A Dandroid_util_Process.cpp767 jsize curCount = 0; local
770 curCount = env->GetArrayLength(lastArray);
788 if (curPos >= curCount) {
789 jsize newCount = (curCount == 0) ? 10 : (curCount*2);
798 memcpy(newData, curData, sizeof(jint)*curCount);
802 curCount = newCount;
816 while (curPos < curCount) {

Completed in 103 milliseconds