Lines Matching defs:xInit
1745 ** The xInit method initializes the memory allocator. For example,
1749 ** by xInit. The pAppData pointer is used as the only parameter to
1750 ** xInit and xShutdown.
1753 ** the xInit method, so the xInit method need not be threadsafe. The
1763 ** SQLite will never invoke xInit() more than once without an intervening
1773 int (*xInit)(void*); /* Initialize the memory allocator */
1775 void *pAppData; /* Argument to xInit() and xShutdown() */
8958 ** [[the xInit() page cache method]]
8959 ** ^(The xInit() method is called once for each effective
8961 ** (usually only once during the lifetime of the process). ^(The xInit()
8963 ** The intent of the xInit() method is to set up global data structures
8965 ** ^(If the xInit() method is NULL, then the
8975 ** ^SQLite automatically serializes calls to the xInit method,
8976 ** so the xInit method need not be threadsafe. ^The
8981 ** ^SQLite will never invoke xInit() more than once without an intervening
9096 int (*xInit)(void*);
9118 int (*xInit)(void*);