Lines Matching refs:xInit
1023 ** The xInit method initializes the memory allocator. (For example,
1027 ** by xInit. The pAppData pointer is used as the only parameter to
1028 ** xInit and xShutdown.
1031 ** the xInit method, so the xInit method need not be threadsafe. The
1041 ** SQLite will never invoke xInit() more than once without an intervening
1051 int (*xInit)(void*); /* Initialize the memory allocator */
1053 void *pAppData; /* Argument to xInit() and xShutdown() */
5194 ** ^The xInit() method is called once for each call to [sqlite3_initialize()]
5195 ** (usually only once during the lifetime of the process). ^(The xInit()
5197 ** ^The xInit() method can set up up global structures and/or any mutexes
5205 ** the xInit method, so the xInit method need not be threadsafe. ^The
5210 ** ^SQLite will never invoke xInit() more than once without an intervening
5304 int (*xInit)(void*);