Lines Matching refs:colWidth
19447 int *colWidth; /* Requested width of each column in columnar modes */ member
21902 p->colWidth = realloc(p->colWidth, (nColumn+1)*2*sizeof(int)); in exec_prepared_stmt_columnar()
21903 shell_check_oom(p->colWidth); in exec_prepared_stmt_columnar()
21904 for(i=p->nWidth; i<nColumn; i++) p->colWidth[i] = 0; in exec_prepared_stmt_columnar()
21906 p->actualWidth = &p->colWidth[nColumn]; in exec_prepared_stmt_columnar()
21910 w = p->colWidth[i]; in exec_prepared_stmt_columnar()
21916 int wx = p->colWidth[i]; in exec_prepared_stmt_columnar()
21938 int wx = p->colWidth[i]; in exec_prepared_stmt_columnar()
21979 if( p->colWidth[i]<0 ) w = -w; in exec_prepared_stmt_columnar()
22040 if( p->colWidth[j]<0 ) w = -w; in exec_prepared_stmt_columnar()
28839 oputf("%d ", p->colWidth[i]); in do_meta_command()
29545 p->colWidth = realloc(p->colWidth, (p->nWidth+1)*sizeof(int)*2); in do_meta_command()
29546 if( p->colWidth==0 && p->nWidth>0 ) shell_out_of_memory(); in do_meta_command()
29547 if( p->nWidth ) p->actualWidth = &p->colWidth[p->nWidth]; in do_meta_command()
29549 p->colWidth[j-1] = (int)integerValue(azArg[j]); in do_meta_command()
30951 free(data.colWidth);