Searched refs:bApplyProtection (Results 1 - 4 of 4) sorted by relevance
| /PHP_5_3/Zend/ |
| H A D | zend_hash.c | 80 if ((ht)->bApplyProtection) { \ 88 if ((ht)->bApplyProtection) { \ 167 ht->bApplyProtection = 1; 187 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) 191 ht->bApplyProtection = bApplyProtection; 196 ZEND_API void zend_hash_set_apply_protection(HashTable *ht, zend_bool bApplyProtection) argument 198 ht->bApplyProtection = bApplyProtection;
|
| H A D | zend_hash.h | 78 zend_bool bApplyProtection; member in struct:_hashtable 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); 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 D | zend_ts_hash.c | 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) 79 return _zend_hash_init_ex(TS_HASH(ht), nSize, pHashFunction, pDestructor, persistent, bApplyProtection ZEND_FILE_LINE_RELAY_CC);
|
| H A D | zend_ts_hash.h | 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); 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)
|
Completed in 7 milliseconds