Lines Matching refs:nPath
38283 size_t nPath;
38287 nPath = strlen(zPath);
38289 if( nOut<nPath+1 ) nPath = nOut - 1;
38290 memcpy(zOut, zPath, nPath);
38291 zOut[nPath] = 0;
208698 int nPath;
208701 nPath = sqlite3Strlen30(zPath);
208716 jsonAppendRaw(&jx, zPath, nPath);
208718 }else if( jsonAllAlphanum(zPath, nPath) ){
208720 jsonAppendRaw(&jx, zPath, nPath);
208721 }else if( zPath[0]=='[' && nPath>=3 && zPath[nPath-1]==']' ){
208722 jsonAppendRaw(&jx, zPath, nPath);
208725 jsonAppendRaw(&jx, zPath, nPath);
209625 u32 nPath; /* Length of path */
209833 pParent->nPath = (u32)p->path.nUsed;
209845 p->path.nUsed = p->aParent[p->nParent].nPath;