Home
last modified time | relevance | path

Searched refs:ht (Results 51 – 75 of 85) sorted by relevance

1234

/PHP-5.5/ext/opcache/
H A Dzend_accelerator_module.c538 …zend_hash_update(return_value->value.ht, cache_entry->key, cache_entry->key_length, &persistent_sc… in accelerator_get_scripts()
555 (void)ht; (void)return_value_ptr; (void)this_ptr; (void)return_value_used; in ZEND_FUNCTION()
641 (void)ht; (void)return_value_ptr; (void)this_ptr; (void)return_value_used; in ZEND_FUNCTION()
709 (void)ht; (void)return_value_ptr; (void)this_ptr; (void)return_value_used; in ZEND_FUNCTION()
H A DZendAccelerator.c2155 static void accel_fast_hash_destroy(HashTable *ht) argument
2157 Bucket *p = ht->pListHead;
2160 ht->pDestructor(p->pData);
2182 if (zvalue->value.ht && (zvalue->value.ht != &EG(symbol_table))) {
2185 zvalue->value.ht->pDestructor = (dtor_func_t)accel_fast_zval_ptr_dtor;
2186 accel_fast_hash_destroy(zvalue->value.ht);
/PHP-5.5/Zend/
H A Dzend.h290 #define INTERNAL_FUNCTION_PARAMETERS int ht, zval *return_value, zval **return_value_ptr, zval *thi…
291 #define INTERNAL_FUNCTION_PARAM_PASSTHRU ht, return_value, return_value_ptr, this_ptr, return_value…
328 HashTable *ht; /* hash table value */ member
H A Dzend_vm_execute.h16057 HashTable *ht; in zend_isset_isempty_dim_prop_obj_handler_SPEC_VAR_CONST() local
18156 HashTable *ht; in zend_isset_isempty_dim_prop_obj_handler_SPEC_VAR_TMP() local
20637 HashTable *ht; in zend_isset_isempty_dim_prop_obj_handler_SPEC_VAR_VAR() local
23944 HashTable *ht; in zend_isset_isempty_dim_prop_obj_handler_SPEC_VAR_CV() local
25458 HashTable *ht; in zend_isset_isempty_dim_prop_obj_handler_SPEC_UNUSED_CONST() local
26784 HashTable *ht; in zend_isset_isempty_dim_prop_obj_handler_SPEC_UNUSED_TMP() local
28110 HashTable *ht; in zend_isset_isempty_dim_prop_obj_handler_SPEC_UNUSED_VAR() local
29862 HashTable *ht; in zend_isset_isempty_dim_prop_obj_handler_SPEC_UNUSED_CV() local
33363 HashTable *ht; in zend_isset_isempty_dim_prop_obj_handler_SPEC_CV_CONST() local
35326 HashTable *ht; in zend_isset_isempty_dim_prop_obj_handler_SPEC_CV_TMP() local
[all …]
H A Dzend_execute.c993 static inline zval **zend_fetch_dimension_address_inner(HashTable *ht, const zval *dim, int dim_typ… in zend_fetch_dimension_address_inner() argument
1023 …if (zend_hash_quick_find(ht, offset_key, offset_key_length+1, hval, (void **) &retval) == FAILURE)… in zend_fetch_dimension_address_inner()
1039 …zend_hash_quick_update(ht, offset_key, offset_key_length+1, hval, &new_zval, sizeof(zval *), (void… in zend_fetch_dimension_address_inner()
1055 if (zend_hash_index_find(ht, hval, (void **) &retval) == FAILURE) { in zend_fetch_dimension_address_inner()
1071 zend_hash_index_update(ht, hval, &new_zval, sizeof(zval *), (void **) &retval); in zend_fetch_dimension_address_inner()
H A Dzend_vm_def.h3973 HashTable *ht = Z_ARRVAL_PP(container);
3978 zend_hash_index_del(ht, hval);
3984 zend_hash_index_del(ht, hval);
4000 if (ht == &EG(symbol_table)) {
4003 zend_hash_quick_del(ht, Z_STRVAL_P(offset), Z_STRLEN_P(offset)+1, hval);
4010 zend_hash_index_del(ht, hval);
4016 zend_hash_del(ht, "", sizeof(""));
4471 HashTable *ht; variable
4474 ht = Z_ARRVAL_P(container);
4485 if (zend_hash_index_find(ht, hval, (void **) &value) == SUCCESS) {
[all …]
H A Dzend_execute_API.c1610 ZEND_API void zend_delete_variable(zend_execute_data *ex, HashTable *ht, const char *name, int name… in zend_delete_variable() argument
1612 if (zend_hash_quick_del(ht, name, name_len, hash_value) == SUCCESS) { in zend_delete_variable()
1614 while (ex && ex->symbol_table == ht) { in zend_delete_variable()
H A Dzend_API.c45 ZEND_API int zend_get_parameters(int ht, int param_count, ...) /* {{{ */ in zend_get_parameters() argument
85 ZEND_API int _zend_get_parameters_array(int ht, int param_count, zval **argument_array TSRMLS_DC) /… in _zend_get_parameters_array() argument
1540 ZEND_API int array_set_zval_key(HashTable *ht, zval *key, zval *value) /* {{{ */ in array_set_zval_key() argument
1546 …result = zend_symtable_update(ht, Z_STRVAL_P(key), Z_STRLEN_P(key) + 1, &value, sizeof(zval *), NU… in array_set_zval_key()
1549 result = zend_symtable_update(ht, "", 1, &value, sizeof(zval *), NULL); in array_set_zval_key()
1556 result = zend_hash_index_update(ht, Z_LVAL_P(key), &value, sizeof(zval *), NULL); in array_set_zval_key()
1559 …result = zend_hash_index_update(ht, zend_dval_to_lval(Z_DVAL_P(key)), &value, sizeof(zval *), NULL… in array_set_zval_key()
H A Dzend_operators.h445 #define Z_ARRVAL(zval) (zval).value.ht
/PHP-5.5/main/
H A Dphp_variables.c130 HashTable *ht; in php_register_variable_ex() local
134 ht = Z_ARRVAL_P(track_vars_array); in php_register_variable_ex()
135 zend_symtable_del(ht, var, var_len + 1); in php_register_variable_ex()
/PHP-5.5/ext/soap/
H A Dphp_schema.c2063 static void* schema_find_by_ref(HashTable *ht, char *ref) in schema_find_by_ref() argument
2067 if (zend_hash_find(ht, ref, strlen(ref)+1, (void**)&tmp) == SUCCESS) { in schema_find_by_ref()
2072 if (zend_hash_find(ht, ref, strlen(ref)+1, (void**)&tmp) == SUCCESS) { in schema_find_by_ref()
2130 static void schema_attributegroup_fixup(sdlCtx *ctx, sdlAttributePtr attr, HashTable *ht) in schema_attributegroup_fixup() argument
2157 HashTable *ht = emalloc(sizeof(HashTable)); in schema_attributegroup_fixup() local
2158 …zend_hash_init(ht, zend_hash_num_elements(newAttr->extraAttributes), NULL, delete_extra_attribute,… in schema_attributegroup_fixup()
2159 … zend_hash_copy(ht, newAttr->extraAttributes, copy_extra_attribute, &node, sizeof(xmlNodePtr)); in schema_attributegroup_fixup()
2160 newAttr->extraAttributes = ht; in schema_attributegroup_fixup()
2164 zend_hash_add(ht, key, key_len, &newAttr, sizeof(sdlAttributePtr), NULL); in schema_attributegroup_fixup()
2170 schema_attributegroup_fixup(ctx,*tmp_attr, ht); in schema_attributegroup_fixup()
/PHP-5.5/ext/intl/breakiterator/
H A Dbreakiterator_methods.cpp282 ht = 0; /* pretend we don't have any argument */ in PHP_FUNCTION()
/PHP-5.5/ext/phar/
H A Ddirstream.c152 static int phar_add_empty(HashTable *ht, char *arKey, uint nKeyLength) /* {{{ */ in phar_add_empty() argument
156 return zend_hash_update(ht, arKey, nKeyLength, (void *) &dummy, sizeof(void *), NULL); in phar_add_empty()
/PHP-5.5/ext/fileinfo/libmagic/
H A Dsoftmagic.c2094 HashTable *ht = Z_ARRVAL_P(subpats); in magiccheck() local
2098 zend_hash_internal_pointer_reset_ex(ht, &outer_pos); in magiccheck()
2100 if (zend_hash_has_more_elements_ex(ht, &outer_pos) == SUCCESS && in magiccheck()
2101 zend_hash_move_forward_ex(ht, &outer_pos)) { in magiccheck()
2108 if (zend_hash_get_current_data_ex(ht, (void**)&ppzval, &outer_pos) != FAILURE) { in magiccheck()
/PHP-5.5/ext/standard/
H A Dhtml.c844 static inline int resolve_named_entity_html(const char *start, size_t length, const entity_ht *ht, … in resolve_named_entity_html() argument
849 s = ht->buckets[hash % ht->num_elems]; in resolve_named_entity_html()
/PHP-5.5/ext/intl/collator/
H A Dcollator_sort.c518 (array)->value.ht = sortedHash; in PHP_FUNCTION()
/PHP-5.5/ext/dom/
H A Dphp_dom.c1114 void dom_namednode_iter(dom_object *basenode, int ntype, dom_object *intern, xmlHashTablePtr ht, xm… in dom_namednode_iter() argument
1131 mapptr->ht = ht; in dom_namednode_iter()
1294 objmap->ht = NULL; in dom_nnodemap_objects_new()
H A Dnode.c1806 HashTable *ht = Z_ARRVAL_P(xpath_array); in dom_canonicalization() local
1810 if (zend_hash_find(ht, "query", sizeof("query"), (void**)&tmp) == SUCCESS && in dom_canonicalization()
1821 if (zend_hash_find(ht, "namespaces", sizeof("namespaces"), (void**)&tmp) == SUCCESS && in dom_canonicalization()
/PHP-5.5/ext/pdo/
H A Dpdo_dbh.c472 HashTable *ht = Z_ARRVAL_P(ctor_args); in pdo_stmt_construct() local
476 fci.params = safe_emalloc(sizeof(zval*), ht->nNumOfElements, 0); in pdo_stmt_construct()
477 p = ht->pListHead; in pdo_stmt_construct()
/PHP-5.5/ext/pgsql/
H A Dpgsql.c1439 ht = 0;
2689 HashTable *ht = Z_ARRVAL_P(ctor_params); local
2693 fci.params = safe_emalloc(sizeof(zval***), ht->nNumOfElements, 0);
2694 p = ht->pListHead;
6314 static inline int build_assignment_string(smart_str *querystr, HashTable *ht, int where_cond, const… argument
6324 for (zend_hash_internal_pointer_reset_ex(ht, &pos);
6325 zend_hash_get_current_data_ex(ht, (void **)&val, &pos) == SUCCESS;
6326 zend_hash_move_forward_ex(ht, &pos)) {
6327 key_type = zend_hash_get_current_key_ex(ht, &fld, &fld_len, &num_idx, 0, &pos);
/PHP-5.5/sapi/apache/
H A Dmod_php5.c280 symbol_table = track_vars_array->value.ht; in sapi_apache_register_server_variables()
/PHP-5.5/ext/spl/
H A Dspl_directory.c467 static spl_filesystem_object * spl_filesystem_object_create_type(int ht, spl_filesystem_object *sou… in spl_filesystem_object_create_type() argument
537 if (ht && zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "|sbr", in spl_filesystem_object_create_type()
1340 spl_filesystem_object_create_type(ht, intern, SPL_FS_FILE, NULL, return_value TSRMLS_CC); in SPL_METHOD()
1391 spl_filesystem_object_create_type(ht, intern, SPL_FS_INFO, ce, return_value TSRMLS_CC); in SPL_METHOD()
/PHP-5.5/ext/sybase_ct/
H A Dphp_sybase_ct.c912 ht = 0; in php_sybase_get_default_link()
1881 ht= 1; in PHP_FUNCTION()
/PHP-5.5/ext/fileinfo/
H A Dlibmagic.patch3459 + HashTable *ht = Z_ARRVAL_P(subpats);
3463 + zend_hash_internal_pointer_reset_ex(ht, &outer_pos);
3465 + if (zend_hash_has_more_elements_ex(ht, &outer_pos) == SUCCESS &&
3466 + zend_hash_move_forward_ex(ht, &outer_pos)) {
3473 + if (zend_hash_get_current_data_ex(ht, (void**)&ppzval, &outer_pos) != FAILURE) {
/PHP-5.5/sapi/apache_hooks/
H A Dmod_php5.c405 symbol_table = track_vars_array->value.ht; in sapi_apache_register_server_variables()

Completed in 237 milliseconds

1234