Lines Matching refs:notices
979 zval *notices; in _php_pgsql_notice_handler() local
985 notices = zend_hash_index_find(&PGG(notices), (zend_ulong)resource_id); in _php_pgsql_notice_handler()
986 if (!notices) { in _php_pgsql_notice_handler()
988 notices = &tmp; in _php_pgsql_notice_handler()
989 zend_hash_index_update(&PGG(notices), (zend_ulong)resource_id, notices); in _php_pgsql_notice_handler()
995 add_next_index_stringl(notices, trimed_message, trimed_message_len); in _php_pgsql_notice_handler()
1109 zend_hash_init_ex(&pgsql_globals->notices, 0, NULL, ZVAL_PTR_DTOR, 1, 0); in PHP_INI_END()
1226 zend_hash_destroy(&PGG(notices)); in PHP_MSHUTDOWN_FUNCTION()
1248 zend_hash_clean(&PGG(notices)); in PHP_RSHUTDOWN_FUNCTION()
2323 zval *notice, *notices; local
2336 notices = zend_hash_index_find(&PGG(notices), (zend_ulong)Z_RES_HANDLE_P(pgsql_link));
2339 if (notices) {
2340 zend_hash_internal_pointer_end(Z_ARRVAL_P(notices));
2341 if ((notice = zend_hash_get_current_data(Z_ARRVAL_P(notices))) == NULL) {
2350 if (notices) {
2351 RETURN_ZVAL(notices, 1, 0);
2358 if (notices) {
2359 zend_hash_clean(&PGG(notices));