Lines Matching refs:nPath
5095 int nPath, /* strlen(zPath) */ in zipfileNewEntry() argument
5100 pCds->nFile = (u16)nPath; in zipfileNewEntry()
5104 nPath+1 + in zipfileNewEntry()
5105 ZIPFILE_CDS_FIXED_SZ + nPath + pCds->nExtra in zipfileNewEntry()
5111 pNew->aCdsEntry = (u8*)&pNew->zPath[nPath+1]; in zipfileNewEntry()
5112 pNew->nCdsEntry = ZIPFILE_CDS_FIXED_SZ + nPath + pCds->nExtra; in zipfileNewEntry()
5113 memcpy(pNew->zPath, zPath, nPath+1); in zipfileNewEntry()
5134 memcpy(aWrite, zPath, nPath); in zipfileNewEntry()
5136 aWrite += nPath; in zipfileNewEntry()
5151 int nPath, /* strlen(zPath) */ in zipfileAppendEntry() argument
5168 zipfileWrite16(aBuf, (u16)nPath); in zipfileAppendEntry()
5173 rc = zipfileAppendData(pTab, (const u8*)zPath, nPath); in zipfileAppendEntry()
5258 int nPath = 0; /* strlen(zPath) */ in zipfileUpdate() local
5340 nPath = (int)strlen(zPath); in zipfileUpdate()
5353 if( zPath[nPath-1]!='/' ){ in zipfileUpdate()
5357 nPath++; in zipfileUpdate()
5366 if( zipfileComparePath(p->zPath, zPath, nPath)==0 ){ in zipfileUpdate()
5386 pNew = zipfileNewEntry(&cds, zPath, nPath, (u32)mTime); in zipfileUpdate()
5396 rc = zipfileAppendEntry(pTab, &cds, zPath, nPath, pData, nData, (u32)mTime); in zipfileUpdate()