Lines Matching refs:ht
80 HashTable *ht = NULL; in LoadDirectory() local
101 if (!ht) { in LoadDirectory()
102 ht = (HashTable*)malloc(sizeof(HashTable)); in LoadDirectory()
103 if (!ht) { in LoadDirectory()
106 zend_hash_init(ht, 0, NULL, ZVAL_INTERNAL_PTR_DTOR, 1); in LoadDirectory()
109 zend_hash_str_update(ht, name, name_len, &data); in LoadDirectory()
113 if (ht) { in LoadDirectory()
120 zend_hash_add(ht, index, tmpdata); in LoadDirectory()
123 zend_hash_str_update_mem(directories, path, path_len, ht, sizeof(HashTable)); in LoadDirectory()
131 if (ht == NULL) { in LoadDirectory()
132 ht = parent_ht; in LoadDirectory()
157 if (LoadDirectory(directories, subkey, new_path, name_len, ht)) { in LoadDirectory()
173 HashTable *ht = (HashTable *)Z_PTR_P(zv); in delete_internal_hashtable() local
174 zend_hash_destroy(ht); in delete_internal_hashtable()
175 free(ht); in delete_internal_hashtable()
260 HashTable *ht = (HashTable *)zend_hash_str_find_ptr(PW32G(registry_directories), path, path_len); in UpdateIniFromRegistry() local
262 if (ht != NULL) { in UpdateIniFromRegistry()
266 ZEND_HASH_MAP_FOREACH_STR_KEY_VAL(ht, index, data) { in UpdateIniFromRegistry()