Searched refs:zOpt (Results 1 – 4 of 4) sorted by relevance
| /freebsd-12.1/contrib/sqlite3/tea/generic/ |
| H A D | tclsqlite3.c | 2385 const char *zOpt = Tcl_GetString(objv[2]); in DbObjCmd() local 2388 if( zOpt[0]=='-' ) zOpt++; in DbObjCmd() 2390 if( strcmp(aDbConfig[ii].zName, zOpt)==0 ) break; in DbObjCmd() 2393 Tcl_AppendResult(interp, "unknown config option: \"", zOpt, in DbObjCmd() 2759 const char *zOpt; in DbObjCmd() local 2760 while( objc>3 && (zOpt = Tcl_GetString(objv[2]))!=0 && zOpt[0]=='-' ){ in DbObjCmd() 2761 if( strcmp(zOpt, "-withoutnulls")==0 ){ in DbObjCmd() 2765 Tcl_AppendResult(interp, "unknown option: \"", zOpt, "\"", (void*)0); in DbObjCmd()
|
| /freebsd-12.1/contrib/sqlite3/ |
| H A D | shell.c | 13902 static int optionMatch(const char *zStr, const char *zOpt){ in optionMatch() argument 13906 return strcmp(zStr, zOpt)==0; in optionMatch() 18390 char *zOpt; in do_meta_command() local 18397 zOpt = azArg[1]; in do_meta_command() 18398 if( zOpt[0]=='-' && zOpt[1]=='-' && zOpt[2]!=0 ) zOpt++; in do_meta_command() 18399 lenOpt = (int)strlen(zOpt); in do_meta_command() 18400 if( lenOpt>=3 && strncmp(zOpt, "-allexcept",lenOpt)==0 ){ in do_meta_command()
|
| H A D | sqlite3.c | 127263 const char *zOpt; 127266 sqlite3VdbeLoadString(v, 1, zOpt); 162992 char *zOpt; 163104 zOpt = &zFile[sqlite3Strlen30(zFile)+1]; 163105 while( zOpt[0] ){ 163106 int nOpt = sqlite3Strlen30(zOpt); 163107 char *zVal = &zOpt[nOpt+1]; 163110 if( nOpt==3 && memcmp("vfs", zOpt, 3)==0 ){ 163133 if( nOpt==4 && memcmp("mode", zOpt, 4)==0 ){ 163174 zOpt = &zVal[nVal+1]; [all …]
|
| /freebsd-12.1/crypto/heimdal/lib/sqlite/ |
| H A D | sqlite3.c | 91338 const char *zOpt; 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]; [all …]
|