Home
last modified time | relevance | path

Searched refs:zLeft (Results 1 – 3 of 3) sorted by relevance

/illumos-gate/usr/src/lib/libsqlite/tool/
H A Dshowdb.c63 char *zLeft; in main() local
64 iStart = strtol(argv[i], &zLeft, 0); in main()
65 if( zLeft && strcmp(zLeft,"..end")==0 ){ in main()
67 }else if( zLeft && zLeft[0]=='.' && zLeft[1]=='.' ){ in main()
68 iEnd = strtol(&zLeft[2], 0, 0); in main()
/illumos-gate/usr/src/lib/libsqlite/src/
H A Dpragma.c160 char *zLeft = 0; in sqlitePragma() local
166 zLeft = sqliteStrNDup(pLeft->z, pLeft->n); in sqlitePragma()
167 sqliteDequote(zLeft); in sqlitePragma()
176 sqliteFree(zLeft); in sqlitePragma()
242 if( sqliteStrICmp(zLeft,"cache_size")==0 ){ in sqlitePragma()
333 if( sqliteStrICmp(zLeft,"synchronous")==0 ){ in sqlitePragma()
362 if( flagPragma(pParse, zLeft, zRight) ){ in sqlitePragma()
366 if( sqliteStrICmp(zLeft, "table_info")==0 ){ in sqlitePragma()
395 if( sqliteStrICmp(zLeft, "index_info")==0 ){ in sqlitePragma()
419 if( sqliteStrICmp(zLeft, "index_list")==0 ){ in sqlitePragma()
[all …]
H A Dutil.c502 int sqliteStrICmp(const char *zLeft, const char *zRight){ in sqliteStrICmp() argument
504 a = (unsigned char *)zLeft; in sqliteStrICmp()
509 int sqliteStrNICmp(const char *zLeft, const char *zRight, int N){ in sqliteStrNICmp() argument
511 a = (unsigned char *)zLeft; in sqliteStrNICmp()