Lines Matching refs:zLeft
20840 SQLITE_PRIVATE int sqlite3StrICmp(const char *zLeft, const char *zRight){ in sqlite3StrICmp() argument
20842 a = (unsigned char *)zLeft; in sqlite3StrICmp()
20847 SQLITE_API int sqlite3_strnicmp(const char *zLeft, const char *zRight, int N){ in sqlite3_strnicmp() argument
20849 a = (unsigned char *)zLeft; in sqlite3_strnicmp()
90125 static int flagPragma(Parse *pParse, const char *zLeft, const char *zRight){
90167 if( sqlite3StrICmp(zLeft, p->zName)==0 ){
90269 char *zLeft = 0; /* Nul-terminated UTF-8 string <id> */
90294 zLeft = sqlite3NameFromToken(db, pId);
90295 if( !zLeft ) return;
90304 if( sqlite3AuthCheck(pParse, SQLITE_PRAGMA, zLeft, zRight, zDb) ){
90325 if( sqlite3StrICmp(zLeft,"default_cache_size")==0 ){
90367 if( sqlite3StrICmp(zLeft,"page_size")==0 ){
90392 if( sqlite3StrICmp(zLeft,"secure_delete")==0 ){
90422 if( sqlite3StrICmp(zLeft,"page_count")==0
90423 || sqlite3StrICmp(zLeft,"max_page_count")==0
90429 if( zLeft[0]=='p' ){
90436 sqlite3VdbeSetColName(v, 0, COLNAME_NAME, zLeft, SQLITE_TRANSIENT);
90443 if( sqlite3StrICmp(zLeft,"locking_mode")==0 ){
90491 if( sqlite3StrICmp(zLeft,"journal_mode")==0 ){
90540 if( sqlite3StrICmp(zLeft,"journal_size_limit")==0 ){
90561 if( sqlite3StrICmp(zLeft,"auto_vacuum")==0 ){
90620 if( sqlite3StrICmp(zLeft,"incremental_vacuum")==0 ){
90653 if( sqlite3StrICmp(zLeft,"cache_size")==0 ){
90676 if( sqlite3StrICmp(zLeft, "temp_store")==0 ){
90694 if( sqlite3StrICmp(zLeft, "temp_store_directory")==0 ){
90746 if( sqlite3StrICmp(zLeft, "lock_proxy_file")==0 ){
90789 if( sqlite3StrICmp(zLeft,"synchronous")==0 ){
90805 if( flagPragma(pParse, zLeft, zRight) ){
90824 if( sqlite3StrICmp(zLeft, "table_info")==0 && zRight ){
90862 if( sqlite3StrICmp(zLeft, "index_info")==0 && zRight ){
90886 if( sqlite3StrICmp(zLeft, "index_list")==0 && zRight ){
90913 if( sqlite3StrICmp(zLeft, "database_list")==0 ){
90932 if( sqlite3StrICmp(zLeft, "collation_list")==0 ){
90949 if( sqlite3StrICmp(zLeft, "foreign_key_list")==0 && zRight ){
90995 if( sqlite3StrICmp(zLeft, "parser_trace")==0 ){
91009 if( sqlite3StrICmp(zLeft, "case_sensitive_like")==0 ){
91024 if( sqlite3StrICmp(zLeft, "integrity_check")==0
91025 || sqlite3StrICmp(zLeft, "quick_check")==0
91040 int isQuick = (zLeft[0]=='q');
91206 if( sqlite3StrICmp(zLeft, "encoding")==0 ){
91282 if( sqlite3StrICmp(zLeft, "schema_version")==0
91283 || sqlite3StrICmp(zLeft, "user_version")==0
91284 || sqlite3StrICmp(zLeft, "freelist_count")==0
91288 switch( zLeft[0] ){
91324 sqlite3VdbeSetColName(v, 0, COLNAME_NAME, zLeft, SQLITE_TRANSIENT);
91336 if( sqlite3StrICmp(zLeft, "compile_options")==0 ){
91355 if( sqlite3StrICmp(zLeft, "wal_checkpoint")==0 ){
91384 if( sqlite3StrICmp(zLeft, "wal_autocheckpoint")==0 ){
91398 if( sqlite3StrICmp(zLeft, "lock_status")==0 ){
91429 if( sqlite3StrICmp(zLeft, "key")==0 && zRight ){
91432 if( sqlite3StrICmp(zLeft, "rekey")==0 && zRight ){
91435 if( zRight && (sqlite3StrICmp(zLeft, "hexkey")==0 ||
91436 sqlite3StrICmp(zLeft, "hexrekey")==0) ){
91444 if( (zLeft[3] & 0xf)==0xb ){
91452 if( sqlite3StrICmp(zLeft, "activate_extensions")==0 ){
91481 sqlite3DbFree(db, zLeft);
130693 const void *zLeft,
130699 res = ucol_strcoll(p, (UChar *)zLeft, nLeft/2, (UChar *)zRight, nRight/2);