Home
last modified time | relevance | path

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

/titanic_41/usr/src/lib/libsqlite/src/
H A DvdbeInt.h250 FILE *pFile; /* At most one open file handler */ member
H A Dvdbeaux.c792 if( p->pFile ){ in Cleanup()
793 if( p->pFile!=stdin ) fclose(p->pFile); in Cleanup()
794 p->pFile = 0; in Cleanup()
H A Dvdbe.c4144 if( p->pFile ){ in sqliteVdbeExec()
4145 if( p->pFile!=stdin ) fclose(p->pFile); in sqliteVdbeExec()
4146 p->pFile = 0; in sqliteVdbeExec()
4149 p->pFile = stdin; in sqliteVdbeExec()
4151 p->pFile = fopen(pOp->p3, "r"); in sqliteVdbeExec()
4153 if( p->pFile==0 ){ in sqliteVdbeExec()
4177 if( p->pFile==0 ) goto fileread_jump; in sqliteVdbeExec()
4201 if( vdbe_fgets(&p->zLine[n], p->nLineAlloc-n, p->pFile)==0 ){ in sqliteVdbeExec()