Lines Matching refs:sIoMethodsV1
167 sqlite3_io_methods sIoMethodsV1; member
469 pQuotaOpen->base.pMethods = &gQuota.sIoMethodsV1; in quotaOpen()
766 gQuota.sIoMethodsV1.iVersion = 1; in sqlite3_quota_initialize()
767 gQuota.sIoMethodsV1.xClose = quotaClose; in sqlite3_quota_initialize()
768 gQuota.sIoMethodsV1.xRead = quotaRead; in sqlite3_quota_initialize()
769 gQuota.sIoMethodsV1.xWrite = quotaWrite; in sqlite3_quota_initialize()
770 gQuota.sIoMethodsV1.xTruncate = quotaTruncate; in sqlite3_quota_initialize()
771 gQuota.sIoMethodsV1.xSync = quotaSync; in sqlite3_quota_initialize()
772 gQuota.sIoMethodsV1.xFileSize = quotaFileSize; in sqlite3_quota_initialize()
773 gQuota.sIoMethodsV1.xLock = quotaLock; in sqlite3_quota_initialize()
774 gQuota.sIoMethodsV1.xUnlock = quotaUnlock; in sqlite3_quota_initialize()
775 gQuota.sIoMethodsV1.xCheckReservedLock = quotaCheckReservedLock; in sqlite3_quota_initialize()
776 gQuota.sIoMethodsV1.xFileControl = quotaFileControl; in sqlite3_quota_initialize()
777 gQuota.sIoMethodsV1.xSectorSize = quotaSectorSize; in sqlite3_quota_initialize()
778 gQuota.sIoMethodsV1.xDeviceCharacteristics = quotaDeviceCharacteristics; in sqlite3_quota_initialize()
779 gQuota.sIoMethodsV2 = gQuota.sIoMethodsV1; in sqlite3_quota_initialize()