Searched refs:zOpt (Results 1 – 4 of 4) sorted by relevance
| /freebsd-12-stable/contrib/sqlite3/tea/generic/ |
| D | tclsqlite3.c | 2429 const char *zOpt = Tcl_GetString(objv[2]); in DbObjCmd() local 2432 if( zOpt[0]=='-' ) zOpt++; in DbObjCmd() 2434 if( strcmp(aDbConfig[ii].zName, zOpt)==0 ) break; in DbObjCmd() 2437 Tcl_AppendResult(interp, "unknown config option: \"", zOpt, in DbObjCmd() 2816 const char *zOpt; in DbObjCmd() local 2817 while( objc>3 && (zOpt = Tcl_GetString(objv[2]))!=0 && zOpt[0]=='-' ){ in DbObjCmd() 2818 if( strcmp(zOpt, "-withoutnulls")==0 ){ in DbObjCmd() 2822 Tcl_AppendResult(interp, "unknown option: \"", zOpt, "\"", (void*)0); in DbObjCmd()
|
| /freebsd-12-stable/contrib/sqlite3/ |
| D | shell.c | 22513 static int optionMatch(const char *zStr, const char *zOpt){ in optionMatch() argument 22517 return cli_strcmp(zStr, zOpt)==0; in optionMatch() 27193 char *zOpt; in do_meta_command() local 27200 zOpt = azArg[1]; in do_meta_command() 27201 if( zOpt[0]=='-' && zOpt[1]=='-' && zOpt[2]!=0 ) zOpt++; in do_meta_command() 27202 lenOpt = (int)strlen(zOpt); in do_meta_command() 27203 if( lenOpt>=3 && cli_strncmp(zOpt, "-allexcept",lenOpt)==0 ){ in do_meta_command()
|
| D | sqlite3.c | 139509 const char *zOpt; 139511 while( (zOpt = sqlite3_compileoption_get(i++))!=0 ){ 139512 sqlite3VdbeLoadString(v, 1, zOpt); 180507 char *zOpt; 180619 zOpt = &zFile[sqlite3Strlen30(zFile)+1]; 180620 while( zOpt[0] ){ 180621 int nOpt = sqlite3Strlen30(zOpt); 180622 char *zVal = &zOpt[nOpt+1]; 180625 if( nOpt==3 && memcmp("vfs", zOpt, 3)==0 ){ 180636 if( nOpt==5 && memcmp("cache", zOpt, 5)==0 ){ [all …]
|
| /freebsd-12-stable/crypto/heimdal/lib/sqlite/ |
| D | sqlite3.c | 91338 const char *zOpt; 91342 while( (zOpt = sqlite3_compileoption_get(i++))!=0 ){ 91343 sqlite3VdbeAddOp4(v, OP_String8, 0, 1, 0, zOpt, 0); 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 ){ [all …]
|