Lines Matching defs:aiIndent
15591 int *aiIndent; /* Array of indents used in MODE_Explain */
15592 int nIndent; /* Size of array aiIndent[] */
15593 int iIndent; /* Index of current op in aiIndent[] */
16616 if( i==1 && p->aiIndent && p->pStmt ){
16618 utf8_printf(p->out, "%*.s", p->aiIndent[p->iIndent], "");
17436 ** and populate the ShellState.aiIndent[] array with the number of
17459 int nAlloc = 0; /* Allocated size of p->aiIndent[], abYield */
17460 int iOp; /* Index of operation in p->aiIndent[] */
17489 ** instruction in the aiIndent[] array. p2 and p2op may be different if
17495 /* Grow the p->aiIndent array as required */
17512 p->aiIndent = (int*)sqlite3_realloc64(p->aiIndent, nAlloc*sizeof(int));
17513 shell_check_oom(p->aiIndent);
17518 p->aiIndent[iOp] = 0;
17522 for(i=p2op; i<iOp; i++) p->aiIndent[i] += 2;
17527 for(i=p2op; i<iOp; i++) p->aiIndent[i] += 2;
17540 sqlite3_free(p->aiIndent);
17541 p->aiIndent = 0;