Home
last modified time | relevance | path

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

/freebsd/contrib/sqlite3/
H A Dshell.c34977 } aLabel[] = { in do_meta_command() local
35034 for(jj=0; jj<ArraySize(aLabel); jj++){ in do_meta_command()
35035 if( sqlite3_stricmp(zLabel, aLabel[jj].zLabel)==0 ) break; in do_meta_command()
35037 if( jj>=ArraySize(aLabel) ){ in do_meta_command()
35041 for(jj=0; jj<ArraySize(aLabel); jj++){ in do_meta_command()
35042 cli_printf(stderr," %s", aLabel[jj].zLabel); in do_meta_command()
35049 newOpt &= ~aLabel[jj].mask; in do_meta_command()
35051 newOpt |= aLabel[jj].mask; in do_meta_command()
35063 for(ii=0; ii<ArraySize(aLabel); ii++){ in do_meta_command()
35064 if( !aLabel[ii].bDsply ) continue; in do_meta_command()
[all …]
H A Dsqlite3.c20912 int *aLabel; /* Space to hold the labels */ member
87763 assert( pParse->aLabel==0 );
88343 p->aLabel = sqlite3DbReallocOrFree(p->db, p->aLabel,
88344 nNewSize*sizeof(p->aLabel[0]));
88345 if( p->aLabel==0 ){
88350 for(i=p->nLabelAlloc; i<nNewSize; i++) p->aLabel[i] = -1;
88356 p->aLabel[j] = v->nOp;
88373 assert( p->aLabel[j]==(-1) ); /* Labels may only be resolved once */
88374 p->aLabel[j] = v->nOp;
88597 int *aLabel = pParse->aLabel; local
[all …]