HomeSort by relevance Sort by last modified time
    Searched refs:eState (Results 1 - 6 of 6) sorted by null

  /external/chromium_org/third_party/sqlite/src/src/
pager.c 135 ** The Pager.eState variable stores the current 'state' of a pager. A
460 ** eState
633 u8 eState; /* Pager state (OPEN, READER, WRITER_LOCKED..) */
    [all...]
test_btree.c 58 (pCur->eState==CURSOR_VALID) ? "" : " eof"
btree.c 478 p->eState = CURSOR_INVALID;
565 ** The caller must ensure that the cursor is valid (has eState==CURSOR_VALID)
571 assert( CURSOR_VALID==pCur->eState );
606 pCur->eState = CURSOR_REQUIRESEEK;
624 p->eState==CURSOR_VALID ){
641 pCur->eState = CURSOR_INVALID;
685 assert( pCur->eState>=CURSOR_REQUIRESEEK );
686 if( pCur->eState==CURSOR_FAULT ){
689 pCur->eState = CURSOR_INVALID;
694 assert( pCur->eState==CURSOR_VALID || pCur->eState==CURSOR_INVALID )
    [all...]
btreeInt.h 498 u8 eState; /* One of the CURSOR_XXX constants (see below) */
509 ** Potential values for BtCursor.eState.
  /external/chromium_org/third_party/sqlite/src/ext/fts3/
fts3_aux.c 257 int eState = 0;
276 switch( eState ){
280 eState = 1;
297 eState = 2;
302 eState = 0;
304 eState = 3;
312 default: assert( eState==3 );
316 eState = 2;
  /external/chromium_org/third_party/sqlite/amalgamation/
sqlite3.c     [all...]

Completed in 2421 milliseconds