Home
last modified time | relevance | path

Searched refs:PS (Results 1 – 25 of 54) sorted by relevance

123

/PHP-8.3/ext/session/
H A Dsession.c179 if (PS(id) && PS(mod)->s_destroy(&PS(mod_data), PS(id)) == FAILURE) { in php_session_destroy()
396 PS(mod)->s_gc(&PS(mod_data), PS(gc_maxlifetime), &num); in php_session_gc()
420 if (PS(mod)->s_open(&PS(mod_data), PS(save_path), PS(session_name)) == FAILURE in php_session_initialize()
435 PS(id) = PS(mod)->s_create_sid(&PS(mod_data)); in php_session_initialize()
452 PS(id) = PS(mod)->s_create_sid(&PS(mod_data)); in php_session_initialize()
468 if (PS(mod)->s_read(&PS(mod_data), PS(id), &val, PS(gc_maxlifetime)) == FAILURE) { in php_session_initialize()
524 ret = PS(mod)->s_write(&PS(mod_data), PS(id), val, PS(gc_maxlifetime)); in php_session_save_current_state()
609 PS(default_mod) = PS(mod); in PHP_INI_MH()
2279 ret = PS(mod)->s_write(&PS(mod_data), PS(id), data, PS(gc_maxlifetime)); in PHP_FUNCTION()
2309 PS(id) = PS(mod)->s_create_sid(&PS(mod_data)); in PHP_FUNCTION()
[all …]
H A Dmod_user_class.c25 if (PS(default_mod) == NULL) { \
32 if (!PS(mod_user_is_open)) { \
51 ret = PS(default_mod)->s_open(&PS(mod_data), save_path, session_name); in PHP_METHOD()
58 PS(mod_user_is_open) = 1; in PHP_METHOD()
76 PS(mod_user_is_open) = 0; in PHP_METHOD()
79 ret = PS(default_mod)->s_close(&PS(mod_data)); in PHP_METHOD()
101 if (PS(default_mod)->s_read(&PS(mod_data), key, &val, PS(gc_maxlifetime)) == FAILURE) { in PHP_METHOD()
120 RETURN_BOOL(SUCCESS == PS(default_mod)->s_write(&PS(mod_data), key, val, PS(gc_maxlifetime))); in PHP_METHOD()
135 RETURN_BOOL(SUCCESS == PS(default_mod)->s_destroy(&PS(mod_data), key)); in PHP_METHOD()
151 if (PS(default_mod)->s_gc(&PS(mod_data), maxlifetime, &nrdels) == FAILURE) { in PHP_METHOD()
[all …]
H A Dmod_user.c29 if (PS(in_save_handler)) { in ps_call_handler()
30 PS(in_save_handler) = 0; in ps_call_handler()
35 PS(in_save_handler) = 1; in ps_call_handler()
42 PS(in_save_handler) = 0; in ps_call_handler()
48 #define PSF(a) PS(mod_user_names).ps_##a
96 PS(session_status) = php_session_none; in PS_OPEN_FUNC()
103 PS(mod_user_implemented) = 1; in PS_OPEN_FUNC()
118 if (!PS(mod_user_implemented)) { in PS_CLOSE_FUNC()
129 PS(mod_user_implemented) = 0; in PS_CLOSE_FUNC()
H A Dmod_mm.c267 size_t save_path_len = strlen(PS(save_path)); in PHP_MINIT_FUNCTION()
287 memcpy(ps_mm_path, PS(save_path), save_path_len); in PHP_MINIT_FUNCTION()
350 if (PS(use_strict_mode) in PS_READ_FUNC()
354 efree(PS(id)); in PS_READ_FUNC()
355 PS(id) = NULL; in PS_READ_FUNC()
357 PS(id) = PS(mod)->s_create_sid((void **)&data); in PS_READ_FUNC()
358 if (!PS(id)) { in PS_READ_FUNC()
361 if (PS(use_cookies)) { in PS_READ_FUNC()
362 PS(send_cookie) = 1; in PS_READ_FUNC()
365 PS(session_status) = php_session_active; in PS_READ_FUNC()
[all …]
H A Dphp_session.h211 #define PS(v) ZEND_TSRMG(ps_globals_id, php_ps_globals *, v) macro
216 #define PS(v) (ps_globals.v)
278 if (!Z_ISNULL(PS(http_session_vars))) { \
279 zend_hash_del(Z_ARRVAL(PS(http_session_vars)), name); \
290 HashTable *_ht = Z_ARRVAL_P(Z_REFVAL(PS(http_session_vars))); \
/PHP-8.3/ext/pdo_mysql/tests/
H A Dpdo_mysql_stmt_fetch_non_select.phpt18 // Emulated PS first
35 printf("[004] Emulated PS, DESCRIBE returned no results\n");
53 printf("[007] Emulated PS, SHOW returned no results\n");
55 printf("[008] Emulated PS, SHOW data seems wrong, dumping %s\n",
59 printf("[009] Emulated PS, EXPLAIN returned no results\n");
66 printf("[010] Emulated PS, EXPLAIN returned no results\n");
68 // And now native PS
114 printf("[016] Native PS (native support: %s), SHOW failed, %s\n",
135 …printf("Native PS (native support: %s) and emulated PS returned different data for SHOW: %s vs. %s…
160 …printf("Native PS (native support: %s) and emulated PS returned different data for EXPLAIN: %s vs.…
[all …]
H A Dpdo_mysql_stmt_columncount.phpt17 // The only purpose of this is to check if emulated and native PS
20 printf("Testing emulated PS...\n");
38 printf("Testing native PS...\n");
64 Testing emulated PS...
67 Testing native PS...
H A Dpdo_mysql_prepare_emulated_placeholder_everywhere.phpt2 MySQL PDO->prepare(), emulated PS, anonymous placeholder
17 // native PS
37 // now the same with emulated PS
38 printf("now the same with emulated PS\n");
73 now the same with emulated PS
H A Dpdo_mysql_stmt_errorcode.phpt18 printf("Testing emulated PS...\n");
34 printf("Testing native PS...\n");
52 Testing emulated PS...
56 Testing native PS...
H A Dpdo_mysql_prepare_native_placeholder_everywhere.phpt2 MySQL PDO->prepare(),native PS, anonymous placeholder
34 // now the same with native PS
35 printf("now the same with native PS\n");
72 now the same with native PS
H A Dpdo_mysql_prepare_emulated_anonymous.phpt2 MySQL PDO->prepare(), emulated PS, anonymous placeholder
36 // now the same with native PS
37 printf("now the same with native PS\n");
77 now the same with native PS
H A Dpdo_mysql_stmt_nextrowset.phpt70 // Emulated PS
71 printf("Emulated PS...\n");
85 // Native PS
86 printf("Native PS...\n");
117 Emulated PS...
222 Native PS...
H A Dpdo_mysql_stmt_variable_columncount.phpt49 … // What will happen if a PS returns a different number of result set column upon each execution?
54 // Emulates PS first
67 // Native PS
85 // Emulates PS first
98 // Native PS
H A Dpdo_mysql_stmt_errorinfo.phpt17 printf("Testing emulated PS...\n");
40 printf("Testing native PS...\n");
69 Testing emulated PS...
107 Testing native PS...
H A Dpdo_mysql_stmt_bindparam.phpt63 /* NOTE: you cannot use PDO::query() with unbuffered, native PS - see extra test */
84 printf("Emulated PS...\n");
98 printf("Native PS...\n");
126 Emulated PS...
143 Native PS...
H A Dpdo_mysql_stmt_blobfromsteam.phpt124 printf("Emulated PS...\n");
128 printf("Native PS...\n");
147 Emulated PS...
148 Native PS...
H A Dpdo_mysql_prepare_native_named_placeholder.phpt2 MySQL PDO->prepare(), native PS, named placeholder
29 // do not work with MySQL native PS, but lets see what happens!
43 // Now the same with emulated PS.
H A Dpdo_mysql_multi_stmt_nextrowset.phpt42 // Using native PS for proc, since emulated fails.
43 printf("Native PS...\n");
90 Native PS...
/PHP-8.3/ext/mysqli/tests/
H A Dmysqli_get_client_stats_ps.phpt2 mysqli_get_client_stats() - PS
44 printf("[003] Unbuffered rows got increased after buffered PS, expecting %d got %d.\n",
H A Dbug55653.phpt2 Bug #55653 PS crash with libmysql when binding same variable as param and out
H A Dmysqli_explain_metadata.phpt102 printf("[017] Cannot fetch result from PS [%d] %s\n",
134 printf("[023] PS mysqli_stmt_get_result() metadata seems wrong, dumping\n");
141 printf("[023] PS mysqli_stmt_get_result() metadata seems wrong, dumping\n");
H A Dbug45289.phpt2 Bug #45289 (Bogus store_result on PS)
H A Dbug42378.phpt54 printf("[%03d] Cannot create PS, [%d] %s\n",
67 printf("[%03d] Cannot prepare PS, [%d] %s\n",
74 printf("[%03d] Cannot execute PS, [%d] %s\n",
H A Dbug_mysql_49406.phpt86 printf("[008] PS and non-PS results differ, dumping data\n");
/PHP-8.3/ext/session/tests/user_session_module/
H A Dgh9584.phpt2 GH-9584: PS(mod_user_class_name) must not leak into next request

Completed in 39 milliseconds

123