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

/PHP_TRUNK/ext/sqlite3/libsqlite/
H A Dsqlite3.c9597 FuncDestructor *pDestructor; /* Reference counted destructor function */ member in struct:FuncDef
9606 ** or not the specified encoding is SQLITE_ANY). The FuncDef.pDestructor
11618 FuncDestructor *pDestructor
108592 FuncDestructor *pDestructor = p->pDestructor; local
[all...]
/PHP_TRUNK/Zend/
H A Dzend_ts_hash.c62 ZEND_API int _zend_ts_hash_init(TsHashTable *ht, uint nSize, hash_func_t pHashFunction, dtor_func_t pDestructor, zend_bool persistent ZEND_FILE_LINE_DC) argument
69 return _zend_hash_init(TS_HASH(ht), nSize, pHashFunction, pDestructor, persistent ZEND_FILE_LINE_RELAY_CC);
72 ZEND_API int _zend_ts_hash_init_ex(TsHashTable *ht, uint nSize, hash_func_t pHashFunction, dtor_func_t pDestructor, zend_bool persistent, zend_bool bApplyProtection ZEND_FILE_LINE_DC) argument
79 return _zend_hash_init_ex(TS_HASH(ht), nSize, pHashFunction, pDestructor, persistent, bApplyProtection ZEND_FILE_LINE_RELAY_CC);
H A Dzend_ts_hash.h40 ZEND_API int _zend_ts_hash_init(TsHashTable *ht, uint nSize, hash_func_t pHashFunction, dtor_func_t pDestructor, zend_bool persistent ZEND_FILE_LINE_DC);
41 ZEND_API int _zend_ts_hash_init_ex(TsHashTable *ht, uint nSize, hash_func_t pHashFunction, dtor_func_t pDestructor, zend_bool persistent, zend_bool bApplyProtection ZEND_FILE_LINE_DC);
45 #define zend_ts_hash_init(ht, nSize, pHashFunction, pDestructor, persistent) \
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) \
48 _zend_ts_hash_init_ex(ht, nSize, pHashFunction, pDestructor, persistent, bApplyProtection ZEND_FILE_LINE_CC)
H A Dzend_hash.h75 dtor_func_t pDestructor; member in struct:_hashtable
99 ZEND_API int _zend_hash_init(HashTable *ht, uint nSize, hash_func_t pHashFunction, dtor_func_t pDestructor, zend_bool persistent ZEND_FILE_LINE_DC);
100 ZEND_API int _zend_hash_init_ex(HashTable *ht, uint nSize, hash_func_t pHashFunction, dtor_func_t pDestructor, zend_bool persistent, zend_bool bApplyProtection ZEND_FILE_LINE_DC);
103 #define zend_hash_init(ht, nSize, pHashFunction, pDestructor, persistent) _zend_hash_init((ht), (nSize), (pHashFunction), (pDestructor), (persistent) ZEND_FILE_LINE_CC)
104 #define zend_hash_init_ex(ht, nSize, pHashFunction, pDestructor, persistent, bApplyProtection) _zend_hash_init_ex((ht), (nSize), (pHashFunction), (pDestructor), (persistent), (bApplyProtection) ZEND_FILE_LINE_CC)
H A Dzend_hash.c148 ZEND_API int _zend_hash_init(HashTable *ht, uint nSize, hash_func_t pHashFunction, dtor_func_t pDestructor, zend_bool persistent ZEND_FILE_LINE_DC) argument
165 ht->pDestructor = pDestructor;
179 ZEND_API int _zend_hash_init_ex(HashTable *ht, uint nSize, hash_func_t pHashFunction, dtor_func_t pDestructor, zend_bool persistent, zend_bool bApplyProtection ZEND_FILE_LINE_DC) argument
181 int retval = _zend_hash_init(ht, nSize, pHashFunction, pDestructor, persistent ZEND_FILE_LINE_CC);
233 if (ht->pDestructor) {
234 ht->pDestructor(p->pData);
310 if (ht->pDestructor) {
311 ht->pDestructor(p->pData);
397 if (ht->pDestructor) {
[all...]
/PHP_TRUNK/ext/spl/
H A Dspl_observer.c347 Z_ARRVAL_P(tmp)->pDestructor = NULL;
389 Z_ARRVAL_P(gcdata_arr)->pDestructor = NULL;
/PHP_TRUNK/ext/opcache/
H A DZendAccelerator.c2145 ht->pDestructor(p->pData);
2165 zvalue->value.ht->pDestructor = (dtor_func_t)accel_fast_zval_ptr_dtor;
2204 function->op_array.static_variables->pDestructor = (dtor_func_t)accel_fast_zval_ptr_dtor;
2218 function->op_array.static_variables->pDestructor = (dtor_func_t)accel_fast_zval_ptr_dtor;
2251 ce->static_members->pDestructor = (dtor_func_t)accel_fast_zval_ptr_dtor;
2273 EG(symbol_table).pDestructor = (dtor_func_t)accel_fast_zval_ptr_dtor;
2280 old_destructor = EG(symbol_table).pDestructor;
2281 EG(symbol_table).pDestructor = (dtor_func_t)accel_fast_zval_ptr_dtor;
2285 EG(symbol_table).pDestructor = old_destructor;
2288 old_destructor = EG(function_table)->pDestructor;
[all...]
H A Dzend_accelerator_util_funcs.c70 ce->function_table.pDestructor = (dtor_func_t) zend_accel_destroy_zend_function;
92 persistent_script->function_table.pDestructor = (dtor_func_t)zend_accel_destroy_zend_function;
93 persistent_script->class_table.pDestructor = (dtor_func_t)zend_accel_destroy_zend_class;
95 persistent_script->function_table.pDestructor = NULL;
96 persistent_script->class_table.pDestructor = NULL;
116 dtor_func_t orig_dtor = ht->pDestructor;
118 ht->pDestructor = NULL;
120 ht->pDestructor = orig_dtor;
145 dtor_func_t orig_dtor = src->pDestructor;
147 src->pDestructor
[all...]

Completed in 150 milliseconds