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

  /external/chromium_org/third_party/sqlite/src/src/
test_func.c 94 sqlite3_context *pCtx,
105 zVal = testContextMalloc(pCtx, len+3);
113 sqlite3_result_text(pCtx, zVal, -1, destructor);
117 sqlite3_context *pCtx,
128 zVal = testContextMalloc(pCtx, len+3);
136 sqlite3_result_text16(pCtx, zVal, -1, destructor);
140 sqlite3_context *pCtx,
144 sqlite3_result_int(pCtx, test_destructor_count_var);
186 sqlite3_context *pCtx,
191 char *zRet = testContextMalloc(pCtx, nArg*2)
    [all...]
vdbeapi.c 193 sqlite3_context *pCtx, /* Function context */
199 if( sqlite3VdbeMemSetStr(&pCtx->s, z, n, enc, xDel)==SQLITE_TOOBIG ){
200 sqlite3_result_error_toobig(pCtx);
204 sqlite3_context *pCtx,
210 assert( sqlite3_mutex_held(pCtx->s.db->mutex) );
211 setResultStrOrError(pCtx, z, n, 0, xDel);
213 void sqlite3_result_double(sqlite3_context *pCtx, double rVal){
214 assert( sqlite3_mutex_held(pCtx->s.db->mutex) );
215 sqlite3VdbeMemSetDouble(&pCtx->s, rVal);
217 void sqlite3_result_error(sqlite3_context *pCtx, const char *z, int n)
    [all...]
os_unix.c     [all...]
test_superlock.c 48 ** The pCtx pointer passed to this function is actually a pointer to a
52 static int superlockBusyHandler(void *pCtx, int UNUSED){
53 SuperlockBusy *pBusy = (SuperlockBusy *)pCtx;
285 static int superlock_busy(void *pCtx, int nBusy){
286 InterpAndScript *p = (InterpAndScript *)pCtx;
test1.c     [all...]
main.c     [all...]
tclsqlite.c 677 void *pCtx,
682 SqliteDb *pDb = (SqliteDb *)pCtx;
695 void *pCtx,
701 SqlCollate *p = (SqlCollate *)pCtx;
    [all...]
pager.c     [all...]
  /external/chromium_org/third_party/sqlite/src/ext/icu/
icu.c 206 sqlite3_context *pCtx, /* SQLite scalar function context */
213 sqlite3_result_error(pCtx, zBuf, -1);
368 ** Collation sequence destructor function. The pCtx argument points to
371 static void icuCollationDel(void *pCtx){
372 UCollator *p = (UCollator *)pCtx;
377 ** Collation sequence comparison function. The pCtx argument points to
381 void *pCtx,
388 UCollator *p = (UCollator *)pCtx;
  /external/chromium_org/third_party/sqlite/src/test/
tt3_checkpoint.c 54 void *pCtx,
59 CheckpointStarvationCtx *p = (CheckpointStarvationCtx *)pCtx;
  /external/chromium_org/third_party/sqlite/src/ext/fts3/
fts3_snippet.c 142 void *pCtx /* Second argument to pass to callback */
149 rc = fts3ExprIterate2(pExpr->pLeft, piPhrase, x, pCtx);
151 rc = fts3ExprIterate2(pExpr->pRight, piPhrase, x, pCtx);
154 rc = x(pExpr, *piPhrase, pCtx);
173 void *pCtx /* Second argument to pass to callback */
176 return fts3ExprIterate2(pExpr, &iPhrase, x, pCtx);
804 ** Argument pCtx is actually a pointer to a struct of type MatchInfo. This
825 void *pCtx /* Pointer to MatchInfo structure */
827 MatchInfo *p = (MatchInfo *)pCtx;
880 void *pCtx /* Pointer to MatchInfo structure *
    [all...]
fts3_expr.c 90 sqlite3_context *pCtx; /* Write error message here */
  /external/chromium_org/third_party/sqlite/amalgamation/
sqlite3.c     [all...]
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
org.apache.commons.el_1.0.0.v201004212143.jar 

Completed in 148 milliseconds