Lines Matching refs:pGeomCtx
224325 RtreeGeomCallback *pGeomCtx = (RtreeGeomCallback *)sqlite3_user_data(ctx); local
224337 pBlob->cb = pGeomCtx[0];
224367 RtreeGeomCallback *pGeomCtx; /* Context object for new user-function */ local
224370 pGeomCtx = (RtreeGeomCallback *)sqlite3_malloc(sizeof(RtreeGeomCallback));
224371 if( !pGeomCtx ) return SQLITE_NOMEM;
224372 pGeomCtx->xGeom = xGeom;
224373 pGeomCtx->xQueryFunc = 0;
224374 pGeomCtx->xDestructor = 0;
224375 pGeomCtx->pContext = pContext;
224377 (void *)pGeomCtx, geomCallback, 0, 0, rtreeFreeCallback
224392 RtreeGeomCallback *pGeomCtx; /* Context object for new user-function */ local
224395 pGeomCtx = (RtreeGeomCallback *)sqlite3_malloc(sizeof(RtreeGeomCallback));
224396 if( !pGeomCtx ){
224400 pGeomCtx->xGeom = 0;
224401 pGeomCtx->xQueryFunc = xQueryFunc;
224402 pGeomCtx->xDestructor = xDestructor;
224403 pGeomCtx->pContext = pContext;
224405 (void *)pGeomCtx, geomCallback, 0, 0, rtreeFreeCallback