Lines Matching defs:iMethod
10954 int iMethod = 0; /* Compression method for new entry */
11010 iMethod = sqlite3_value_int(apVal[8]);
11014 if( iMethod!=0 && iMethod!=8 ){
11015 zipfileTableErr(pTab, "unknown compression method: %d", iMethod);
11018 if( bAuto || iMethod ){
11022 if( iMethod || nCmp<nIn ){
11023 iMethod = 8;
11096 pNew->cds.iCompression = (u16)iMethod;
11360 int iMethod = -1; /* Compression method to use (0 or 8) */
11407 iMethod = (int)sqlite3_value_int64(pMethod);
11408 if( iMethod!=0 && iMethod!=8 ){
11409 zErr = sqlite3_mprintf("illegal method value: %d", iMethod);
11420 iMethod = 0;
11425 if( iMethod<0 || iMethod==8 ){
11431 if( iMethod==8 || nOut<nData ){
11434 iMethod = 8;
11436 iMethod = 0;
11474 e.cds.iCompression = (u16)iMethod;