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

  /external/chromium_org/third_party/sqlite/src/src/
attach.c 291 FuncDef const *pFunc,/* FuncDef wrapper for detachFunc() or attachFunc() */
339 sqlite3VdbeAddOp3(v, OP_Function, 0, regArgs+3-pFunc->nArg, regArgs+3);
340 assert( pFunc->nArg==-1 || (pFunc->nArg&0xff)==pFunc->nArg );
341 sqlite3VdbeChangeP5(v, (u8)(pFunc->nArg));
342 sqlite3VdbeChangeP4(v, -1, (char *)pFunc, P4_FUNCDEF);
vdbeapi.c 514 assert( p && p->pFunc );
515 return p->pFunc->pUserData;
529 assert( p && p->pFunc );
546 const char *zName = context->pFunc->zName;
562 assert( p && p->pFunc && p->pFunc->xStep );
574 pMem->u.pDef = p->pFunc;
625 pVdbeFunc->pFunc = pCtx->pFunc;
653 assert( p && p->pMem && p->pFunc && p->pFunc->xStep )
    [all...]
vdbeInt.h 223 FuncDef *pFunc; /* The definition of the function */
245 FuncDef *pFunc; /* Pointer to function information. MUST BE FIRST */
vdbemem.c 247 int sqlite3VdbeMemFinalize(Mem *pMem, FuncDef *pFunc){
249 if( ALWAYS(pFunc && pFunc->xFinalize) ){
251 assert( (pMem->flags & MEM_Null)!=0 || pFunc==pMem->u.pDef );
257 ctx.pFunc = pFunc;
258 pFunc->xFinalize(&ctx); /* IMP: R-24505-23230 */
    [all...]
vdbe.h 56 FuncDef *pFunc; /* Used when p4type is P4_FUNCDEF */
tclsqlite.c 123 SqlFunc *pFunc; /* List of SQL functions */
419 for(p=pDb->pFunc; p; p=p->pNext){
427 pNew->pNext = pDb->pFunc;
428 pDb->pFunc = pNew;
457 while( pDb->pFunc ){
458 SqlFunc *pFunc = pDb->pFunc;
459 pDb->pFunc = pFunc->pNext;
460 Tcl_DecrRefCount(pFunc->pScript)
    [all...]
select.c     [all...]
vdbe.c     [all...]
test1.c     [all...]
test_vfstrace.c 685 sqlite3_syscall_ptr pFunc
689 return pRoot->xSetSystemCall(pRoot, zName, pFunc);
vdbeaux.c 607 freeEphemeralFunction(db, pVdbeFunc->pFunc);
892 FuncDef *pDef = pOp->p4.pFunc;
    [all...]
sqliteInt.h     [all...]
expr.c     [all...]
  /external/chromium_org/third_party/sqlite/amalgamation/
sqlite3.c     [all...]

Completed in 313 milliseconds