Lines Matching refs:zFilename
84 const char *zFilename, /* Name of file whose size increases */
104 char *zFilename; /* Name of this file */ member
329 static quotaGroup *quotaGroupFind(const char *zFilename){ in quotaGroupFind() argument
331 for(p=gQuota.pGroup; p && quotaStrglob(p->zPattern, zFilename)==0; in quotaGroupFind()
353 while( pFile && strcmp(pFile->zFilename, zName)!=0 ){ in quotaFindFile()
361 pFile->zFilename = (char*)&pFile[1]; in quotaFindFile()
362 memcpy(pFile->zFilename, zName, nName+1); in quotaFindFile()
539 gQuota.pOrigVfs->xDelete(gQuota.pOrigVfs, pFile->zFilename, 0); in quotaClose()
584 pGroup->xCallback(pFile->zFilename, &pGroup->iLimit, szNew, in quotaWrite()
842 const char *zFilename, /* Name of file whose size increases */ in sqlite3_quota_set()
891 int sqlite3_quota_file(const char *zFilename){ in sqlite3_quota_file() argument
905 rc = gQuota.pOrigVfs->xFullPathname(gQuota.pOrigVfs, zFilename, in sqlite3_quota_file()
936 quota_FILE *sqlite3_quota_fopen(const char *zFilename, const char *zMode){ in sqlite3_quota_fopen() argument
946 rc = gQuota.pOrigVfs->xFullPathname(gQuota.pOrigVfs, zFilename, in sqlite3_quota_fopen()
1019 pGroup->xCallback(pFile->zFilename, &pGroup->iLimit, szNew, in sqlite3_quota_fwrite()
1065 gQuota.pOrigVfs->xDelete(gQuota.pOrigVfs, pFile->zFilename, 0); in sqlite3_quota_fclose()
1229 int sqlite3_quota_remove(const char *zFilename){ in sqlite3_quota_remove() argument
1241 rc = gQuota.pOrigVfs->xFullPathname(gQuota.pOrigVfs, zFilename, in sqlite3_quota_remove()
1262 diff = strncmp(zFull, pFile->zFilename, nFull); in sqlite3_quota_remove()
1263 if( diff==0 && ((c = pFile->zFilename[nFull])==0 || c=='/' || c=='\\') ){ in sqlite3_quota_remove()
1267 rc = gQuota.pOrigVfs->xDelete(gQuota.pOrigVfs, pFile->zFilename, 0); in sqlite3_quota_remove()
1306 const char *zFilename, /* Name of file whose size increases */ in tclQuotaCallback() argument
1328 Tcl_ListObjAppendElement(0, pEval, Tcl_NewStringObj(zFilename, -1)); in tclQuotaCallback()
1472 const char *zFilename; /* File pattern to configure */ in test_quota_file() local
1480 zFilename = Tcl_GetString(objv[1]); in test_quota_file()
1483 rc = sqlite3_quota_file(zFilename); in test_quota_file()
1518 sqlite3_snprintf(sizeof(zTemp), zTemp, "%s", pFile->zFilename); in test_quota_dump()
1546 const char *zFilename; /* File pattern to configure */ in test_quota_fopen() local
1556 zFilename = Tcl_GetString(objv[1]); in test_quota_fopen()
1558 p = sqlite3_quota_fopen(zFilename, zMode); in test_quota_fopen()
1854 const char *zFilename; /* File pattern to configure */ in test_quota_remove() local
1860 zFilename = Tcl_GetString(objv[1]); in test_quota_remove()
1861 rc = sqlite3_quota_remove(zFilename); in test_quota_remove()