Home
last modified time | relevance | path

Searched refs:HashTable (Results 1 – 25 of 331) sorted by relevance

12345678910>>...14

/php-src/ext/soap/
H A Dphp_sdl.h52 HashTable functions; /* array of sdlFunction */
53 HashTable *types; /* array of sdlTypesPtr */
54 HashTable *elements; /* array of sdlTypesPtr */
55 HashTable *encoders; /* array of encodePtr */
58 HashTable *groups; /* array of sdlTypesPtr */
67 HashTable docs; /* array of xmlDocPtr */
69 HashTable messages; /* array of xmlNodePtr */
70 HashTable bindings; /* array of xmlNodePtr */
71 HashTable portTypes; /* array of xmlNodePtr */
72 HashTable services; /* array of xmlNodePtr */
[all …]
H A Dphp_soap.h78 HashTable *ft;
91 HashTable *typemap;
97 HashTable *class_map;
154 HashTable defEncNs; /* mapping of default namespaces to prefixes */
155 HashTable defEnc;
156 HashTable defEncIndex;
157 HashTable *typemap;
169 HashTable *mem_cache;
171 HashTable *class_map;
173 HashTable wsdl_cache;
[all …]
/php-src/Zend/
H A Dzend_hash.h338 ZEND_API HashTable* ZEND_FASTCALL zend_array_dup(const HashTable *source);
340 ZEND_API HashTable* zend_array_to_list(const HashTable *source);
342 ZEND_API HashTable* ZEND_FASTCALL zend_symtable_to_proptable(HashTable *ht);
343 ZEND_API HashTable* ZEND_FASTCALL zend_proptable_to_symtable(HashTable *ht, bool always_duplicate);
1003 const HashTable *__ht = (_ht); \
1011 const HashTable *__ht = (_ht); \
1020 const HashTable *__ht = (_ht); \
1048 const HashTable *__ht = (_ht); \
1237 const HashTable *__ht = (_ht); \
1445 const HashTable *__ht = (_ht); \
[all …]
H A Dzend_globals.h98 HashTable *auto_globals;
130 HashTable interned_strings;
142 HashTable *memoized_exprs;
151 HashTable *delayed_autoloads;
152 HashTable *unlinked_uses;
219 HashTable *in_autoload;
229 HashTable regular_list;
230 HashTable persistent_list;
248 HashTable *ini_directives;
249 HashTable *modified_ini_directives;
[all …]
H A Dzend_weakrefs.h33 ZEND_API zval *zend_weakrefs_hash_add(HashTable *ht, zend_object *key, zval *pData);
34 ZEND_API zend_result zend_weakrefs_hash_del(HashTable *ht, zend_object *key);
35 static zend_always_inline void *zend_weakrefs_hash_add_ptr(HashTable *ht, zend_object *key, void *p… in zend_weakrefs_hash_add_ptr()
65 HashTable *zend_weakmap_get_gc(zend_object *object, zval **table, int *n);
66 HashTable *zend_weakmap_get_key_entry_gc(zend_object *object, zval **table, int *n);
67 HashTable *zend_weakmap_get_entry_gc(zend_object *object, zval **table, int *n);
68 HashTable *zend_weakmap_get_object_key_entry_gc(zend_object *object, zval **table, int *n);
69 HashTable *zend_weakmap_get_object_entry_gc(zend_object *object, zval **table, int *n);
H A Dzend_hash.c284 HashTable *ht = emalloc(sizeof(HashTable)); in _zend_new_array_0()
291 HashTable *ht = emalloc(sizeof(HashTable)); in _zend_new_array()
299 HashTable *ht = emalloc(sizeof(HashTable)); in zend_new_pair()
629 HashTable *ht = Z_ARRVAL_P(array); in zend_hash_iterator_pos_ex()
2347 static void zend_array_dup_ht_iterators(const HashTable *source, HashTable *target) { in zend_array_dup_ht_iterators()
2438 ZEND_API HashTable* ZEND_FASTCALL zend_array_dup(const HashTable *source) in zend_array_dup()
2441 HashTable *target; in zend_array_dup()
2526 ZEND_API HashTable* zend_array_to_list(const HashTable *source) in zend_array_to_list()
3171 ZEND_API int zend_hash_compare(HashTable *ht1, HashTable *ht2, compare_func_t compar, bool ordered) in zend_hash_compare()
3308 ZEND_API HashTable* ZEND_FASTCALL zend_symtable_to_proptable(HashTable *ht) in zend_symtable_to_proptable()
[all …]
H A Dzend_lazy_objects.h53 HashTable infos;
73 ZEND_API HashTable *zend_lazy_object_get_properties(zend_object *object);
75 HashTable *zend_lazy_object_debug_info(zend_object *object, int *is_temp);
76 HashTable *zend_lazy_object_get_gc(zend_object *zobj, zval **table, int *n);
H A Dzend_attributes.h73 ZEND_API zend_attribute *zend_get_attribute(HashTable *attributes, zend_string *lcname);
74 ZEND_API zend_attribute *zend_get_attribute_str(HashTable *attributes, const char *str, size_t len);
76 ZEND_API zend_attribute *zend_get_parameter_attribute(HashTable *attributes, zend_string *lcname, u…
77 ZEND_API zend_attribute *zend_get_parameter_attribute_str(HashTable *attributes, const char *str, s…
83 ZEND_API bool zend_is_attribute_repeated(HashTable *attributes, zend_attribute *attr);
90 HashTable **attributes, zend_string *name, uint32_t argc,
H A Dzend_object_handlers.h126 typedef HashTable *(*zend_object_get_properties_t)(zend_object *object);
128 typedef HashTable *(*zend_object_get_debug_info_t)(zend_object *object, int *is_temp);
201 typedef HashTable *(*zend_object_get_gc_t)(zend_object *object, zval **table, int *n);
255 ZEND_API HashTable *zend_std_get_properties(zend_object *object);
256 ZEND_API HashTable *zend_get_properties_no_lazy_init(zend_object *zobj);
257 ZEND_API HashTable *zend_std_get_gc(zend_object *object, zval **table, int *n);
258 ZEND_API HashTable *zend_std_get_debug_info(zend_object *object, int *is_temp);
274 ZEND_API HashTable *rebuild_object_properties_internal(zend_object *zobj);
276 static zend_always_inline HashTable *zend_std_get_properties_ex(zend_object *object) in zend_std_get_properties_ex()
288 ZEND_API HashTable *zend_std_build_object_properties_array(zend_object *zobj);
[all …]
/php-src/ext/standard/
H A Dphp_array.h28 PHPAPI int php_array_merge(HashTable *dest, HashTable *src);
29 PHPAPI int php_array_merge_recursive(HashTable *dest, HashTable *src);
30 PHPAPI int php_array_replace_recursive(HashTable *dest, HashTable *src);
32 PHPAPI zend_long php_count_recursive(HashTable *ht);
H A Dbasic_functions.h55 HashTable *user_shutdown_function_names;
56 HashTable putenv_ht;
98 HashTable url_adapt_session_hosts_ht;
100 HashTable url_adapt_output_hosts_ht;
101 HashTable *user_filter_map;
H A Dfile.h50 PHPAPI HashTable *php_bc_fgetcsv_empty_line(void);
52 PHPAPI HashTable *php_fgetcsv(php_stream *stream, char delimiter, char enclosure, int escape_char, …
102 HashTable *stream_wrappers; /* per-request copy of url_stream_wrappers_hash */
103 HashTable *stream_filters; /* per-request copy of stream_filters_hash */
104 HashTable *wrapper_errors; /* key: wrapper address; value: linked list of char* */
/php-src/sapi/phpdbg/
H A Dphpdbg_watch.h72 HashTable elements;
78 HashTable ht;
86 HashTable parents;
95 HashTable child_container; /* children of this watch element for recursive array elements */
96 HashTable *parent_container; /* container of the value */
102 HashTable ht;
109 HashTable *ht;
110 HashTable watches; /* contains phpdbg_watch_element */
H A Dphpdbg.h231 HashTable bp[PHPDBG_BREAK_TABLES]; /* break points */
232 HashTable registered; /* registered */
233 HashTable seek; /* seek oplines */
252 HashTable watch_elements; /* user defined watch elements */
253HashTable watch_collisions; /* collision table to check if multiple watches share…
254HashTable watch_recreation; /* watch elements pending recreation of their respect…
255 HashTable watch_free; /* pointers to watch for being freed */
256 HashTable *watchlist_mem; /* triggered watchpoints */
257HashTable *original_watchlist_mem; /* the original allocation for watchlist_mem, used wh…
258HashTable *watchlist_mem_backup; /* triggered watchpoints backup table while iterating…
[all …]
/php-src/ext/hash/
H A Dphp_hash_sha3.h37 PHP_HASH_API void PHP_SHA3224Init(PHP_SHA3_224_CTX*, ZEND_ATTRIBUTE_UNUSED HashTable *);
41 PHP_HASH_API void PHP_SHA3256Init(PHP_SHA3_256_CTX*, ZEND_ATTRIBUTE_UNUSED HashTable *);
45 PHP_HASH_API void PHP_SHA3384Init(PHP_SHA3_384_CTX*, ZEND_ATTRIBUTE_UNUSED HashTable *);
49 PHP_HASH_API void PHP_SHA3512Init(PHP_SHA3_512_CTX*, ZEND_ATTRIBUTE_UNUSED HashTable *);
H A Dphp_hash_ripemd.h49 PHP_HASH_API void PHP_RIPEMD128Init(PHP_RIPEMD128_CTX *, ZEND_ATTRIBUTE_UNUSED HashTable *);
53 PHP_HASH_API void PHP_RIPEMD160Init(PHP_RIPEMD160_CTX *, ZEND_ATTRIBUTE_UNUSED HashTable *);
57 PHP_HASH_API void PHP_RIPEMD256Init(PHP_RIPEMD256_CTX *, ZEND_ATTRIBUTE_UNUSED HashTable *);
61 PHP_HASH_API void PHP_RIPEMD320Init(PHP_RIPEMD320_CTX *, ZEND_ATTRIBUTE_UNUSED HashTable *);
H A Dphp_hash_sha.h32 PHP_HASH_API void PHP_SHA224InitArgs(PHP_SHA224_CTX *, ZEND_ATTRIBUTE_UNUSED HashTable *);
45 PHP_HASH_API void PHP_SHA256InitArgs(PHP_SHA256_CTX *, ZEND_ATTRIBUTE_UNUSED HashTable *);
81 PHP_HASH_API void PHP_SHA384InitArgs(PHP_SHA384_CTX *, ZEND_ATTRIBUTE_UNUSED HashTable *);
94 PHP_HASH_API void PHP_SHA512InitArgs(PHP_SHA512_CTX *, ZEND_ATTRIBUTE_UNUSED HashTable *);
99 PHP_HASH_API void PHP_SHA512_256InitArgs(PHP_SHA512_CTX *, ZEND_ATTRIBUTE_UNUSED HashTable *);
104 PHP_HASH_API void PHP_SHA512_224InitArgs(PHP_SHA512_CTX *, ZEND_ATTRIBUTE_UNUSED HashTable *);
H A Dphp_hash_xxhash.h28 PHP_HASH_API void PHP_XXH32Init(PHP_XXH32_CTX *ctx, HashTable *args);
38 PHP_HASH_API void PHP_XXH64Init(PHP_XXH64_CTX *ctx, HashTable *args);
60 PHP_HASH_API void PHP_XXH3_64_Init(PHP_XXH3_64_CTX *ctx, HashTable *args);
67 PHP_HASH_API void PHP_XXH3_128_Init(PHP_XXH3_128_CTX *ctx, HashTable *args);
H A Dphp_hash_murmur.h27 PHP_HASH_API void PHP_MURMUR3AInit(PHP_MURMUR3A_CTX *ctx, HashTable *args);
39 PHP_HASH_API void PHP_MURMUR3CInit(PHP_MURMUR3C_CTX *ctx, HashTable *args);
51 PHP_HASH_API void PHP_MURMUR3FInit(PHP_MURMUR3F_CTX *ctx, HashTable *args);
/php-src/ext/dom/
H A Dxpath_callbacks.h38 HashTable functions;
44 HashTable *namespaces;
45 HashTable *node_list;
58 PHP_DOM_EXPORT HashTable *php_dom_xpath_callbacks_get_gc_for_whole_object(php_dom_xpath_callbacks *…
60 …try, xmlXPathContextPtr ctxt, zend_string *ns, zend_string *name, const HashTable *callable_ht, ph…
H A Dtoken_list.c134 HashTable *token_set = TOKEN_LIST_GET_SET(intern); in dom_token_list_update()
190 HashTable *token_set = TOKEN_LIST_GET_SET(intern); in dom_token_list_ensure_set_up_to_date()
211 HashTable *token_set = TOKEN_LIST_GET_SET(intern); in dom_token_list_ctor()
229 HashTable *token_set = TOKEN_LIST_GET_SET(intern); in dom_token_list_free_obj()
239 HashTable *token_set = TOKEN_LIST_GET_SET(token_list); in dom_token_list_item_exists()
473 HashTable *token_set = TOKEN_LIST_GET_SET(intern); in PHP_METHOD()
499 HashTable *token_set = TOKEN_LIST_GET_SET(intern); in PHP_METHOD()
527 HashTable *token_set = TOKEN_LIST_GET_SET(intern); in PHP_METHOD()
573 HashTable *token_set = TOKEN_LIST_GET_SET(intern); in PHP_METHOD()
668 HashTable *token_set = TOKEN_LIST_GET_SET(object); in dom_token_list_it_get_current_key()
[all …]
/php-src/ext/odbc/
H A Dphp_odbc_includes.h194 HashTable results;
254 HashTable connections;
257 int odbc_add_result(HashTable *list, odbc_result *result);
258 odbc_result *odbc_get_result(HashTable *list, int count);
259 void odbc_del_result(HashTable *list, int count);
260 int odbc_add_conn(HashTable *list, HDBC conn);
261 odbc_connection *odbc_get_conn(HashTable *list, int count);
262 void odbc_del_conn(HashTable *list, int ind);
/php-src/win32/
H A Dregistry.c76 static int LoadDirectory(HashTable *directories, HKEY key, char *path, int path_len, HashTable *par… in LoadDirectory()
80 HashTable *ht = NULL; in LoadDirectory()
102 ht = (HashTable*)malloc(sizeof(HashTable)); in LoadDirectory()
123 zend_hash_str_update_mem(directories, path, path_len, ht, sizeof(HashTable)); in LoadDirectory()
173 HashTable *ht = (HashTable *)Z_PTR_P(zv); in delete_internal_hashtable()
190 PW32G(registry_directories) = (HashTable*)malloc(sizeof(HashTable)); in UpdateIniFromRegistry()
260 HashTable *ht = (HashTable *)zend_hash_str_find_ptr(PW32G(registry_directories), path, path_len); in UpdateIniFromRegistry()
/php-src/ext/opcache/
H A Dzend_accelerator_util_funcs.h33 void zend_accel_move_user_functions(HashTable *str, uint32_t count, zend_script *script);
34 void zend_accel_move_user_classes(HashTable *str, uint32_t count, zend_script *script);
H A Dzend_accelerator_util_funcs.c86 void zend_accel_move_user_functions(HashTable *src, uint32_t count, zend_script *script) in zend_accel_move_user_functions()
89 HashTable *dst; in zend_accel_move_user_functions()
117 void zend_accel_move_user_classes(HashTable *src, uint32_t count, zend_script *script) in zend_accel_move_user_classes()
120 HashTable *dst; in zend_accel_move_user_classes()
148 static zend_always_inline void _zend_accel_function_hash_copy(HashTable *target, HashTable *source,… in _zend_accel_function_hash_copy()
190 static zend_always_inline void zend_accel_function_hash_copy(HashTable *target, HashTable *source) in zend_accel_function_hash_copy()
195 static zend_never_inline void zend_accel_function_hash_copy_notify(HashTable *target, HashTable *so… in zend_accel_function_hash_copy_notify()
200 static zend_always_inline void _zend_accel_class_hash_copy(HashTable *target, HashTable *source, bo… in _zend_accel_class_hash_copy()
251 static zend_always_inline void zend_accel_class_hash_copy(HashTable *target, HashTable *source) in zend_accel_class_hash_copy()
256 static zend_never_inline void zend_accel_class_hash_copy_notify(HashTable *target, HashTable *sourc… in zend_accel_class_hash_copy_notify()

Completed in 71 milliseconds

12345678910>>...14