collect_memory_statistics  280 ext/mysqlnd/mysqlnd.h 	zend_bool		collect_memory_statistics;
collect_memory_statistics   72 ext/mysqlnd/mysqlnd_alloc.c #define REAL_SIZE(s) (collect_memory_statistics? (s) + sizeof(size_t) : (s))
collect_memory_statistics   73 ext/mysqlnd/mysqlnd_alloc.c #define REAL_PTR(p) (collect_memory_statistics && (p)? (((char *)(p)) - sizeof(size_t)) : (p))
collect_memory_statistics   74 ext/mysqlnd/mysqlnd_alloc.c #define FAKE_PTR(p) (collect_memory_statistics && (p)? (((char *)(p)) + sizeof(size_t)) : (p))
collect_memory_statistics   80 ext/mysqlnd/mysqlnd_alloc.c 	zend_bool collect_memory_statistics = MYSQLND_G(collect_memory_statistics);
collect_memory_statistics  107 ext/mysqlnd/mysqlnd_alloc.c 	if (ret && collect_memory_statistics) {
collect_memory_statistics  120 ext/mysqlnd/mysqlnd_alloc.c 	zend_bool collect_memory_statistics = MYSQLND_G(collect_memory_statistics);
collect_memory_statistics  147 ext/mysqlnd/mysqlnd_alloc.c 	if (ret && collect_memory_statistics) {
collect_memory_statistics  163 ext/mysqlnd/mysqlnd_alloc.c 	zend_bool collect_memory_statistics = MYSQLND_G(collect_memory_statistics);
collect_memory_statistics  191 ext/mysqlnd/mysqlnd_alloc.c 	if (ret && collect_memory_statistics) {
collect_memory_statistics  204 ext/mysqlnd/mysqlnd_alloc.c 	zend_bool collect_memory_statistics = MYSQLND_G(collect_memory_statistics);
collect_memory_statistics  230 ext/mysqlnd/mysqlnd_alloc.c 	if (ret && collect_memory_statistics) {
collect_memory_statistics  246 ext/mysqlnd/mysqlnd_alloc.c 	zend_bool collect_memory_statistics = MYSQLND_G(collect_memory_statistics);
collect_memory_statistics  247 ext/mysqlnd/mysqlnd_alloc.c 	size_t old_size = collect_memory_statistics && ptr? *(size_t *) (((char*)ptr) - sizeof(size_t)) : 0;
collect_memory_statistics  274 ext/mysqlnd/mysqlnd_alloc.c 	if (ret && collect_memory_statistics) {
collect_memory_statistics  287 ext/mysqlnd/mysqlnd_alloc.c 	zend_bool collect_memory_statistics = MYSQLND_G(collect_memory_statistics);
collect_memory_statistics  288 ext/mysqlnd/mysqlnd_alloc.c 	size_t old_size = collect_memory_statistics && ptr? *(size_t *) (((char*)ptr) - sizeof(size_t)) : 0;
collect_memory_statistics  316 ext/mysqlnd/mysqlnd_alloc.c 	if (ret && collect_memory_statistics) {
collect_memory_statistics  331 ext/mysqlnd/mysqlnd_alloc.c 	zend_bool collect_memory_statistics = MYSQLND_G(collect_memory_statistics);
collect_memory_statistics  343 ext/mysqlnd/mysqlnd_alloc.c 		if (collect_memory_statistics) {
collect_memory_statistics  350 ext/mysqlnd/mysqlnd_alloc.c 	if (collect_memory_statistics) {
collect_memory_statistics  362 ext/mysqlnd/mysqlnd_alloc.c 	zend_bool collect_memory_statistics = MYSQLND_G(collect_memory_statistics);
collect_memory_statistics  374 ext/mysqlnd/mysqlnd_alloc.c 		if (collect_memory_statistics) {
collect_memory_statistics  381 ext/mysqlnd/mysqlnd_alloc.c 	if (collect_memory_statistics) {
collect_memory_statistics  394 ext/mysqlnd/mysqlnd_alloc.c 	zend_bool collect_memory_statistics = MYSQLND_G(collect_memory_statistics);
collect_memory_statistics  420 ext/mysqlnd/mysqlnd_alloc.c 	if (ret && collect_memory_statistics) {
collect_memory_statistics  433 ext/mysqlnd/mysqlnd_alloc.c 	zend_bool collect_memory_statistics = MYSQLND_G(collect_memory_statistics);
collect_memory_statistics  459 ext/mysqlnd/mysqlnd_alloc.c 	if (ret && collect_memory_statistics) {
collect_memory_statistics  472 ext/mysqlnd/mysqlnd_alloc.c 	zend_bool collect_memory_statistics = MYSQLND_G(collect_memory_statistics);
collect_memory_statistics  501 ext/mysqlnd/mysqlnd_alloc.c 	if (ret && collect_memory_statistics) {
collect_memory_statistics  514 ext/mysqlnd/mysqlnd_alloc.c 	zend_bool collect_memory_statistics = MYSQLND_G(collect_memory_statistics);
collect_memory_statistics  526 ext/mysqlnd/mysqlnd_alloc.c 		if (collect_memory_statistics) {
collect_memory_statistics  533 ext/mysqlnd/mysqlnd_alloc.c 	if (collect_memory_statistics) {
collect_memory_statistics  549 ext/mysqlnd/mysqlnd_alloc.c 	zend_bool collect_memory_statistics = MYSQLND_G(collect_memory_statistics);
collect_memory_statistics  571 ext/mysqlnd/mysqlnd_alloc.c 	if (collect_memory_statistics) {
collect_memory_statistics  587 ext/mysqlnd/mysqlnd_alloc.c 	zend_bool collect_memory_statistics = MYSQLND_G(collect_memory_statistics);
collect_memory_statistics  603 ext/mysqlnd/mysqlnd_alloc.c 	if (ret && collect_memory_statistics) {
collect_memory_statistics  148 ext/mysqlnd/php_mysqlnd.c 	php_info_print_table_row(2, "Collecting memory statistics", MYSQLND_G(collect_memory_statistics)? "Yes":"No");
collect_memory_statistics  186 ext/mysqlnd/php_mysqlnd.c 	mysqlnd_globals->collect_memory_statistics = FALSE;
collect_memory_statistics  229 ext/mysqlnd/php_mysqlnd.c 	STD_PHP_INI_BOOLEAN("mysqlnd.collect_memory_statistics","0",PHP_INI_SYSTEM, OnUpdateBool,	collect_memory_statistics, zend_mysqlnd_globals, mysqlnd_globals)