| /sqlite-3.40.0/ext/expert/ |
| H A D | expert.c | 99 if( nArg>=2 && 0==sqlite3_strnicmp(zArg, "-file", nArg) ){ in main() 104 else if( nArg>=3 && 0==sqlite3_strnicmp(zArg, "-sql", nArg) ){ in main() 109 else if( nArg>=3 && 0==sqlite3_strnicmp(zArg, "-sample", nArg) ){ in main() 116 else if( nArg>=2 && 0==sqlite3_strnicmp(zArg, "-verbose", nArg) ){ in main()
|
| /sqlite-3.40.0/ext/fts5/ |
| H A D | fts5_config.c | 71 if( sqlite3_strnicmp("null", p, 4)==0 ){ in fts5ConfigSkipLiteral() 215 if( sqlite3_strnicmp(aEnum[i].zName, zEnum, nEnum)==0 ){ in fts5ConfigSetEnum() 243 if( sqlite3_strnicmp("prefix", zCmd, nCmd)==0 ){ in fts5ConfigParseSpecial() 296 if( sqlite3_strnicmp("tokenize", zCmd, nCmd)==0 ){ in fts5ConfigParseSpecial() 340 if( sqlite3_strnicmp("content", zCmd, nCmd)==0 ){ in fts5ConfigParseSpecial() 355 if( sqlite3_strnicmp("content_rowid", zCmd, nCmd)==0 ){ in fts5ConfigParseSpecial() 365 if( sqlite3_strnicmp("columnsize", zCmd, nCmd)==0 ){ in fts5ConfigParseSpecial() 375 if( sqlite3_strnicmp("detail", zCmd, nCmd)==0 ){ in fts5ConfigParseSpecial()
|
| H A D | fts5_main.c | 1064 if( n==5 && 0==sqlite3_strnicmp("reads", z, n) ){ in fts5SpecialMatch() 1067 else if( n==2 && 0==sqlite3_strnicmp("id", z, n) ){ in fts5SpecialMatch()
|
| /sqlite-3.40.0/ext/session/ |
| H A D | session_speed_test.c | 132 if( 0==sqlite3_strnicmp(pOpt->zText, zArg, nArg) ){ in parse_command_line() 159 if( nMatch==0 && 0==sqlite3_strnicmp("-cmdline:verbose", zArg, nArg) ){ in parse_command_line()
|
| H A D | test_session.c | 787 if( n>1 && n<=12 && 0==sqlite3_strnicmp("-nosavepoint", z1, n) ){ in testSqlite3changesetApply() 796 if( n>1 && n<=7 && 0==sqlite3_strnicmp("-invert", z1, n) ){ in testSqlite3changesetApply() 1036 if( nOpt<=7 && 0==sqlite3_strnicmp(zOpt, "-invert", nOpt) ){ in test_sqlite3session_foreach() 1039 if( nOpt<=5 && 0==sqlite3_strnicmp(zOpt, "-next", nOpt) ){ in test_sqlite3session_foreach()
|
| H A D | sqlite3session.c | 1460 if( 0==sqlite3_strnicmp(pRet->zName, zName, nName+1) ) break; in sessionFindTable() 1476 assert( 0==sqlite3_strnicmp(pRet->zName, zName, nName+1) ); in sessionFindTable() 1511 if( sqlite3_strnicmp(zDb, pSession->zDb, nDb+1) ) continue; in xPreUpdate() 1961 if( 0==sqlite3_strnicmp(pTab->zName, zName, nName+1) ) break; in sqlite3session_attach() 4671 if( zTab==0 || sqlite3_strnicmp(zNew, zTab, nTab+1) ){ in sessionChangesetApply() 5162 if( 0==sqlite3_strnicmp(pTab->zName, zNew, nNew+1) ) break; in sessionChangesetToHash()
|
| /sqlite-3.40.0/src/ |
| H A D | test_sqllog.c | 256 && 0==sqlite3_strnicmp(zSearch, zVal1, nVal1) in sqllogFindAttached() 409 if( nFirst!=6 || 0!=sqlite3_strnicmp("ATTACH", zFirst, 6) ){ in testSqllogStmt()
|
| H A D | loadext.c | 366 sqlite3_strnicmp, 623 if( sqlite3_strnicmp(zFile+iFile, "lib", 3)==0 ) iFile += 3; in sqlite3LoadExtension()
|
| H A D | date.c | 786 if( sqlite3_strnicmp(z, "weekday ", 8)==0 in parseModifier() 809 if( sqlite3_strnicmp(z, "start of ", 9)!=0 ) break; in parseModifier() 886 && sqlite3_strnicmp(aXformType[i].zName, z, n)==0 in parseModifier()
|
| H A D | test_superlock.c | 77 if( zMode && strlen(zMode)==3 && sqlite3_strnicmp("wal", zMode, 3)==0 ){ in superlockIsWal()
|
| H A D | vacuum.c | 41 assert( sqlite3_strnicmp(zSql,"SELECT",6)==0 ); in execSql()
|
| H A D | build.c | 458 if( pMod==0 && sqlite3_strnicmp(zName, "pragma_", 7)==0 ){ in sqlite3LocateTable() 1403 if( sqlite3_strnicmp(pCol->zCnName, "__hidden__", 10)==0 ){ in sqlite3ColumnPropertiesFromName() 1519 && sqlite3_strnicmp(sType.z+(sType.n-6),"always",6)==0 in sqlite3AddColumn() 1524 && sqlite3_strnicmp(sType.z+(sType.n-9),"generated",9)==0 in sqlite3AddColumn() 1538 && sqlite3_strnicmp(sType.z, sqlite3StdType[i], sType.n)==0 in sqlite3AddColumn() 2501 if( sqlite3_strnicmp(zName, pTab->zName, nName)!=0 ) return 0; in sqlite3IsShadowTableOf()
|
| H A D | test_fs.c | 531 if( sqlite3_strnicmp(zQuery, zPrefix, nPrefix)==0 ){ in fstreeFilter()
|
| H A D | sqlite3ext.h | 568 #define sqlite3_strnicmp sqlite3_api->strnicmp macro
|
| /sqlite-3.40.0/ext/repair/ |
| H A D | checkindex.c | 426 if( !sqlite3_strnicmp(&z[-3], "asc", 3) && 0==cidx_isident(z[-4]) ){ in cidxParseSQL() 430 if( !sqlite3_strnicmp(&z[-4], "desc", 4) && 0==cidx_isident(z[-5]) ){ in cidxParseSQL() 448 if( 0==sqlite3_strnicmp(z, "where", 5) ){ in cidxParseSQL()
|
| /sqlite-3.40.0/ext/misc/ |
| H A D | unionvtab.c | 824 }else if( nOpt==7 && 0==sqlite3_strnicmp(zOpt, "maxopen", 7) ){ in unionConfigureVtab() 830 }else if( nOpt==7 && 0==sqlite3_strnicmp(zOpt, "missing", 7) ){ in unionConfigureVtab() 840 }else if( nOpt==9 && 0==sqlite3_strnicmp(zOpt, "openclose", 9) ){ in unionConfigureVtab()
|
| H A D | completion.c | 288 && sqlite3_strnicmp(pCur->zPrefix, pCur->zCurrentRow, pCur->nPrefix)==0 in completionNext()
|
| H A D | normalize.c | 585 if( n==4 && sqlite3_strnicmp(zSql+i,"NULL",4)==0 ){ in sqlite3_normalize()
|
| /sqlite-3.40.0/test/ |
| H A D | ossfuzz.c | 95 && (sqlite3_strnicmp("vdbe_", zArg1, 5)==0 in block_debug_pragmas()
|
| /sqlite-3.40.0/tool/ |
| H A D | index_usage.c | 191 if( zUsing && sqlite3_strnicmp(zUsing, z1, n)==0 ){ in main()
|
| H A D | offsets.c | 101 && sqlite3_strnicmp(zCol, zColumn, strlen(zCol))==0 in ofstRootAndColumn()
|
| /sqlite-3.40.0/ext/fts3/ |
| H A D | fts3_write.c | 5423 }else if( nVal==8 && 0==sqlite3_strnicmp(zVal, "optimize", 8) ){ in fts3SpecialInsert() 5425 }else if( nVal==7 && 0==sqlite3_strnicmp(zVal, "rebuild", 7) ){ in fts3SpecialInsert() 5427 }else if( nVal==15 && 0==sqlite3_strnicmp(zVal, "integrity-check", 15) ){ in fts3SpecialInsert() 5429 }else if( nVal>6 && 0==sqlite3_strnicmp(zVal, "merge=", 6) ){ in fts3SpecialInsert() 5431 }else if( nVal>10 && 0==sqlite3_strnicmp(zVal, "automerge=", 10) ){ in fts3SpecialInsert() 5436 if( nVal>9 && 0==sqlite3_strnicmp(zVal, "nodesize=", 9) ){ in fts3SpecialInsert() 5440 }else if( nVal>11 && 0==sqlite3_strnicmp(zVal, "maxpending=", 9) ){ in fts3SpecialInsert() 5444 }else if( nVal>21 && 0==sqlite3_strnicmp(zVal,"test-no-incr-doclist=",21) ){ in fts3SpecialInsert() 5447 }else if( nVal>11 && 0==sqlite3_strnicmp(zVal,"mergecount=",11) ){ in fts3SpecialInsert()
|
| H A D | fts3.c | 1211 assert( (sqlite3_strnicmp(argv[0], "fts4", 4)==0 && isFts4) in fts3InitVtab() 1212 || (sqlite3_strnicmp(argv[0], "fts3", 4)==0 && !isFts4) in fts3InitVtab() 1251 && 0==sqlite3_strnicmp(z, "tokenize", 8) in fts3InitVtab() 1279 if( nKey==pOp->nOpt && !sqlite3_strnicmp(z, pOp->zOpt, pOp->nOpt) ){ in fts3InitVtab() 1285 if( strlen(zVal)!=4 || sqlite3_strnicmp(zVal, "fts3", 4) ){ in fts3InitVtab() 1311 if( (strlen(zVal)!=3 || sqlite3_strnicmp(zVal, "asc", 3)) in fts3InitVtab() 1312 && (strlen(zVal)!=4 || sqlite3_strnicmp(zVal, "desc", 4)) in fts3InitVtab() 1479 && 0==sqlite3_strnicmp(p->azColumn[iCol], zNot, n) in fts3InitVtab()
|
| H A D | fts3_aux.c | 85 if( nDb==4 && 0==sqlite3_strnicmp("temp", zDb, 4) ){ in fts3auxConnectMethod()
|
| H A D | fts3_expr.c | 529 && sqlite3_strnicmp(zStr, zInput, nStr)==0 in getNextNode()
|