Searched refs:zOpt (Results 1 – 3 of 3) sorted by relevance
| /freebsd/contrib/sqlite3/tea/generic/ |
| H A D | tclsqlite3.c | 2910 const char *zOpt = Tcl_GetString(objv[2]); in DbObjCmd() local 2913 if( zOpt[0]=='-' ) zOpt++; in DbObjCmd() 2915 if( strcmp(aDbConfig[ii].zName, zOpt)==0 ) break; in DbObjCmd() 2918 Tcl_AppendResult(interp, "unknown config option: \"", zOpt, in DbObjCmd() 3306 const char *zOpt; in DbObjCmd() local 3307 while( objc>3 && (zOpt = Tcl_GetString(objv[2]))!=0 && zOpt[0]=='-' ){ in DbObjCmd() 3308 if( strcmp(zOpt, "-withoutnulls")==0 ){ in DbObjCmd() 3310 }else if( strcmp(zOpt, "-asdict")==0 ){ in DbObjCmd() 3313 Tcl_AppendResult(interp, "unknown option: \"", zOpt, "\"", (void*)0); in DbObjCmd()
|
| /freebsd/contrib/sqlite3/ |
| H A D | shell.c | 29316 static int optionMatch(const char *zStr, const char *zOpt){ in optionMatch() argument 29320 return cli_strcmp(zStr, zOpt)==0; in optionMatch() 35505 char *zOpt; in do_meta_command() local 35512 zOpt = azArg[1]; in do_meta_command() 35513 if( zOpt[0]=='-' && zOpt[1]=='-' && zOpt[2]!=0 ) zOpt++; in do_meta_command() 35514 lenOpt = (int)strlen(zOpt); in do_meta_command() 35515 if( lenOpt>=3 && cli_strncmp(zOpt, "-allexcept",lenOpt)==0 ){ in do_meta_command()
|
| H A D | sqlite3.c | 147165 const char *zOpt; local 147167 while( (zOpt = sqlite3_compileoption_get(i++))!=0 ){ 147168 sqlite3VdbeLoadString(v, 1, zOpt); 190488 char *zOpt; local 190600 zOpt = &zFile[strlen(zFile)+1]; 190601 while( zOpt[0] ){ 190602 i64 nOpt = strlen(zOpt); 190603 char *zVal = &zOpt[nOpt+1]; 190606 if( nOpt==3 && memcmp("vfs", zOpt, 3)==0 ){ 190617 if( nOpt==5 && memcmp("cache", zOpt, 5)==0 ){ [all …]
|