Lines Matching defs:sqlite3_rtree_query_info
10827 typedef struct sqlite3_rtree_query_info sqlite3_rtree_query_info; typedef
10888 struct sqlite3_rtree_query_info { struct
10889 void *pContext; /* pContext from when function registered */
10890 int nParam; /* Number of function parameters */
10891 sqlite3_rtree_dbl *aParam; /* value of function parameters */
10892 void *pUser; /* callback can use this, if desired */
10893 void (*xDelUser)(void*); /* function to free pUser */
10894 sqlite3_rtree_dbl *aCoord; /* Coordinates of node or entry to check */
10895 unsigned int *anQueue; /* Number of pending entries in the queue */
10896 int nCoord; /* Number of coordinates */
10897 int iLevel; /* Level of current node or entry */
10898 int mxLevel; /* The largest iLevel value in the tree */
10899 sqlite3_int64 iRowid; /* Rowid for current entry */
10900 sqlite3_rtree_dbl rParentScore; /* Score of parent node */
10901 int eParentWithin; /* Visibility of parent node */
10902 int eWithin; /* OUT: Visibility */
10903 sqlite3_rtree_dbl rScore; /* OUT: Write the score here */
10905 sqlite3_value **apSqlParam; /* Original SQL values of parameters */