Home
last modified time | relevance | path

Searched refs:pDestructor (Results 1 – 8 of 8) sorted by relevance

/PHP-5.5/Zend/
H A Dzend_ts_hash.h40 …it(TsHashTable *ht, uint nSize, hash_func_t pHashFunction, dtor_func_t pDestructor, zend_bool pers…
41 …ex(TsHashTable *ht, uint nSize, hash_func_t pHashFunction, dtor_func_t pDestructor, zend_bool pers…
45 #define zend_ts_hash_init(ht, nSize, pHashFunction, pDestructor, persistent) \ argument
46 _zend_ts_hash_init(ht, nSize, pHashFunction, pDestructor, persistent ZEND_FILE_LINE_CC)
47 #define zend_ts_hash_init_ex(ht, nSize, pHashFunction, pDestructor, persistent, bApplyProtection) \ argument
48 …_zend_ts_hash_init_ex(ht, nSize, pHashFunction, pDestructor, persistent, bApplyProtection ZEND_FIL…
H A Dzend_hash.c165 ht->pDestructor = pDestructor; in _zend_hash_init()
233 if (ht->pDestructor) { in _zend_hash_add_or_update()
310 if (ht->pDestructor) { in _zend_hash_quick_add_or_update()
397 if (ht->pDestructor) { in _zend_hash_index_update_or_next_insert()
531 if (ht->pDestructor) { in zend_hash_del_key_or_index()
559 if (ht->pDestructor) { in zend_hash_destroy()
595 if (ht->pDestructor) { in zend_hash_clean()
649 if (ht->pDestructor) { in zend_hash_apply_deleter()
650 ht->pDestructor(p->pData); in zend_hash_apply_deleter()
1324 if (ht->pDestructor) { in zend_hash_update_current_key_ex()
[all …]
H A Dzend_hash.h76 dtor_func_t pDestructor; member
100 …init(HashTable *ht, uint nSize, hash_func_t pHashFunction, dtor_func_t pDestructor, zend_bool pers…
101 …t_ex(HashTable *ht, uint nSize, hash_func_t pHashFunction, dtor_func_t pDestructor, zend_bool pers…
104 …init(ht, nSize, pHashFunction, pDestructor, persistent) _zend_hash_init((ht), (nSize), (pHash… argument
105 … nSize, pHashFunction, pDestructor, persistent, bApplyProtection) _zend_hash_init_ex((ht), (nSize… argument
H A Dzend_ts_hash.c62 …it(TsHashTable *ht, uint nSize, hash_func_t pHashFunction, dtor_func_t pDestructor, zend_bool pers… in _zend_ts_hash_init() argument
69 …return _zend_hash_init(TS_HASH(ht), nSize, pHashFunction, pDestructor, persistent ZEND_FILE_LINE_R… in _zend_ts_hash_init()
72 …ex(TsHashTable *ht, uint nSize, hash_func_t pHashFunction, dtor_func_t pDestructor, zend_bool pers… in _zend_ts_hash_init_ex() argument
79 …return _zend_hash_init_ex(TS_HASH(ht), nSize, pHashFunction, pDestructor, persistent, bApplyProtec… in _zend_ts_hash_init_ex()
/PHP-5.5/ext/opcache/
H A Dzend_accelerator_util_funcs.c142 persistent_script->function_table.pDestructor = NULL; in free_persistent_script()
143 persistent_script->class_table.pDestructor = NULL; in free_persistent_script()
163 dtor_func_t orig_dtor = ht->pDestructor; in zend_accel_free_user_functions()
165 ht->pDestructor = NULL; in zend_accel_free_user_functions()
167 ht->pDestructor = orig_dtor; in zend_accel_free_user_functions()
192 dtor_func_t orig_dtor = src->pDestructor; in zend_accel_move_user_functions()
194 src->pDestructor = NULL; in zend_accel_move_user_functions()
200 src->pDestructor = orig_dtor; in zend_accel_move_user_functions()
278 ht->pDestructor = ZVAL_PTR_DTOR;
399 ht->pDestructor = ZEND_FUNCTION_DTOR;
[all …]
H A DZendAccelerator.c2160 ht->pDestructor(p->pData);
2308 EG(symbol_table).pDestructor = old_destructor;
2311 old_destructor = EG(function_table)->pDestructor;
2312 EG(function_table)->pDestructor = NULL;
2314 EG(function_table)->pDestructor = old_destructor;
2315 old_destructor = EG(class_table)->pDestructor;
2316 EG(class_table)->pDestructor = NULL;
2318 EG(class_table)->pDestructor = old_destructor;
2319 old_destructor = EG(zend_constants)->pDestructor;
2320 EG(zend_constants)->pDestructor = NULL;
[all …]
/PHP-5.5/ext/spl/
H A Dspl_observer.c352 Z_ARRVAL_P(tmp)->pDestructor = NULL; in spl_object_storage_debug_info()
/PHP-5.5/ext/sqlite3/libsqlite/
H A Dsqlite3.c13507 FuncDestructor *pDestructor
128907 FuncDestructor *pDestructor = p->pDestructor;
128908 if( pDestructor ){
128909 pDestructor->nRef--;
128910 if( pDestructor->nRef==0 ){
128911 pDestructor->xDestroy(pDestructor->pUserData);
128912 sqlite3DbFree(db, pDestructor);
129520 FuncDestructor *pDestructor
129594 if( pDestructor ){
129595 pDestructor->nRef++;
[all …]

Completed in 401 milliseconds