Lines Matching defs:pArray
122096 ** pArray is a pointer to an array of objects. Each object in the
122110 ** unchanged and a copy of pArray returned.
122114 void *pArray, /* Array of objects. Might be reallocated */
122123 void *pNew = sqlite3DbRealloc(db, pArray, sz*szEntry);
122126 return pArray;
122128 pArray = pNew;
122130 z = (char*)pArray;
122133 return pArray;