Searched refs:nPath (Results 1 – 2 of 2) sorted by relevance
10873 int nPath = 0; /* strlen(zPath) */ in zipfileUpdate() local10963 nPath = (int)strlen(zPath); in zipfileUpdate()10972 if( nPath<=0 || zPath[nPath-1]!='/' ){ in zipfileUpdate()10977 nPath = 0; in zipfileUpdate()10979 nPath = (int)strlen(zPath); in zipfileUpdate()10989 if( zipfileComparePath(p->cds.zFile, zPath, nPath)==0 ){ in zipfileUpdate()11025 pNew->cds.nFile = (u16)nPath; in zipfileUpdate()
37943 size_t nPath;37947 nPath = strlen(zPath);37949 if( nOut<nPath+1 ) nPath = nOut - 1;37950 memcpy(zOut, zPath, nPath);37951 zOut[nPath] = 0;206941 int nPath;206944 nPath = sqlite3Strlen30(zPath);206957 if( jsonAllDigits(zPath, nPath) ){206959 jsonAppendRaw(&jx, zPath, nPath);206961 }else if( jsonAllAlphanum(zPath, nPath) ){[all …]