Home | History | Annotate | Download | only in utils

Lines Matching refs:mCurrent

32     : mMax(0), mCurrent(0), mArray(NULL)
37 for (int i = 0; i < mCurrent; i++)
46 if (mCurrent >= mMax) {
58 memcpy(tmp, mArray, mCurrent * sizeof(char*));
64 mArray[mCurrent] = new char[len+1];
65 memcpy(mArray[mCurrent], str, len+1);
66 mCurrent++;
75 if (idx < 0 || idx >= mCurrent)
78 if (idx < mCurrent-1) {
80 (mCurrent-1 - idx) * sizeof(char*));
82 mCurrent--;
89 qsort(mArray, mCurrent, sizeof(char*), compare);
104 if (idx < 0 || idx >= mCurrent)