Lines Matching refs:zPath
1338 static ZipfileEntry *zipfileNewEntry(const char *zPath){ in zipfileNewEntry() argument
1343 pNew->cds.zFile = sqlite3_mprintf("%s", zPath); in zipfileNewEntry()
1554 const char *zPath = 0; /* Path for new entry */ in zipfileUpdate() local
1641 zPath = (const char*)sqlite3_value_text(apVal[2]); in zipfileUpdate()
1642 if( zPath==0 ) zPath = ""; in zipfileUpdate()
1643 nPath = (int)strlen(zPath); in zipfileUpdate()
1652 if( nPath<=0 || zPath[nPath-1]!='/' ){ in zipfileUpdate()
1653 zFree = sqlite3_mprintf("%s/", zPath); in zipfileUpdate()
1654 zPath = (const char*)zFree; in zipfileUpdate()
1659 nPath = (int)strlen(zPath); in zipfileUpdate()
1669 if( zipfileComparePath(p->cds.zFile, zPath, nPath)==0 ){ in zipfileUpdate()
1679 zipfileTableErr(pTab, "duplicate name: \"%s\"", zPath); in zipfileUpdate()
1691 pNew = zipfileNewEntry(zPath); in zipfileUpdate()