/PHP-8.3/Zend/ |
H A D | zend_smart_str.h | 56 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 D | zend_alloc.h | 188 #define pemalloc(size, persistent) ((persistent)?__zend_malloc(size):emalloc(size)) argument 190 #define pefree(ptr, persistent) ((persistent)?free(ptr):efree(ptr)) argument 191 #define pefree_size(ptr, size, persistent) do { \ argument 199 #define pecalloc(nmemb, size, persistent) ((persistent)?__zend_calloc((nmemb), (size)):ecalloc((nme… argument 200 #define perealloc(ptr, size, persistent) ((persistent)?__zend_realloc((ptr), (size)):erealloc((ptr)… 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):emalloc_rel(size)) argument 209 #define pefree_rel(ptr, persistent) ((persistent)?free(ptr):efree_rel(ptr)) argument 211 #define perealloc_rel(ptr, size, persistent) ((persistent)?__zend_realloc((ptr), (size)):erealloc_r… argument [all …]
|
H A D | zend_smart_string.h | 54 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 D | zend_string.h | 133 #define ZSTR_INIT_LITERAL(s, persistent) (zend_string_init((s), strlen(s), (persistent))) argument 172 static zend_always_inline zend_string *zend_string_alloc(size_t len, bool persistent) in zend_string_alloc() 183 …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() 194 …atic zend_always_inline zend_string *zend_string_init(const char *str, size_t len, bool persistent) in zend_string_init() 222 static zend_always_inline zend_string *zend_string_dup(zend_string *s, bool persistent) in zend_string_dup() 231 static zend_always_inline zend_string *zend_string_separate(zend_string *s, bool persistent) in zend_string_separate() 244 …ic zend_always_inline zend_string *zend_string_realloc(zend_string *s, size_t len, bool persistent) in zend_string_realloc() 264 …tic zend_always_inline zend_string *zend_string_extend(zend_string *s, size_t len, bool persistent) in zend_string_extend() 285 …c zend_always_inline zend_string *zend_string_truncate(zend_string *s, size_t len, bool persistent) in zend_string_truncate() 306 …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 …]
|
H A D | zend_multibyte.c | 51 …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 D | zend_ptr_stack.c | 24 ZEND_API void zend_ptr_stack_init_ex(zend_ptr_stack *stack, bool persistent) in zend_ptr_stack_init_ex()
|
H A D | zend_llist.h | 41 unsigned char persistent; member
|
H A D | zend_ptr_stack.h | 27 bool persistent; member
|
H A D | zend_attributes.c | 265 bool persistent = attr->flags & ZEND_ATTRIBUTE_PERSISTENT; in attr_free() local 286 bool persistent = flags & ZEND_ATTRIBUTE_PERSISTENT; in zend_add_attribute() local
|
/PHP-8.3/main/streams/ |
H A D | php_streams_int.h | 29 #define pemalloc_rel_orig(size, persistent) ((persistent) ? malloc((size)) : emalloc_rel_orig((size… argument 30 #define perealloc_rel_orig(ptr, size, persistent) ((persistent) ? realloc((ptr), (size)) : erealloc… argument 32 # define pemalloc_rel_orig(size, persistent) pemalloc((size), (persistent)) argument 33 # define perealloc_rel_orig(ptr, size, persistent) perealloc((ptr), (size), (persistent)) argument
|
H A D | php_stream_filter_api.h | 132 #define php_stream_filter_alloc(fops, thisptr, persistent) _php_stream_filter_alloc((fops), (thispt… argument 133 #define php_stream_filter_alloc_rel(fops, thisptr, persistent) _php_stream_filter_alloc((fops), (th… argument
|
/PHP-8.3/ext/standard/ |
H A D | filters.c | 66 …ream_filter *strfilter_rot13_create(const char *filtername, zval *filterparams, uint8_t persistent) in strfilter_rot13_create() 204 int persistent; member 617 int persistent; member 869 int persistent; member 1073 int persistent; member 1149 #define GET_STR_PROP(ht, var, var_len, fldname, persistent) \ argument 1161 static php_conv *php_conv_open(int conv_mode, const HashTable *options, int persistent) in php_conv_open() 1297 const char *filtername, int persistent) in php_convert_filter_ctor() 1331 int persistent) in strfilter_convert_append_bucket() 1623 uint8_t persistent; member [all …]
|
H A D | browscap.c | 150 static zend_string *browscap_convert_pattern(zend_string *pattern, int persistent) /* {{{ */ in browscap_convert_pattern() 224 browscap_parser_ctx *ctx, zend_string *str, bool persistent) { in browscap_intern_str() 240 browscap_parser_ctx *ctx, zend_string *str, bool persistent) { in browscap_intern_str_ci() 264 browser_data *bdata, zend_string *key, zend_string *value, bool persistent) { in browscap_add_kv() 304 int persistent = GC_FLAGS(bdata->htab) & IS_ARRAY_PERSISTENT; in php_browscap_parser_cb() local 400 static int browscap_read_file(char *filename, browser_data *browdata, int persistent) /* {{{ */ in browscap_read_file() 457 static void browscap_bdata_dtor(browser_data *bdata, int persistent) /* {{{ */ in browscap_bdata_dtor()
|
H A D | fsock.c | 28 static void php_fsockopen_stream(INTERNAL_FUNCTION_PARAMETERS, int persistent) in php_fsockopen_stream()
|
/PHP-8.3/ext/bcmath/libbcmath/src/ |
H A D | init.c | 39 bc_num _bc_new_num_ex(size_t length, size_t scale, bool persistent) in _bc_new_num_ex() 57 void _bc_free_num_ex(bc_num *num, bool persistent) in _bc_free_num_ex()
|
/PHP-8.3/ext/mysqlnd/ |
H A D | mysqlnd_statistics.c | 215 mysqlnd_stats_init(MYSQLND_STATS ** stats, const size_t statistic_count, const bool persistent) in mysqlnd_stats_init() 229 mysqlnd_stats_end(MYSQLND_STATS * stats, const bool persistent) in mysqlnd_stats_end()
|
H A D | mysqlnd_alloc.h | 58 static inline MYSQLND_STRING mnd_dup_cstring(const MYSQLND_CSTRING str, const bool persistent) in mnd_dup_cstring() 86 …sqlnd_set_persistent_string(MYSQLND_STRING *buf, const char *string, size_t len, bool persistent) { in mysqlnd_set_persistent_string()
|
/PHP-8.3/sapi/phpdbg/ |
H A D | phpdbg_btree.c | 28 # define pemalloc(size, persistent) malloc(size) argument 29 # define pefree(ptr, persistent) free(ptr) argument 227 void phpdbg_btree_clean_recursive(phpdbg_btree_branch *branch, zend_ulong depth, bool persistent) { in phpdbg_btree_clean_recursive()
|
H A D | phpdbg_btree.h | 38 bool persistent; member
|
/PHP-8.3/main/ |
H A D | php_network.h | 349 #define php_stream_sock_open_from_socket(socket, persistent) _php_stream_sock_open_from_socket((soc… argument 350 #define php_stream_sock_open_host(host, port, socktype, timeout, persistent) _php_stream_sock_open_… argument 353 #define php_stream_sock_open_from_socket_rel(socket, persistent) _php_stream_sock_open_from_socket(… argument 354 #define php_stream_sock_open_host_rel(host, port, socktype, timeout, persistent) _php_stream_sock_o… argument 355 #define php_stream_sock_open_unix_rel(path, pathlen, persistent, timeval) _php_stream_sock_open_uni… argument
|
/PHP-8.3/ext/zlib/ |
H A D | zlib_filter.c | 29 int persistent; member 283 …ream_filter *php_zlib_filter_create(const char *filtername, zval *filterparams, uint8_t persistent) in php_zlib_filter_create()
|
/PHP-8.3/ext/bz2/ |
H A D | bz2_filter.c | 44 int persistent; member 312 …tream_filter *php_bz2_filter_create(const char *filtername, zval *filterparams, uint8_t persistent) in php_bz2_filter_create()
|
/PHP-8.3/ext/phar/ |
H A D | phar.c | 565 …ta_tracker_try_ensure_has_serialized_data(phar_metadata_tracker *tracker, int persistent) /* {{{ */ in phar_metadata_tracker_try_ensure_has_serialized_data() 591 …_unserialize_or_copy(phar_metadata_tracker *tracker, zval *metadata, int persistent, HashTable *un… in phar_metadata_tracker_unserialize_or_copy() 632 bool phar_metadata_tracker_has_data(const phar_metadata_tracker *tracker, int persistent) /* {{{ */ in phar_metadata_tracker_has_data() 642 void phar_metadata_tracker_free(phar_metadata_tracker *tracker, int persistent) /* {{{ */ in phar_metadata_tracker_free() 664 …er_copy(phar_metadata_tracker *dest, const phar_metadata_tracker *source, int persistent) /* {{{ */ in phar_metadata_tracker_copy() 700 … char *buffer, phar_metadata_tracker *tracker, uint32_t zip_metadata_len, int persistent) /* {{{ */ in phar_parse_metadata_lazy()
|
/PHP-8.3/ext/dba/libinifile/ |
H A D | inifile.c | 80 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-8.3/ext/pdo_mysql/ |
H A D | mysql_driver.c | 36 # define pdo_mysql_init(persistent) mysqlnd_init(MYSQLND_CLIENT_NO_FLAG, persistent) argument 38 # define pdo_mysql_init(persistent) mysql_init(NULL) argument
|