Home
last modified time | relevance | path

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

/PHP-5.5/Zend/
H A Dzend_list.c44 index = zend_hash_next_free_element(&EG(regular_list)); in zend_list_insert()
46 zend_hash_index_update(&EG(regular_list), index, (void *) &le, sizeof(zend_rsrc_list_entry), NULL); in zend_list_insert()
54 if (zend_hash_index_find(&EG(regular_list), id, (void **) &le)==SUCCESS) { in _zend_list_delete()
57 return zend_hash_index_del(&EG(regular_list), id); in _zend_list_delete()
71 if (zend_hash_index_find(&EG(regular_list), id, (void **) &le)==SUCCESS) { in _zend_list_find()
84 if (zend_hash_index_find(&EG(regular_list), id, (void **) &le)==SUCCESS) { in _zend_list_addref()
222 if (zend_hash_init(&EG(regular_list), 0, NULL, list_entry_destructor, 0)==SUCCESS) { in zend_init_rsrc_list()
223 EG(regular_list).nNextFreeElement=1; /* we don't want resource id 0 */ in zend_init_rsrc_list()
H A Dzend_globals.h216 HashTable regular_list; member
H A Dzend.c952 zend_destroy_rsrc_list(&EG(regular_list) TSRMLS_CC); in zend_deactivate()
/PHP-5.5/ext/dba/
H A Ddba.c595 numitems = zend_hash_next_free_element(&EG(regular_list)); in php_dba_find()
597 if (zend_hash_index_find(&EG(regular_list), i, (void **) &le)==FAILURE) { in php_dba_find()
1240 numitems = zend_hash_next_free_element(&EG(regular_list)); in PHP_FUNCTION()
1242 if (zend_hash_index_find(&EG(regular_list), i, (void **) &le)==FAILURE) { in PHP_FUNCTION()
/PHP-5.5/main/streams/
H A Dstreams.c93 zend_hash_apply_with_argument(&EG(regular_list), in forget_persistent_resource_id_numbers()
131 zend_hash_internal_pointer_reset_ex(&EG(regular_list), &pos); in php_stream_from_persistent_id()
132 while (zend_hash_get_current_data_ex(&EG(regular_list), in php_stream_from_persistent_id()
135 zend_hash_get_current_key_ex(&EG(regular_list), NULL, NULL, in php_stream_from_persistent_id()
139 zend_hash_move_forward_ex(&EG(regular_list), &pos); in php_stream_from_persistent_id()
/PHP-5.5/ext/interbase/
H A Dinterbase.c941 if (SUCCESS == zend_hash_find(&EG(regular_list), hash, sizeof(hash), (void *) &le)) { in _php_ibase_connect()
954 zend_hash_del(&EG(regular_list), hash, sizeof(hash)); in _php_ibase_connect()
1027 if (FAILURE == zend_hash_update(&EG(regular_list), hash, sizeof(hash), in _php_ibase_connect()
/PHP-5.5/ext/odbc/
H A Dphp_odbc.c476 nument = zend_hash_next_free_element(&EG(regular_list)); in _close_odbc_conn()
1131 nument = zend_hash_next_free_element(&EG(regular_list)); in PHP_FUNCTION()
1142 nument = zend_hash_next_free_element(&EG(regular_list)); in PHP_FUNCTION()
2655 …if (zend_hash_find(&EG(regular_list), hashed_details, hashed_len + 1, (void **) &index_ptr) == SUC… in odbc_do_connect()
2672 zend_hash_del(&EG(regular_list), hashed_details, hashed_len + 1); in odbc_do_connect()
2689 if (zend_hash_update(&EG(regular_list), hashed_details, hashed_len + 1, (void *) &new_index_ptr, in odbc_do_connect()
2724 nument = zend_hash_next_free_element(&EG(regular_list)); in PHP_FUNCTION()
/PHP-5.5/ext/mssql/
H A Dphp_mssql.c387 zend_hash_apply(&EG(regular_list),(apply_func_t) _clean_invalid_results TSRMLS_CC); in _close_mssql_link()
763 …if (!new_link && zend_hash_find(&EG(regular_list), hashed_details, hashed_details_length + 1,(void… in php_mssql_do_connect()
783 zend_hash_del(&EG(regular_list), hashed_details, hashed_details_length + 1); in php_mssql_do_connect()
833 …if (zend_hash_update(&EG(regular_list), hashed_details, hashed_details_length + 1,(void *) &new_in… in php_mssql_do_connect()
/PHP-5.5/ext/sybase_ct/
H A Dphp_sybase_ct.c334 zend_hash_apply(&EG(regular_list), (apply_func_t) _clean_invalid_results TSRMLS_CC); in _close_sybase_link()
855 …if (!new && zend_hash_find(&EG(regular_list), hashed_details, hashed_details_length+1, (void **) &… in php_sybase_do_connect()
872 zend_hash_del(&EG(regular_list), hashed_details, hashed_details_length+1); in php_sybase_do_connect()
894 …if (zend_hash_update(&EG(regular_list), hashed_details, hashed_details_length+1, (void *) &new_ind… in php_sybase_do_connect()
/PHP-5.5/ext/phar/
H A Dphar.c118 if (zend_hash_init(&EG(regular_list), 0, NULL, NULL, 0) == SUCCESS) { in phar_split_cache_list()
119 EG(regular_list).nNextFreeElement=1; /* we don't want resource id 0 */ in phar_split_cache_list()
155 zend_hash_graceful_reverse_destroy(&EG(regular_list)); in phar_split_cache_list()
156 memset(&EG(regular_list), 0, sizeof(HashTable)); in phar_split_cache_list()
179 zend_hash_graceful_reverse_destroy(&EG(regular_list)); in phar_split_cache_list()
180 memset(&EG(regular_list), 0, sizeof(HashTable)); in phar_split_cache_list()
/PHP-5.5/ext/mysqlnd/
H A Dmysqlnd_net.c136 zend_hash_index_del(&EG(regular_list), net_stream->rsrc_id); in MYSQLND_METHOD()
226 zend_hash_index_del(&EG(regular_list), net_stream->rsrc_id); in MYSQLND_METHOD()
/PHP-5.5/ext/mysql/
H A Dphp_mysql.c962 …if (!new_link && zend_hash_find(&EG(regular_list), hashed_details, hashed_details_length+1,(void *…
981 zend_hash_del(&EG(regular_list), hashed_details, hashed_details_length+1);
1044 …if (zend_hash_update(&EG(regular_list), hashed_details, hashed_details_length+1,(void *) &new_inde…
/PHP-5.5/ext/oci8/
H A Doci8.c1897 …} else if (!persistent && zend_hash_find(&EG(regular_list), hashed_details.c, hashed_details.len+1… in php_oci_do_connect_ex()
2020 zend_hash_del(&EG(regular_list), hashed_details.c, hashed_details.len+1); in php_oci_do_connect_ex()
2029 zend_hash_del(&EG(regular_list), hashed_details.c, hashed_details.len+1); in php_oci_do_connect_ex()
2151 …zend_hash_update(&EG(regular_list), connection->hash_key, strlen(connection->hash_key)+1, (void *)… in php_oci_do_connect_ex()
/PHP-5.5/ext/pgsql/
H A Dpgsql.c1369 && zend_hash_find(&EG(regular_list),str.c,str.len+1,(void **) &index_ptr)==SUCCESS) {
1386 zend_hash_del(&EG(regular_list),str.c,str.len+1);
1412 …if (zend_hash_update(&EG(regular_list),str.c,str.len+1,(void *) &new_index_ptr, sizeof(zend_rsrc_l…
2336 …if (zend_hash_find(&EG(regular_list), hash_key.c, hash_key.len+1, (void **) &field_table) == SUCCE…
2367 …zend_hash_update(&EG(regular_list), hash_key.c, hash_key.len+1, (void *) &new_field_table, sizeof(…
2418 …alue) = get_field_name(pg_result->conn, PQftype(pgsql_result, field), &EG(regular_list) TSRMLS_CC);
/PHP-5.5/ext/hash/
H A Dhash.c536 if (zend_hash_index_find(&EG(regular_list), Z_RESVAL_P(zhash), (void *) &le)==SUCCESS) { in PHP_FUNCTION()
/PHP-5.5/ext/ldap/
H A Dldap.c1922 …if (zend_hash_index_find(&EG(regular_list), Z_LVAL_P(result), (void **) &le) != SUCCESS || le->typ… in PHP_FUNCTION()
/PHP-5.5/ext/opcache/
H A DZendAccelerator.c2300 if (EG(objects_store).top > 1 || zend_hash_num_elements(&EG(regular_list)) > 0) {

Completed in 115 milliseconds