Home
last modified time | relevance | path

Searched defs:persistent (Results 1 – 25 of 55) sorted by relevance

123

/PHP-7.4/Zend/
H A Dzend_smart_str.h76 …c zend_always_inline char* smart_str_extend_ex(smart_str *dest, size_t len, zend_bool persistent) { in smart_str_extend_ex()
83 static zend_always_inline void smart_str_free_ex(smart_str *str, zend_bool persistent) { in smart_str_free_ex()
113 static zend_always_inline void smart_str_appendc_ex(smart_str *dest, char ch, zend_bool persistent)… in smart_str_appendc_ex()
119 …ine void smart_str_appendl_ex(smart_str *dest, const char *str, size_t len, zend_bool persistent) { in smart_str_appendl_ex()
125 …ys_inline void smart_str_append_ex(smart_str *dest, const zend_string *src, zend_bool persistent) { in smart_str_append_ex()
129 …e void smart_str_append_smart_str_ex(smart_str *dest, const smart_str *src, zend_bool persistent) { in smart_str_append_smart_str_ex()
135 …always_inline void smart_str_append_long_ex(smart_str *dest, zend_long num, zend_bool persistent) { in smart_str_append_long_ex()
141 …s_inline void smart_str_append_unsigned_ex(smart_str *dest, zend_ulong num, zend_bool persistent) { in smart_str_append_unsigned_ex()
H A Dzend_smart_string.h56 …zend_always_inline size_t smart_string_alloc(smart_string *str, size_t len, zend_bool persistent) { in smart_string_alloc()
67 static zend_always_inline void smart_string_free_ex(smart_string *str, zend_bool persistent) { in smart_string_free_ex()
81 …end_always_inline void smart_string_appendc_ex(smart_string *dest, char ch, zend_bool persistent) { in smart_string_appendc_ex()
86 …id smart_string_appendl_ex(smart_string *dest, const char *str, size_t len, zend_bool persistent) { in smart_string_appendl_ex()
93 …_inline void smart_string_append_long_ex(smart_string *dest, zend_long num, zend_bool persistent) { in smart_string_append_long_ex()
99 …ne void smart_string_append_unsigned_ex(smart_string *dest, zend_ulong num, zend_bool persistent) { in smart_string_append_unsigned_ex()
H A Dzend_alloc.h193 #define pemalloc(size, persistent) ((persistent)?__zend_malloc(size):emalloc(size)) argument
195 #define pefree(ptr, persistent) ((persistent)?free(ptr):efree(ptr)) argument
196 #define pefree_size(ptr, size, persistent) do { \ argument
204 #define pecalloc(nmemb, size, persistent) ((persistent)?__zend_calloc((nmemb), (size)):ecalloc((nme… argument
205 #define perealloc(ptr, size, persistent) ((persistent)?__zend_realloc((ptr), (size)):erealloc((ptr)… argument
210 #define pestrdup(s, persistent) ((persistent)?strdup(s):estrdup(s)) argument
211 #define pestrndup(s, length, persistent) ((persistent)?zend_strndup((s),(length)):estrndup((s),(len… argument
213 #define pemalloc_rel(size, persistent) ((persistent)?__zend_malloc(size):emalloc_rel(size)) argument
214 #define pefree_rel(ptr, persistent) ((persistent)?free(ptr):efree_rel(ptr)) argument
216 #define perealloc_rel(ptr, size, persistent) ((persistent)?__zend_realloc((ptr), (size)):erealloc_r… argument
[all …]
H A Dzend_string.h134 static zend_always_inline zend_string *zend_string_alloc(size_t len, int persistent) in zend_string_alloc()
145 …end_always_inline zend_string *zend_string_safe_alloc(size_t n, size_t m, size_t l, int persistent) in zend_string_safe_alloc()
156 static zend_always_inline zend_string *zend_string_init(const char *str, size_t len, int persistent) in zend_string_init()
173 static zend_always_inline zend_string *zend_string_dup(zend_string *s, int persistent) in zend_string_dup()
182 …tic zend_always_inline zend_string *zend_string_realloc(zend_string *s, size_t len, int persistent) in zend_string_realloc()
202 …atic zend_always_inline zend_string *zend_string_extend(zend_string *s, size_t len, int persistent) in zend_string_extend()
223 …ic zend_always_inline zend_string *zend_string_truncate(zend_string *s, size_t len, int persistent) in zend_string_truncate()
244 …zend_string *zend_string_safe_realloc(zend_string *s, size_t n, size_t m, size_t l, int persistent) in zend_string_safe_realloc()
289 static zend_always_inline void zend_string_release_ex(zend_string *s, int persistent) in zend_string_release_ex()
H A Dzend_ts_hash.h42 #define zend_ts_hash_init(ht, nSize, pHashFunction, pDestructor, persistent) \ argument
44 #define zend_ts_hash_init_ex(ht, nSize, pHashFunction, pDestructor, persistent, bApplyProtection) \ argument
135 #define ZEND_TS_INIT_SYMTABLE_EX(ht, n, persistent) \ argument
H A Dzend_multibyte.c51 … size_t encoding_list_len, const zend_encoding ***return_list, size_t *return_size, int persistent) in dummy_encoding_list_parser()
158 … size_t encoding_list_len, const zend_encoding ***return_list, size_t *return_size, int persistent) in zend_multibyte_parse_encoding_list()
H A Dzend_ptr_stack.c24 ZEND_API void zend_ptr_stack_init_ex(zend_ptr_stack *stack, zend_bool persistent) in zend_ptr_stack_init_ex()
H A Dzend_llist.h41 unsigned char persistent; member
H A Dzend_ptr_stack.h27 zend_bool persistent; member
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()
/PHP-7.4/main/streams/
H A Dphp_streams_int.h31 #define pemalloc_rel_orig(size, persistent) ((persistent) ? malloc((size)) : emalloc_rel_orig((size… argument
32 #define perealloc_rel_orig(ptr, size, persistent) ((persistent) ? realloc((ptr), (size)) : erealloc… argument
34 # define pemalloc_rel_orig(size, persistent) pemalloc((size), (persistent)) argument
35 # define perealloc_rel_orig(ptr, size, persistent) perealloc((ptr), (size), (persistent)) argument
H A Dphp_stream_filter_api.h134 #define php_stream_filter_alloc(fops, thisptr, persistent) _php_stream_filter_alloc((fops), (thispt… argument
135 #define php_stream_filter_alloc_rel(fops, thisptr, persistent) _php_stream_filter_alloc((fops), (th… argument
/PHP-7.4/ext/standard/
H A Dfilters.c174 uint8_t persistent; member
336 int persistent; member
749 int persistent; member
1001 int persistent; member
1205 int persistent; member
1281 #define GET_STR_PROP(ht, var, var_len, fldname, persistent) \ argument
1293 static php_conv *php_conv_open(int conv_mode, const HashTable *options, int persistent) in php_conv_open()
1429 const char *filtername, int persistent) in php_convert_filter_ctor()
1470 int persistent) in strfilter_convert_append_bucket()
1762 uint8_t persistent; member
[all …]
H A Dbrowscap.c152 static zend_string *browscap_convert_pattern(zend_string *pattern, int persistent) /* {{{ */ in browscap_convert_pattern()
226 browscap_parser_ctx *ctx, zend_string *str, zend_bool persistent) { in browscap_intern_str()
242 browscap_parser_ctx *ctx, zend_string *str, zend_bool persistent) { in browscap_intern_str_ci()
266 browser_data *bdata, zend_string *key, zend_string *value, zend_bool persistent) { in browscap_add_kv()
306 int persistent = GC_FLAGS(bdata->htab) & IS_ARRAY_PERSISTENT; in php_browscap_parser_cb() local
407 static int browscap_read_file(char *filename, browser_data *browdata, int persistent) /* {{{ */ in browscap_read_file()
459 static void browscap_bdata_dtor(browser_data *bdata, int persistent) /* {{{ */ in browscap_bdata_dtor()
H A Dfsock.c30 static void php_fsockopen_stream(INTERNAL_FUNCTION_PARAMETERS, int persistent) in php_fsockopen_stream()
/PHP-7.4/ext/bcmath/libbcmath/src/
H A Dinit.c43 _bc_new_num_ex (length, scale, persistent) in _bc_new_num_ex() argument
69 _bc_free_num_ex (num, persistent) in _bc_free_num_ex() argument
/PHP-7.4/ext/mysqlnd/
H A Dmysqlnd_statistics.c217 mysqlnd_stats_init(MYSQLND_STATS ** stats, const size_t statistic_count, const zend_bool persistent) in mysqlnd_stats_init()
233 mysqlnd_stats_end(MYSQLND_STATS * stats, const zend_bool persistent) in mysqlnd_stats_end()
/PHP-7.4/sapi/phpdbg/
H A Dphpdbg_btree.c30 # define pemalloc(size, persistent) malloc(size) argument
31 # define pefree(ptr, persistent) free(ptr) argument
229 …phpdbg_btree_clean_recursive(phpdbg_btree_branch *branch, zend_ulong depth, zend_bool persistent) { in phpdbg_btree_clean_recursive()
H A Dphpdbg_btree.h40 zend_bool persistent; member
/PHP-7.4/main/
H A Dphp_network.h325 #define php_stream_sock_open_from_socket(socket, persistent) _php_stream_sock_open_from_socket((soc… argument
326 #define php_stream_sock_open_host(host, port, socktype, timeout, persistent) _php_stream_sock_open_… argument
329 #define php_stream_sock_open_from_socket_rel(socket, persistent) _php_stream_sock_open_from_socket(… argument
330 #define php_stream_sock_open_host_rel(host, port, socktype, timeout, persistent) _php_stream_sock_o… argument
331 #define php_stream_sock_open_unix_rel(path, pathlen, persistent, timeval) _php_stream_sock_open_uni… argument
/PHP-7.4/ext/zlib/
H A Dzlib_filter.c31 int persistent; member
284 …ream_filter *php_zlib_filter_create(const char *filtername, zval *filterparams, uint8_t persistent) in php_zlib_filter_create()
/PHP-7.4/ext/bz2/
H A Dbz2_filter.c46 int persistent; member
313 …tream_filter *php_bz2_filter_create(const char *filtername, zval *filterparams, uint8_t persistent) in php_bz2_filter_create()
/PHP-7.4/ext/dba/libinifile/
H A Dinifile.c82 inifile * inifile_alloc(php_stream *fp, int readonly, int persistent) in inifile_alloc()
102 void inifile_free(inifile *dba, int persistent) in inifile_free()
/PHP-7.4/ext/pdo_mysql/
H A Dmysql_driver.c38 # define pdo_mysql_init(persistent) mysqlnd_init(MYSQLND_CLIENT_NO_FLAG, persistent) argument
40 # define pdo_mysql_init(persistent) mysql_init(NULL) argument
/PHP-7.4/ext/iconv/
H A Diconv.c2570 int persistent; member
2592 const char *from_charset, size_t from_charset_len, int persistent) in php_iconv_stream_filter_ctor()
2621 int persistent) in php_iconv_stream_filter_append_bucket()
2868 …_filter *php_iconv_stream_filter_factory_create(const char *name, zval *params, uint8_t persistent) in php_iconv_stream_filter_factory_create()

Completed in 120 milliseconds

123