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

  /external/chromium_org/third_party/sqlite/src/src/
vdbeapi.c 128 if( p->isPrepareV2 && p->expmask ){
452 if( p->isPrepareV2 && rc!=SQLITE_ROW && rc!=SQLITE_DONE ){
485 if( rc2!=SQLITE_OK && ALWAYS(v->isPrepareV2) && ALWAYS(db->pErr) ){
1013 if( p->isPrepareV2 &&
    [all...]
vdbeInt.h 303 u8 isPrepareV2; /* True if prepared with prepare_v2() */
vdbeaux.c 53 void sqlite3VdbeSetSql(Vdbe *p, const char *z, int n, int isPrepareV2){
54 assert( isPrepareV2==1 || isPrepareV2==0 );
57 if( !isPrepareV2 ) return;
61 p->isPrepareV2 = (u8)isPrepareV2;
69 return (p && p->isPrepareV2) ? p->zSql : 0;
90 pB->isPrepareV2 = pA->isPrepareV2;
    [all...]
  /external/chromium_org/third_party/sqlite/amalgamation/
sqlite3.c     [all...]

Completed in 410 milliseconds