Lines Matching refs:pSession

23   sqlite3_session *pSession;  member
77 sqlite3_session *pSession = 0; in sql_exec_changeset() local
81 rc = sqlite3session_create(db, "main", &pSession); in sql_exec_changeset()
84 if( rc==SQLITE_OK ) rc = sqlite3session_attach(pSession, NULL); in sql_exec_changeset()
91 rc = sqlite3session_changeset(pSession, pnChangeset, ppChangeset); in sql_exec_changeset()
95 sqlite3session_delete(pSession); in sql_exec_changeset()
232 sqlite3_session *pSession = p->pSession; in test_session_cmd() local
273 rc = sqlite3session_attach(pSession, zArg); in test_session_cmd()
286 rc = sqlite3session_patchset_strm(pSession, testStreamOutput, pCtx); in test_session_cmd()
288 rc = sqlite3session_changeset_strm(pSession, testStreamOutput, pCtx); in test_session_cmd()
292 rc = sqlite3session_patchset(pSession, &o.n, &o.p); in test_session_cmd()
294 rc = sqlite3session_changeset(pSession, &o.n, &o.p); in test_session_cmd()
314 val = sqlite3session_enable(pSession, val); in test_session_cmd()
322 val = sqlite3session_indirect(pSession, val); in test_session_cmd()
329 val = sqlite3session_isempty(pSession); in test_session_cmd()
339 sqlite3session_table_filter(pSession, test_table_filter, clientData); in test_session_cmd()
345 rc = sqlite3session_diff(pSession, in test_session_cmd()
358 sqlite3_int64 nMalloc = sqlite3session_memory_used(pSession); in test_session_cmd()
364 sqlite3_int64 nSize = sqlite3session_changeset_size(pSession); in test_session_cmd()
375 pSession, SQLITE_SESSION_OBJCONFIG_SIZE, &iArg in test_session_cmd()
393 sqlite3session_delete(p->pSession); in test_session_del()
425 rc = sqlite3session_create(db, Tcl_GetString(objv[3]), &p->pSession); in test_sqlite3session()
433 sqlite3session_object_config(p->pSession,SQLITE_SESSION_OBJCONFIG_SIZE,&iArg); in test_sqlite3session()
436 sqlite3session_object_config(p->pSession,SQLITE_SESSION_OBJCONFIG_SIZE,&iArg); in test_sqlite3session()