Home
last modified time | relevance | path

Searched refs:_sqliteZone_ (Results 1 – 1 of 1) sorted by relevance

/PHP-7.1/ext/sqlite3/libsqlite/
H A Dsqlite3.c22810 static malloc_zone_t* _sqliteZone_; variable
22811 #define SQLITE_MALLOC(x) malloc_zone_malloc(_sqliteZone_, (x))
22812 #define SQLITE_FREE(x) malloc_zone_free(_sqliteZone_, (x));
22813 #define SQLITE_REALLOC(x,y) malloc_zone_realloc(_sqliteZone_, (x), (y))
22815 (_sqliteZone_ ? _sqliteZone_->size(_sqliteZone_,x) : malloc_size(x))
22990 if( _sqliteZone_ ){ in sqlite3MemInit()
22998 _sqliteZone_ = malloc_default_zone(); in sqlite3MemInit()
23002 _sqliteZone_ = malloc_create_zone(4096, 0); in sqlite3MemInit()
23003 malloc_set_zone_name(_sqliteZone_, "Sqlite_Heap"); in sqlite3MemInit()

Completed in 335 milliseconds