Lines Matching defs:sqlite3_rtree_query_info
11186 typedef struct sqlite3_rtree_query_info sqlite3_rtree_query_info; typedef
11247 struct sqlite3_rtree_query_info { struct
11248 void *pContext; /* pContext from when function registered */
11249 int nParam; /* Number of function parameters */
11250 sqlite3_rtree_dbl *aParam; /* value of function parameters */
11251 void *pUser; /* callback can use this, if desired */
11252 void (*xDelUser)(void*); /* function to free pUser */
11253 sqlite3_rtree_dbl *aCoord; /* Coordinates of node or entry to check */
11254 unsigned int *anQueue; /* Number of pending entries in the queue */
11255 int nCoord; /* Number of coordinates */
11256 int iLevel; /* Level of current node or entry */
11257 int mxLevel; /* The largest iLevel value in the tree */
11258 sqlite3_int64 iRowid; /* Rowid for current entry */
11259 sqlite3_rtree_dbl rParentScore; /* Score of parent node */
11260 int eParentWithin; /* Visibility of parent node */
11261 int eWithin; /* OUT: Visibility */
11262 sqlite3_rtree_dbl rScore; /* OUT: Write the score here */
11264 sqlite3_value **apSqlParam; /* Original SQL values of parameters */