Home
last modified time | relevance | path

Searched defs:persistent (Results 1 – 25 of 62) sorted by path

123

/php-src/Zend/
H A Dzend_API.c3476 …_class_alias_ex(const char *name, size_t name_len, zend_class_entry *ce, bool persistent) /* {{{ */ in zend_register_class_alias_ex()
H A Dzend_alloc.h188 #define pemalloc(size, persistent) ((persistent)?__zend_malloc(size ZEND_FILE_LINE_CC ZEND_FILE_LIN… argument
189 #define safe_pemalloc(nmemb, size, offset, persistent) ((persistent)?_safe_malloc(nmemb, size, offs… argument
190 #define pefree(ptr, persistent) ((persistent)?free(ptr):efree(ptr)) argument
191 #define pefree_size(ptr, size, persistent) do { \ argument
203 #define perealloc_recoverable(ptr, size, persistent) ((persistent)?realloc((ptr), (size)):erealloc_… argument
205 #define pestrdup(s, persistent) ((persistent)?__zend_strdup(s):estrdup(s)) argument
206 #define pestrndup(s, length, persistent) ((persistent)?zend_strndup((s),(length)):estrndup((s),(len… argument
208 #define pemalloc_rel(size, persistent) ((persistent)?__zend_malloc(size ZEND_FILE_LINE_CC ZEND_FILE… argument
209 #define pefree_rel(ptr, persistent) ((persistent)?free(ptr):efree_rel(ptr)) argument
213 #define perealloc_recoverable_rel(ptr, size, persistent) ((persistent)?realloc((ptr), (size)):ereal… argument
[all …]
H A Dzend_attributes.c257 bool persistent = attr->flags & ZEND_ATTRIBUTE_PERSISTENT; in attr_free() local
278 bool persistent = flags & ZEND_ATTRIBUTE_PERSISTENT; in zend_add_attribute() local
H A Dzend_constants.c554 bool persistent = (ZEND_CONSTANT_FLAGS(c) & CONST_PERSISTENT) != 0; in zend_register_constant() local
H A Dzend_hash.c262 …e void _zend_hash_init_int(HashTable *ht, uint32_t nSize, dtor_func_t pDestructor, bool persistent) in _zend_hash_init_int()
277 …D_FASTCALL _zend_hash_init(HashTable *ht, uint32_t nSize, dtor_func_t pDestructor, bool persistent) in _zend_hash_init()
H A Dzend_hash.h108 #define zend_hash_init(ht, nSize, pHashFunction, pDestructor, persistent) \ argument
387 #define ZEND_INIT_SYMTABLE_EX(ht, n, persistent) \ in END_EXTERN_C() argument
H A Dzend_inheritance.c68 bool persistent in zend_type_list_copy_ctor()
87 static void zend_type_copy_ctor(zend_type *const type, bool use_arena, bool persistent) { in zend_type_copy_ctor()
H A Dzend_llist.c24 … void zend_llist_init(zend_llist *l, size_t size, llist_dtor_func_t dtor, unsigned char persistent) in zend_llist_init()
H A Dzend_llist.h41 unsigned char persistent; member
H A Dzend_multibyte.c51 …size_t encoding_list_len, const zend_encoding ***return_list, size_t *return_size, bool persistent) in dummy_encoding_list_parser()
158 …size_t encoding_list_len, const zend_encoding ***return_list, size_t *return_size, bool persistent) in zend_multibyte_parse_encoding_list()
H A Dzend_opcode.c111 ZEND_API void zend_type_release(zend_type type, bool persistent) { in zend_type_release()
H A Dzend_operators.c3047 ZEND_API zend_string* ZEND_FASTCALL zend_string_tolower_ex(zend_string *str, bool persistent) /* {{… in zend_string_tolower_ex()
3096 ZEND_API zend_string* ZEND_FASTCALL zend_string_toupper_ex(zend_string *str, bool persistent) /* {{… in zend_string_toupper_ex()
H A Dzend_ptr_stack.c24 ZEND_API void zend_ptr_stack_init_ex(zend_ptr_stack *stack, bool persistent) in zend_ptr_stack_init_ex()
H A Dzend_ptr_stack.h27 bool persistent; member
H A Dzend_smart_str.h56 static zend_always_inline char* smart_str_extend_ex(smart_str *dest, size_t len, bool persistent) { in smart_str_extend_ex()
68 static zend_always_inline void smart_str_free_ex(smart_str *str, bool persistent) { in smart_str_free_ex()
91 static zend_always_inline void smart_str_trim_to_size_ex(smart_str *str, bool persistent) in smart_str_trim_to_size_ex()
104 static zend_always_inline zend_string *smart_str_extract_ex(smart_str *str, bool persistent) { in smart_str_extract_ex()
122 static zend_always_inline void smart_str_appendc_ex(smart_str *dest, char ch, bool persistent) { in smart_str_appendc_ex()
128 …s_inline void smart_str_appendl_ex(smart_str *dest, const char *str, size_t len, bool persistent) { in smart_str_appendl_ex()
134 …_always_inline void smart_str_append_ex(smart_str *dest, const zend_string *src, bool persistent) { in smart_str_append_ex()
138 …inline void smart_str_append_smart_str_ex(smart_str *dest, const smart_str *src, bool persistent) { in smart_str_append_smart_str_ex()
144 …zend_always_inline void smart_str_append_long_ex(smart_str *dest, zend_long num, bool persistent) { in smart_str_append_long_ex()
155 …always_inline void smart_str_append_unsigned_ex(smart_str *dest, zend_ulong num, bool persistent) { in smart_str_append_unsigned_ex()
[all …]
H A Dzend_smart_string.h54 static zend_always_inline size_t smart_string_alloc(smart_string *str, size_t len, bool persistent)… in smart_string_alloc()
65 static zend_always_inline void smart_string_free_ex(smart_string *str, bool persistent) { in smart_string_free_ex()
79 static zend_always_inline void smart_string_appendc_ex(smart_string *dest, char ch, bool persistent in smart_string_appendc_ex()
84 …ne void smart_string_appendl_ex(smart_string *dest, const char *str, size_t len, bool persistent) { in smart_string_appendl_ex()
91 …lways_inline void smart_string_append_long_ex(smart_string *dest, zend_long num, bool persistent) { in smart_string_append_long_ex()
97 …_inline void smart_string_append_unsigned_ex(smart_string *dest, zend_ulong num, bool persistent) { in smart_string_append_unsigned_ex()
H A Dzend_string.c198 static zend_string* ZEND_FASTCALL zend_init_string_for_interning(zend_string *str, bool persistent) in zend_init_string_for_interning()
H A Dzend_string.h135 #define ZSTR_INIT_LITERAL(s, persistent) (zend_string_init((s), strlen(s), (persistent))) argument
174 static zend_always_inline zend_string *zend_string_alloc(size_t len, bool persistent) in zend_string_alloc()
185 …nd_always_inline zend_string *zend_string_safe_alloc(size_t n, size_t m, size_t l, bool persistent) in zend_string_safe_alloc()
196 …atic zend_always_inline zend_string *zend_string_init(const char *str, size_t len, bool persistent) in zend_string_init()
224 static zend_always_inline zend_string *zend_string_dup(zend_string *s, bool persistent) in zend_string_dup()
233 static zend_always_inline zend_string *zend_string_separate(zend_string *s, bool persistent) in zend_string_separate()
246 …ic zend_always_inline zend_string *zend_string_realloc(zend_string *s, size_t len, bool persistent) in zend_string_realloc()
266 …tic zend_always_inline zend_string *zend_string_extend(zend_string *s, size_t len, bool persistent) in zend_string_extend()
287 …c zend_always_inline zend_string *zend_string_truncate(zend_string *s, size_t len, bool persistent) in zend_string_truncate()
308 …end_string *zend_string_safe_realloc(zend_string *s, size_t n, size_t m, size_t l, bool persistent) in zend_string_safe_realloc()
[all …]
/php-src/ext/bcmath/libbcmath/src/
H A Dinit.c38 …lways_inline bc_num _bc_new_num_nonzeroed_ex_internal(size_t length, size_t scale, bool persistent) in _bc_new_num_nonzeroed_ex_internal()
51 bc_num _bc_new_num_ex(size_t length, size_t scale, bool persistent) in _bc_new_num_ex()
58 bc_num _bc_new_num_nonzeroed_ex(size_t length, size_t scale, bool persistent) in _bc_new_num_nonzeroed_ex()
65 void _bc_free_num_ex(bc_num *num, bool persistent) in _bc_free_num_ex()
/php-src/ext/bz2/
H A Dbz2_filter.c44 int persistent; member
312 …tream_filter *php_bz2_filter_create(const char *filtername, zval *filterparams, uint8_t persistent) in php_bz2_filter_create()
/php-src/ext/dba/
H A Ddba.c458 static zend_always_inline zend_string *php_dba_zend_string_dup_safe(zend_string *s, bool persistent) in php_dba_zend_string_dup_safe()
475 static void php_dba_open(INTERNAL_FUNCTION_PARAMETERS, bool persistent) in php_dba_open()
/php-src/ext/dba/libinifile/
H A Dinifile.c80 inifile * inifile_alloc(php_stream *fp, int readonly, int persistent) in inifile_alloc()
100 void inifile_free(inifile *dba, int persistent) in inifile_free()
/php-src/ext/ffi/
H A Dffi.c174 bool persistent; member
3759 bool persistent = 0; in ZEND_METHOD() local
H A Dffi.stub.php21 …public static function new(FFI\CType|string $type, bool $owned = true, bool $persistent = false): …
H A Dphp_ffi.h59 bool persistent; variable

Completed in 191 milliseconds

123