Home
last modified time | relevance | path

Searched refs:persistent (Results 101 – 125 of 129) sorted by relevance

123456

/php-src/ext/pdo_mysql/
H A Dmysql_driver.c36 # define pdo_mysql_init(persistent) mysqlnd_init(MYSQLND_CLIENT_NO_FLAG, persistent) argument
38 # define pdo_mysql_init(persistent) mysql_init(NULL) argument
/php-src/ext/mysqlnd/
H A Dmysqlnd_auth.c102 mysqlnd_set_persistent_string(&conn->authentication_plugin_data, NULL, 0, conn->persistent); in mysqlnd_run_authentication()
104 …>authentication_plugin_data.s = mnd_pemalloc(conn->authentication_plugin_data.l, conn->persistent); in mysqlnd_run_authentication()
491 mysqlnd_set_persistent_string(&conn->username, user, user_len, conn->persistent); in mysqlnd_auth_change_user()
492 mysqlnd_set_persistent_string(&conn->password, passwd, passwd_len, conn->persistent); in mysqlnd_auth_change_user()
H A Dmysqlnd_commands.c111 mysqlnd_set_persistent_string(&conn->connect_or_select_db, db.s, db.l, conn->persistent); in MYSQLND_METHOD()
615 conn->server_version = mnd_pestrdup(greet_packet.server_version, conn->persistent); in MYSQLND_METHOD()
H A Dmysqlnd_wireprotocol.c2611 mysqlnd_protocol_payload_decoder_factory_init(MYSQLND_CONN_DATA * conn, const bool persistent) in mysqlnd_protocol_payload_decoder_factory_init() argument
2615 …S_METHOD_TABLE_NAME(mysqlnd_object_factory).get_protocol_payload_decoder_factory(conn, persistent); in mysqlnd_protocol_payload_decoder_factory_init()
2628 bool pers = factory->persistent; in mysqlnd_protocol_payload_decoder_factory_free()
/php-src/ext/ffi/
H A Dphp_ffi.h59 bool persistent; variable
H A Dffi_arginfo.h20 ZEND_ARG_TYPE_INFO_WITH_DEFAULT_VALUE(0, persistent, _IS_BOOL, 0, "false")
/php-src/sapi/embed/
H A DREADME.md131 ZVAL_NEW_STR(&ini_value, zend_string_init(ZEND_STRL("Embed SAPI error:"), /* persistent */ 1));
/php-src/Zend/
H A Dzend_opcode.c111 ZEND_API void zend_type_release(zend_type type, bool persistent) { in zend_type_release() argument
115 zend_type_release(*list_type, persistent); in zend_type_release()
118 pefree(ZEND_TYPE_LIST(type), persistent); in zend_type_release()
H A Dzend_hash.h104 …_FASTCALL _zend_hash_init(HashTable *ht, uint32_t nSize, dtor_func_t pDestructor, bool persistent);
108 #define zend_hash_init(ht, nSize, pHashFunction, pDestructor, persistent) \ argument
109 _zend_hash_init((ht), (nSize), (pDestructor), (persistent))
387 #define ZEND_INIT_SYMTABLE_EX(ht, n, persistent) \ in END_EXTERN_C() argument
388 zend_hash_init(ht, n, NULL, ZVAL_PTR_DTOR, persistent) in END_EXTERN_C()
H A Dzend_operators.h462 ZEND_API zend_string* ZEND_FASTCALL zend_string_tolower_ex(zend_string *str, bool persistent);
463 ZEND_API zend_string* ZEND_FASTCALL zend_string_toupper_ex(zend_string *str, bool persistent);
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() argument
3058 zend_string *res = zend_string_alloc(length, persistent); in zend_string_tolower_ex()
3079 zend_string *res = zend_string_alloc(length, 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() argument
3107 zend_string *res = zend_string_alloc(length, persistent); in zend_string_toupper_ex()
3128 zend_string *res = zend_string_alloc(length, persistent); in zend_string_toupper_ex()
H A Dzend_inheritance.c63 static void zend_type_copy_ctor(zend_type *const type, bool use_arena, bool persistent);
68 bool persistent in zend_type_list_copy_ctor() argument
73 ? zend_arena_alloc(&CG(arena), size) : pemalloc(size, persistent); in zend_type_list_copy_ctor()
83 zend_type_copy_ctor(list_type, use_arena, 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() argument
89 zend_type_list_copy_ctor(type, use_arena, persistent); in zend_type_copy_ctor()
H A Dzend_compile.h888 ZEND_API void zend_type_release(zend_type type, bool persistent);
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() argument
265 …GC_TYPE_INFO(ht) = GC_ARRAY | (persistent ? ((GC_PERSISTENT|GC_NOT_COLLECTABLE) << GC_FLAGS_SHIFT)… 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() argument
279 _zend_hash_init_int(ht, nSize, pDestructor, persistent); in _zend_hash_init()
H A Dzend_API.c3456 …_class_alias_ex(const char *name, size_t name_len, zend_class_entry *ce, bool persistent) /* {{{ */ in zend_register_class_alias_ex() argument
3462 if (persistent && EG(current_module) && EG(current_module)->type == MODULE_TEMPORARY) { in zend_register_class_alias_ex()
3463 persistent = 0; in zend_register_class_alias_ex()
3467 lcname = zend_string_alloc(name_len-1, persistent); in zend_register_class_alias_ex()
3470 lcname = zend_string_alloc(name_len, persistent); in zend_register_class_alias_ex()
/php-src/ext/gd/libgd/
H A Dgd_avif.c238 reader->io.persistent = AVIF_FALSE; in createAvifIOFromCtx()
/php-src/ext/pdo_pgsql/
H A Dpgsql_driver.c39 static char * _pdo_pgsql_trim_message(const char *message, int persistent) in _pdo_pgsql_trim_message() argument
51 tmp = pemalloc(i + 1, persistent); in _pdo_pgsql_trim_message()
/php-src/sapi/fpm/tests/
H A Dfcgi.inc760 * rather than sequentially to guard against false-positives when using persistent sockets.
779 // Using persistent sockets implies you want them kept alive by server!
/php-src/main/streams/
H A Dplain_wrapper.c1108 int persistent = options & STREAM_OPEN_PERSISTENT; in _php_stream_fopen() local
1124 if (persistent) { in _php_stream_fopen()
/php-src/docs/source/core/data-structures/
H A Dreference-counting.rst208 #define GC_PERSISTENT_LOCAL (1<<8) /* persistent, but thread-local */
/php-src/ext/mysqli/
H A Dmysqli_api.c253 if (!mysql->persistent) { in php_mysqli_close()
273 mysql->persistent = false; in php_mysqli_close()
/php-src/ext/pgsql/
H A Dpgsql.c180 if (!link->persistent) { in pgsql_link_free()
536 static void php_pgsql_do_connect(INTERNAL_FUNCTION_PARAMETERS, int persistent) in php_pgsql_do_connect() argument
558 if (persistent && PGG(allow_persistent)) { in php_pgsql_do_connect()
641 link->persistent = 1; in php_pgsql_do_connect()
688 link->persistent = 0; in php_pgsql_do_connect()
/php-src/ext/mbstring/
H A Dmbstring.c294 const mbfl_encoding ***return_list, size_t *return_size, bool persistent, uint32_t arg_num) in php_mb_parse_encoding_list() argument
315 list = (const mbfl_encoding **)pecalloc(size, sizeof(mbfl_encoding*), persistent); in php_mb_parse_encoding_list()
353 pefree(ZEND_VOIDP(list), persistent); in php_mb_parse_encoding_list()
470 …size_t encoding_list_len, const zend_encoding ***return_list, size_t *return_size, bool persistent) in php_mb_zend_encoding_list_parser() argument
475 persistent, /* arg_num */ 0); in php_mb_zend_encoding_list_parser()
/php-src/ext/sodium/
H A Dlibsodium.c41 static zend_always_inline zend_string *zend_string_checked_alloc(size_t len, int persistent) in zend_string_checked_alloc() argument
48 zs = zend_string_alloc(len, persistent); in zend_string_checked_alloc()
/php-src/
H A DUPGRADING405 . When using persistent connections, there is now a liveness check in the

Completed in 163 milliseconds

123456