Lines Matching refs:zOpt
91338 const char *zOpt;
91342 while( (zOpt = sqlite3_compileoption_get(i++))!=0 ){
91343 sqlite3VdbeAddOp4(v, OP_String8, 0, 1, 0, zOpt, 0);
111991 char *zOpt;
112082 zOpt = &zFile[sqlite3Strlen30(zFile)+1];
112083 while( zOpt[0] ){
112084 int nOpt = sqlite3Strlen30(zOpt);
112085 char *zVal = &zOpt[nOpt+1];
112088 if( nOpt==3 && memcmp("vfs", zOpt, 3)==0 ){
112099 if( nOpt==5 && memcmp("cache", zOpt, 5)==0 ){
112111 if( nOpt==4 && memcmp("mode", zOpt, 4)==0 ){
112150 zOpt = &zVal[nVal+1];
115211 const char *zOpt;
115228 if( nKey==pOp->nOpt && !sqlite3_strnicmp(z, pOp->zOpt, pOp->nOpt) ){