Lines Matching refs:iMethod
8401 int iMethod = 0; /* Compression method for new entry */
8455 iMethod = sqlite3_value_int(apVal[8]);
8459 if( iMethod!=0 && iMethod!=8 ){
8460 zipfileTableErr(pTab, "unknown compression method: %d", iMethod);
8463 if( bAuto || iMethod ){
8467 if( iMethod || nCmp<nIn ){
8468 iMethod = 8;
8541 pNew->cds.iCompression = (u16)iMethod;
8804 int iMethod = -1; /* Compression method to use (0 or 8) */
8851 iMethod = (int)sqlite3_value_int64(pMethod);
8852 if( iMethod!=0 && iMethod!=8 ){
8853 zErr = sqlite3_mprintf("illegal method value: %d", iMethod);
8864 iMethod = 0;
8869 if( iMethod<0 || iMethod==8 ){
8875 if( iMethod==8 || nOut<nData ){
8878 iMethod = 8;
8880 iMethod = 0;
8918 e.cds.iCompression = (u16)iMethod;