Home
last modified time | relevance | path

Searched refs:aLabel (Results 1 – 2 of 2) sorted by relevance

/src/contrib/sqlite3/
H A Dshell.c31912 } aLabel[] = { in do_meta_command() local
31968 for(jj=0; jj<ArraySize(aLabel); jj++){ in do_meta_command()
31969 if( sqlite3_stricmp(zLabel, aLabel[jj].zLabel)==0 ) break; in do_meta_command()
31971 if( jj>=ArraySize(aLabel) ){ in do_meta_command()
31975 for(jj=0; jj<ArraySize(aLabel); jj++){ in do_meta_command()
31976 sqlite3_fprintf(stderr," %s", aLabel[jj].zLabel); in do_meta_command()
31983 newOpt &= ~aLabel[jj].mask; in do_meta_command()
31985 newOpt |= aLabel[jj].mask; in do_meta_command()
31997 for(ii=0; ii<ArraySize(aLabel); ii++){ in do_meta_command()
31998 if( !aLabel[ii].bDsply ) continue; in do_meta_command()
[all …]
H A Dsqlite3.c20290 int *aLabel; /* Space to hold the labels */ member
85936 assert( pParse->aLabel==0 );
86516 p->aLabel = sqlite3DbReallocOrFree(p->db, p->aLabel,
86517 nNewSize*sizeof(p->aLabel[0]));
86518 if( p->aLabel==0 ){
86523 for(i=p->nLabelAlloc; i<nNewSize; i++) p->aLabel[i] = -1;
86529 p->aLabel[j] = v->nOp;
86546 assert( p->aLabel[j]==(-1) ); /* Labels may only be resolved once */
86547 p->aLabel[j] = v->nOp;
86770 int *aLabel = pParse->aLabel; local
[all …]