Lines Matching refs:pOpt
21098 struct ArSwitch *pOpt;
21099 for(pOpt=&aSwitch[0]; pOpt<pEnd; pOpt++){
21100 if( z[i]==pOpt->cShort ) break;
21102 if( pOpt==pEnd ){
21105 if( pOpt->bArg ){
21111 if( arProcessSwitch(pAr, pOpt->eSwitch, zArg) ) return SQLITE_ERROR;
21136 struct ArSwitch *pOpt;
21137 for(pOpt=&aSwitch[0]; pOpt<pEnd; pOpt++){
21138 if( z[i]==pOpt->cShort ) break;
21140 if( pOpt==pEnd ){
21143 if( pOpt->bArg ){
21155 if( arProcessSwitch(pAr, pOpt->eSwitch, zArg) ) return SQLITE_ERROR;
21167 struct ArSwitch *pOpt; /* Iterator */
21168 for(pOpt=&aSwitch[0]; pOpt<pEnd; pOpt++){
21169 const char *zLong = pOpt->zLong;
21174 pMatch = pOpt;