Home | History | Annotate | Download | only in dist

Lines Matching refs:xInit

1442 ** The xInit method initializes the memory allocator.  For example,
1446 ** by xInit. The pAppData pointer is used as the only parameter to
1447 ** xInit and xShutdown.
1450 ** the xInit method, so the xInit method need not be threadsafe. The
1460 ** SQLite will never invoke xInit() more than once without an intervening
1470 int (*xInit)(void*); /* Initialize the memory allocator */
1472 void *pAppData; /* Argument to xInit() and xShutdown() */
6753 ** [[the xInit() page cache method]]
6754 ** ^(The xInit() method is called once for each effective
6756 ** (usually only once during the lifetime of the process). ^(The xInit()
6758 ** The intent of the xInit() method is to set up global data structures
6760 ** ^(If the xInit() method is NULL, then the
6770 ** ^SQLite automatically serializes calls to the xInit method,
6771 ** so the xInit method need not be threadsafe. ^The
6776 ** ^SQLite will never invoke xInit() more than once without an intervening
6891 int (*xInit)(void*);
6913 int (*xInit)(void*);