Searched refs:error_list (Results 1 – 15 of 15) sorted by relevance
/PHP-7.2/ext/libxml/ |
H A D | libxml.c | 279 libxml_globals->error_list = NULL; in PHP_GINIT_FUNCTION() 529 if (LIBXML(error_list)) { in php_libxml_issue_error() 556 if (LIBXML(error_list)) { in php_libxml_internal_error_handler() 927 if (LIBXML(error_list)) { in php_libxml_post_deactivate() 929 efree(LIBXML(error_list)); in php_libxml_post_deactivate() 930 LIBXML(error_list) = NULL; in php_libxml_post_deactivate() 992 if (LIBXML(error_list)) { in PHP_FUNCTION() 994 efree(LIBXML(error_list)); in PHP_FUNCTION() 995 LIBXML(error_list) = NULL; in PHP_FUNCTION() 1049 if (LIBXML(error_list)) { in PHP_FUNCTION() [all …]
|
H A D | php_libxml.h | 48 zend_llist *error_list; variable
|
/PHP-7.2/ext/mysqli/ |
H A D | mysqli_prop.c | 190 if (mysql->mysql->data->error_info->error_list) { in link_error_list_read() 193 …ND_ERROR_LIST_ELEMENT *) zend_llist_get_first_ex(mysql->mysql->data->error_info->error_list, &pos); in link_error_list_read() 195 …LND_ERROR_LIST_ELEMENT *) zend_llist_get_next_ex(mysql->mysql->data->error_info->error_list, &pos)) in link_error_list_read() 380 if (stmt->stmt->data && stmt->stmt->data->error_info->error_list) { in stmt_error_list_read() 383 …QLND_ERROR_LIST_ELEMENT *) zend_llist_get_first_ex(stmt->stmt->data->error_info->error_list, &pos); in stmt_error_list_read() 385 …SQLND_ERROR_LIST_ELEMENT *) zend_llist_get_next_ex(stmt->stmt->data->error_info->error_list, &pos)) in stmt_error_list_read()
|
H A D | mysqli_nonapi.c | 477 if (mysql->mysql->data->error_info->error_list) { 480 …ND_ERROR_LIST_ELEMENT *) zend_llist_get_first_ex(mysql->mysql->data->error_info->error_list, &pos); 482 …LND_ERROR_LIST_ELEMENT *) zend_llist_get_next_ex(mysql->mysql->data->error_info->error_list, &pos)) 518 if (stmt->stmt && stmt->stmt->data && stmt->stmt->data->error_info->error_list) { 521 …QLND_ERROR_LIST_ELEMENT *) zend_llist_get_first_ex(stmt->stmt->data->error_info->error_list, &pos); 523 …SQLND_ERROR_LIST_ELEMENT *) zend_llist_get_next_ex(stmt->stmt->data->error_info->error_list, &pos))
|
/PHP-7.2/ext/mysqli/tests/ |
H A D | mysqli_class_mysqli_stmt_interface.phpt | 100 assert(mysqli_stmt_error_list($stmt) === $stmt->error_list); 101 var_dump("stmt->error = ", $stmt->error_list); 149 error_list 165 error_list
|
H A D | bug34810.phpt | 80 ["error_list"]=> 121 ["error_list"]=>
|
H A D | mysqli_class_mysqli_properties_no_conn.phpt | 154 error_list = 'NULL' 175 error_list = 'NULL' 227 error_list = 'NULL' 248 error_list = 'NULL'
|
H A D | mysqli_class_mysqli_interface.phpt | 117 $expected_class_variables["error_list"] = true; 118 $expected_object_variables["error_list"] = true; 185 assert(mysqli_error_list($link) === $mysqli->error_list); 186 assert(is_array($mysqli->error_list));
|
H A D | 057.phpt | 94 ["error_list"]=>
|
H A D | mysqli_kill.phpt | 102 ["error_list"]=>
|
H A D | mysqli_real_connect.phpt | 196 ["error_list"]=>
|
H A D | mysqli_class_mysqli_reflection.phpt | 1248 Inspecting property 'error_list' 1350 Default property 'error_list'
|
/PHP-7.2/ext/mysqlnd/ |
H A D | mysqlnd_connection.c | 106 if (info->error_list) { in MYSQLND_METHOD() 107 zend_llist_clean(info->error_list); in MYSQLND_METHOD() 127 if (info->error_list) { in MYSQLND_METHOD() 135 zend_llist_add_element(info->error_list, &error_for_the_list); in MYSQLND_METHOD() 161 info->error_list = mnd_pecalloc(1, sizeof(zend_llist), persistent); in mysqlnd_error_info_init() 162 if (info->error_list) { in mysqlnd_error_info_init() 163 …zend_llist_init(info->error_list, sizeof(MYSQLND_ERROR_LIST_ELEMENT), (llist_dtor_func_t) mysqlnd_… in mysqlnd_error_info_init() 166 DBG_RETURN(info->error_list? PASS:FAIL); in mysqlnd_error_info_init() 177 if (info->error_list) { in mysqlnd_error_info_free_contents() 178 mnd_pefree(info->error_list, info->persistent); in mysqlnd_error_info_free_contents() [all …]
|
H A D | mysqlnd_ps.c | 2133 if (stmt->error_info->error_list) { in MYSQLND_METHOD() 2134 zend_llist_clean(stmt->error_info->error_list); in MYSQLND_METHOD() 2135 mnd_pefree(stmt->error_info->error_list, s->persistent); in MYSQLND_METHOD() 2136 stmt->error_info->error_list = NULL; in MYSQLND_METHOD()
|
H A D | mysqlnd_structs.h | 155 zend_llist * error_list; member
|
Completed in 94 milliseconds