Home
last modified time | relevance | path

Searched refs:pRow (Results 1 – 3 of 3) sorted by relevance

/freebsd-12-stable/contrib/ncurses/form/
Dfty_generic.c272 _nc_form_cursor(const FORM *form, int *pRow, int *pCol) in _nc_form_cursor() argument
277 if (!(form == 0 || pRow == 0 || pCol == 0)) in _nc_form_cursor()
279 *pRow = form->currow; in _nc_form_cursor()
/freebsd-12-stable/contrib/sqlite3/
Dshell.c17394 EQPGraphRow *pRow; /* Linked list of all rows of the EQP output */ member
18324 p->sGraph.pRow = pNew; in eqp_append()
18334 EQPGraphRow *pRow, *pNext; in eqp_reset() local
18335 for(pRow = p->sGraph.pRow; pRow; pRow = pNext){ in eqp_reset()
18336 pNext = pRow->pNext; in eqp_reset()
18337 sqlite3_free(pRow); in eqp_reset()
18346 EQPGraphRow *pRow = pOld ? pOld->pNext : p->sGraph.pRow; in eqp_next_row() local
18347 while( pRow && pRow->iParentId!=iEqpId ) pRow = pRow->pNext; in eqp_next_row()
18348 return pRow; in eqp_next_row()
18355 EQPGraphRow *pRow, *pNext; in eqp_render_level() local
[all …]
Dsqlite3.c152714 Expr *pRow;
152718 pRow = sqlite3ExprDup(db, pRowid, 0);
152720 pRow = sqlite3PExpr(pParse, TK_ROW, 0, 0);
152729 pRow = sqlite3ExprDup(db, pChanges->a[aXRef[iPk]].pExpr, 0);
152731 pRow = exprRowColumn(pParse, iPk);
152734 pList = sqlite3ExprListAppend(pParse, 0, pRow);
252319 StmtRow *pRow; /* Current row */
252398 StmtRow *pRow = 0;
252400 for(pRow=pCur->pRow; pRow; pRow=pNext){
252401 pNext = pRow->pNext;
[all …]