Home | History | Annotate | Download | only in orig

Lines Matching refs:xInit

1297 ** The xInit method initializes the memory allocator.  (For example,
1301 ** by xInit. The pAppData pointer is used as the only parameter to
1302 ** xInit and xShutdown.
1305 ** the xInit method, so the xInit method need not be threadsafe. The
1315 ** SQLite will never invoke xInit() more than once without an intervening
1325 int (*xInit)(void*); /* Initialize the memory allocator */
1327 void *pAppData; /* Argument to xInit() and xShutdown() */
6134 ** [[the xInit() page cache method]]
6135 ** ^(The xInit() method is called once for each effective
6137 ** (usually only once during the lifetime of the process). ^(The xInit()
6139 ** The intent of the xInit() method is to set up global data structures
6141 ** ^(If the xInit() method is NULL, then the
6151 ** ^SQLite automatically serializes calls to the xInit method,
6152 ** so the xInit method need not be threadsafe. ^The
6157 ** ^SQLite will never invoke xInit() more than once without an intervening
6272 int (*xInit)(void*);
6294 int (*xInit)(void*);