Home | History | Annotate | Download | only in dist

Lines Matching full:xinit

1455 ** The xInit method initializes the memory allocator.  For example,
1459 ** by xInit. The pAppData pointer is used as the only parameter to
1460 ** xInit and xShutdown.
1463 ** the xInit method, so the xInit method need not be threadsafe. The
1473 ** SQLite will never invoke xInit() more than once without an intervening
1483 int (*xInit)(void*); /* Initialize the memory allocator */
1485 void *pAppData; /* Argument to xInit() and xShutdown() */
6843 ** [[the xInit() page cache method]]
6844 ** ^(The xInit() method is called once for each effective
6846 ** (usually only once during the lifetime of the process). ^(The xInit()
6848 ** The intent of the xInit() method is to set up global data structures
6850 ** ^(If the xInit() method is NULL, then the
6860 ** ^SQLite automatically serializes calls to the xInit method,
6861 ** so the xInit method need not be threadsafe. ^The
6866 ** ^SQLite will never invoke xInit() more than once without an intervening
6981 int (*xInit)(void*);
7003 int (*xInit)(void*);