Lines Matching refs:pVal

446 static void test_append_value(Tcl_Obj *pList, sqlite3_value *pVal){  in test_append_value()  argument
447 if( pVal==0 ){ in test_append_value()
452 switch( sqlite3_value_type(pVal) ){ in test_append_value()
459 pObj = Tcl_NewWideIntObj(sqlite3_value_int64(pVal)); in test_append_value()
463 pObj = Tcl_NewDoubleObj(sqlite3_value_double(pVal)); in test_append_value()
466 const char *z = (char*)sqlite3_value_blob(pVal); in test_append_value()
467 int n = sqlite3_value_bytes(pVal); in test_append_value()
473 assert( sqlite3_value_type(pVal)==SQLITE_BLOB ); in test_append_value()
476 sqlite3_value_blob(pVal), in test_append_value()
477 sqlite3_value_bytes(pVal) in test_append_value()
583 sqlite3_value *pVal; in test_conflict_handler() local
584 sqlite3changeset_old(pIter, i, &pVal); in test_conflict_handler()
585 test_append_value(pOld, pVal); in test_conflict_handler()
595 sqlite3_value *pVal; in test_conflict_handler() local
596 sqlite3changeset_new(pIter, i, &pVal); in test_conflict_handler()
597 test_append_value(pNew, pVal); in test_conflict_handler()
609 sqlite3_value *pVal; in test_conflict_handler() local
610 rc = sqlite3changeset_conflict(pIter, i, &pVal); in test_conflict_handler()
612 test_append_value(pConflict, pVal); in test_conflict_handler()
623 sqlite3_value *pVal; in test_conflict_handler() local
624 int rc = sqlite3changeset_conflict(pIter, 0, &pVal); in test_conflict_handler()
627 sqlite3_value *pVal; in test_conflict_handler() local
628 int rc = sqlite3changeset_conflict(pIter, -1, &pVal); in test_conflict_handler()
630 rc = sqlite3changeset_conflict(pIter, nCol, &pVal); in test_conflict_handler()
634 sqlite3_value *pVal; in test_conflict_handler() local
635 int rc = sqlite3changeset_new(pIter, 0, &pVal); in test_conflict_handler()
638 sqlite3_value *pVal; in test_conflict_handler() local
639 int rc = sqlite3changeset_new(pIter, -1, &pVal); in test_conflict_handler()
641 rc = sqlite3changeset_new(pIter, nCol, &pVal); in test_conflict_handler()
645 sqlite3_value *pVal; in test_conflict_handler() local
646 int rc = sqlite3changeset_old(pIter, 0, &pVal); in test_conflict_handler()
649 sqlite3_value *pVal; in test_conflict_handler() local
650 int rc = sqlite3changeset_old(pIter, -1, &pVal); in test_conflict_handler()
652 rc = sqlite3changeset_old(pIter, nCol, &pVal); in test_conflict_handler()
708 sqlite3_value *pVal; in replace_handler() local
709 sqlite3changeset_old(pIter, i, &pVal); in replace_handler()
710 sqlite3_value_text16(pVal); in replace_handler()
717 sqlite3_value *pVal; in replace_handler() local
718 sqlite3changeset_new(pIter, i, &pVal); in replace_handler()
719 sqlite3_value_text16(pVal); in replace_handler()
1128 sqlite3_value *pVal; in test_sqlite3session_foreach() local
1129 sqlite3changeset_old(pIter, i, &pVal); in test_sqlite3session_foreach()
1130 test_append_value(pOld, pVal); in test_sqlite3session_foreach()
1136 sqlite3_value *pVal; in test_sqlite3session_foreach() local
1137 sqlite3changeset_new(pIter, i, &pVal); in test_sqlite3session_foreach()
1138 test_append_value(pNew, pVal); in test_sqlite3session_foreach()