Lines Matching refs:xInit
1732 ** The xInit method initializes the memory allocator. For example,
1736 ** by xInit. The pAppData pointer is used as the only parameter to
1737 ** xInit and xShutdown.
1740 ** the xInit method, so the xInit method need not be threadsafe. The
1750 ** SQLite will never invoke xInit() more than once without an intervening
1760 int (*xInit)(void*); /* Initialize the memory allocator */ member
1762 void *pAppData; /* Argument to xInit() and xShutdown() */
8678 ** [[the xInit() page cache method]]
8679 ** ^(The xInit() method is called once for each effective
8681 ** (usually only once during the lifetime of the process). ^(The xInit()
8683 ** The intent of the xInit() method is to set up global data structures
8685 ** ^(If the xInit() method is NULL, then the
8695 ** ^SQLite automatically serializes calls to the xInit method,
8696 ** so the xInit method need not be threadsafe. ^The
8701 ** ^SQLite will never invoke xInit() more than once without an intervening
8816 int (*xInit)(void*); member
8838 int (*xInit)(void*); member