Lines Matching defs:xInit
1739 ** The xInit method initializes the memory allocator. For example,
1743 ** by xInit. The pAppData pointer is used as the only parameter to
1744 ** xInit and xShutdown.
1747 ** the xInit method, so the xInit method need not be threadsafe. The
1757 ** SQLite will never invoke xInit() more than once without an intervening
1767 int (*xInit)(void*); /* Initialize the memory allocator */
1769 void *pAppData; /* Argument to xInit() and xShutdown() */
8730 ** [[the xInit() page cache method]]
8731 ** ^(The xInit() method is called once for each effective
8733 ** (usually only once during the lifetime of the process). ^(The xInit()
8735 ** The intent of the xInit() method is to set up global data structures
8737 ** ^(If the xInit() method is NULL, then the
8747 ** ^SQLite automatically serializes calls to the xInit method,
8748 ** so the xInit method need not be threadsafe. ^The
8753 ** ^SQLite will never invoke xInit() more than once without an intervening
8868 int (*xInit)(void*);
8890 int (*xInit)(void*);