Lines Matching refs:zFull
892 char *zFull = 0; in sqlite3_quota_file() local
904 zFull = &((char *)fd)[gQuota.sThisVfs.szOsFile]; in sqlite3_quota_file()
906 gQuota.sThisVfs.mxPathname+1, zFull); in sqlite3_quota_file()
910 zFull[strlen(zFull)+1] = '\0'; in sqlite3_quota_file()
911 rc = quotaOpen(&gQuota.sThisVfs, zFull, fd, in sqlite3_quota_file()
920 pGroup = quotaGroupFind(zFull); in sqlite3_quota_file()
922 pFile = quotaFindFile(pGroup, zFull, 0); in sqlite3_quota_file()
938 char *zFull = 0; in sqlite3_quota_fopen() local
944 zFull = (char*)sqlite3_malloc(gQuota.sThisVfs.mxPathname + 1); in sqlite3_quota_fopen()
945 if( zFull==0 ) return 0; in sqlite3_quota_fopen()
947 gQuota.sThisVfs.mxPathname+1, zFull); in sqlite3_quota_fopen()
952 zFullTranslated = quota_utf8_to_mbcs(zFull); in sqlite3_quota_fopen()
957 pGroup = quotaGroupFind(zFull); in sqlite3_quota_fopen()
959 pFile = quotaFindFile(pGroup, zFull, 1); in sqlite3_quota_fopen()
968 sqlite3_free(zFull); in sqlite3_quota_fopen()
976 sqlite3_free(zFull); in sqlite3_quota_fopen()
1230 char *zFull; /* Full pathname for zFilename */ in sqlite3_quota_remove() local
1239 zFull = (char*)sqlite3_malloc(gQuota.sThisVfs.mxPathname + 1); in sqlite3_quota_remove()
1240 if( zFull==0 ) return SQLITE_NOMEM; in sqlite3_quota_remove()
1242 gQuota.sThisVfs.mxPathname+1, zFull); in sqlite3_quota_remove()
1244 sqlite3_free(zFull); in sqlite3_quota_remove()
1251 nFull = strlen(zFull); in sqlite3_quota_remove()
1252 if( nFull>0 && (zFull[nFull-1]=='/' || zFull[nFull-1]=='\\') ){ in sqlite3_quota_remove()
1254 zFull[nFull] = 0; in sqlite3_quota_remove()
1258 pGroup = quotaGroupFind(zFull); in sqlite3_quota_remove()
1262 diff = strncmp(zFull, pFile->zFilename, nFull); in sqlite3_quota_remove()
1275 sqlite3_free(zFull); in sqlite3_quota_remove()