Home
last modified time | relevance | path

Searched refs:ZEND_STRL (Results 1 – 25 of 27) sorted by relevance

12

/PHP-7.0/sapi/phpdbg/
H A Dphpdbg_webdata_transfer.c40 phpdbg_is_auto_global(ZEND_STRL("GLOBALS")); in phpdbg_webdata_compress()
42 phpdbg_is_auto_global(ZEND_STRL("_ENV")); in phpdbg_webdata_compress()
43 phpdbg_is_auto_global(ZEND_STRL("_SERVER")); in phpdbg_webdata_compress()
44 phpdbg_is_auto_global(ZEND_STRL("_REQUEST")); in phpdbg_webdata_compress()
49 zend_hash_str_add(ht, ZEND_STRL("GLOBALS"), &zv[1]); in phpdbg_webdata_compress()
64 zend_hash_str_add(ht, ZEND_STRL("input"), &zv[2]); in phpdbg_webdata_compress()
74 zend_hash_str_add(ht, ZEND_STRL("sapi_name"), &zv[6]); in phpdbg_webdata_compress()
90 zend_hash_str_add(ht, ZEND_STRL("modules"), &zv[7]); in phpdbg_webdata_compress()
116 zend_hash_str_add(ht, ZEND_STRL("cwd"), &zv[5]); in phpdbg_webdata_compress()
142 zend_hash_str_add(ht, ZEND_STRL("systemini"), &zv[3]); in phpdbg_webdata_compress()
[all …]
H A Dphpdbg_frame.c99 funcname = zend_hash_str_find(Z_ARRVAL_P(tmp), ZEND_STRL("function")); in phpdbg_dump_prototype()
101 if ((class = zend_hash_str_find(Z_ARRVAL_P(tmp), ZEND_STRL("object")))) { in phpdbg_dump_prototype()
105 class = zend_hash_str_find(Z_ARRVAL_P(tmp), ZEND_STRL("class")); in phpdbg_dump_prototype()
109 type = zend_hash_str_find(Z_ARRVAL_P(tmp), ZEND_STRL("type")); in phpdbg_dump_prototype()
112 args = zend_hash_str_find(Z_ARRVAL_P(tmp), ZEND_STRL("args")); in phpdbg_dump_prototype()
232 file = zend_hash_str_find(Z_ARRVAL_P(tmp), ZEND_STRL("file")); in phpdbg_dump_backtrace()
233 line = zend_hash_str_find(Z_ARRVAL_P(tmp), ZEND_STRL("line")); in phpdbg_dump_backtrace()
H A Dphpdbg_wait.c142 if ((zvp = zend_hash_str_find(ht, ZEND_STRL("GLOBALS"))) && Z_TYPE_P(zvp) == IS_ARRAY) { in phpdbg_webdata_decompress()
145 …if ((srv = zend_hash_str_find(Z_ARRVAL_P(zvp), ZEND_STRL("_SERVER"))) && Z_TYPE_P(srv) == IS_ARRAY… in phpdbg_webdata_decompress()
147 …if ((script = zend_hash_str_find(Z_ARRVAL_P(srv), ZEND_STRL("SCRIPT_FILENAME"))) && Z_TYPE_P(scrip… in phpdbg_webdata_decompress()
173 if ((zvp = zend_hash_str_find(ht, ZEND_STRL("input"))) && Z_TYPE_P(zvp) == IS_STRING) { in phpdbg_webdata_decompress()
182 if ((zvp = zend_hash_str_find(ht, ZEND_STRL("cwd"))) && Z_TYPE_P(zvp) == IS_STRING) { in phpdbg_webdata_decompress()
195 …if ((zvp = zend_hash_str_find(ht, ZEND_STRL("sapi_name"))) && (Z_TYPE_P(zvp) == IS_STRING || Z_TYP… in phpdbg_webdata_decompress()
206 if ((zvp = zend_hash_str_find(ht, ZEND_STRL("modules"))) && Z_TYPE_P(zvp) == IS_ARRAY) { in phpdbg_webdata_decompress()
242 if ((zvp = zend_hash_str_find(ht, ZEND_STRL("extensions"))) && Z_TYPE_P(zvp) == IS_ARRAY) { in phpdbg_webdata_decompress()
299 if ((zvp = zend_hash_str_find(ht, ZEND_STRL("systemini"))) && Z_TYPE_P(zvp) == IS_ARRAY) { in phpdbg_webdata_decompress()
319 if ((zvp = zend_hash_str_find(ht, ZEND_STRL("userini"))) && Z_TYPE_P(zvp) == IS_ARRAY) { in phpdbg_webdata_decompress()
H A Dphpdbg_sigsafe.c16 …zend_quiet_write(PHPDBG_G(io)[PHPDBG_STDERR].fd, ZEND_STRL("Tried to allocate more than " EXP_STR(… in ZEND_EXTERN_MODULE_GLOBALS()
22 …zend_quiet_write(PHPDBG_G(io)[PHPDBG_STDERR].fd, ZEND_STRL("Bailed out without a bailout address i… in ZEND_EXTERN_MODULE_GLOBALS()
H A Dphpdbg_out.c904 memcpy(tmp, ZEND_STRL("&")); in phpdbg_encode_xml()
907 memcpy(tmp, ZEND_STRL("<")); in phpdbg_encode_xml()
958 phpdbg_mixed_write(fd, ZEND_STRL("</stream>")); in phpdbg_process_print()
967 phpdbg_mixed_write(fd, ZEND_STRL("<phpdbg>\n" "</phpdbg>")); in phpdbg_process_print()
969 phpdbg_mixed_write(fd, ZEND_STRL("\n")); in phpdbg_process_print()
984 phpdbg_mixed_write(fd, ZEND_STRL("<phpdbg>\n" "</phpdbg>")); in phpdbg_process_print()
986 phpdbg_mixed_write(fd, ZEND_STRL("\n")); in phpdbg_process_print()
1222 phpdbg_mixed_write(fd, ZEND_STRL("</stream>")); in phpdbg_xml_internal()
1272 phpdbg_mixed_write(fd, ZEND_STRL("</stream>")); in phpdbg_out_internal()
1276 phpdbg_mixed_write(fd, ZEND_STRL("<phpdbg>")); in phpdbg_out_internal()
[all …]
H A Dphpdbg_io.c152 zend_quiet_write(PHPDBG_G(io)[PHPDBG_STDERR].fd, ZEND_STRL("Read operation timed out!\n"));
206 zend_quiet_write(sock, ZEND_STRL("\r---Type <return> to continue or q <return> to quit---"));
H A Dphpdbg.c530 if (options && (option_buffer = zend_hash_str_find(options, ZEND_STRL("functions")))) { in PHP_FUNCTION()
534 if (options && (option_buffer = zend_hash_str_find(options, ZEND_STRL("opcodes")))) { in PHP_FUNCTION()
540 if (options && (option_buffer = zend_hash_str_find(options, ZEND_STRL("files")))) { in PHP_FUNCTION()
635 if (options && (option_buffer = zend_hash_str_find(options, ZEND_STRL("functions")))) { in PHP_FUNCTION()
639 if (options && (option_buffer = zend_hash_str_find(options, ZEND_STRL("opcodes")))) { in PHP_FUNCTION()
994 ic.name = zend_string_init(ZEND_STRL("STDIN"), 0); in phpdbg_register_file_handles()
1001 oc.name = zend_string_init(ZEND_STRL("STDOUT"), 0); in phpdbg_register_file_handles()
1008 ec.name = zend_string_init(ZEND_STRL("STDERR"), 0); in phpdbg_register_file_handles()
1857 …per *wrapper = zend_hash_str_find_ptr(php_stream_get_url_stream_wrappers_hash(), ZEND_STRL("php")); in main()
1944 …zend_quiet_write(PHPDBG_G(io)[PHPDBG_STDERR].fd, ZEND_STRL("No opcodes could be compiled | No file… in main()
[all …]
H A Dphpdbg_prompt.c783 …file = zval_get_string(zend_read_property(zend_get_exception_base(&zv), &zv, ZEND_STRL("file"), 1,… in phpdbg_handle_exception()
784 …line = zval_get_long(zend_read_property(zend_get_exception_base(&zv), &zv, ZEND_STRL("line"), 1, &… in phpdbg_handle_exception()
790 …zend_update_property_string(zend_get_exception_base(&zv), &zv, ZEND_STRL("string"), Z_STRVAL(tmp)); in phpdbg_handle_exception()
792 …msg = zval_get_string(zend_read_property(zend_get_exception_base(&zv), &zv, ZEND_STRL("string"), 1… in phpdbg_handle_exception()
1731 …file = zval_get_string(zend_read_property(zend_get_exception_base(&zv), &zv, ZEND_STRL("file"), 1,… in phpdbg_execute_ex()
1732 …line = zval_get_long(zend_read_property(zend_get_exception_base(&zv), &zv, ZEND_STRL("line"), 1, &… in phpdbg_execute_ex()
1733 …msg = zval_get_string(zend_read_property(zend_get_exception_base(&zv), &zv, ZEND_STRL("message"), … in phpdbg_execute_ex()
H A Dphpdbg_watch.c684 …zend_hash_str_add(EG(current_execute_data)->symbol_table, ZEND_STRL("this"), &EG(current_execute_d… in phpdbg_watchpoint_parse_symtables()
H A Dphpdbg_bp.c943 return zend_hash_str_find_ptr(&PHPDBG_G(bp)[PHPDBG_BREAK_SYM], ZEND_STRL("main")); in phpdbg_find_breakpoint_symbol()
/PHP-7.0/sapi/fpm/fpm/
H A Dfpm_status.c67 sapi_add_header_ex(ZEND_STRL("Content-Type: text/plain"), 1, 1); in fpm_status_handle_request()
68 sapi_add_header_ex(ZEND_STRL("Expires: Thu, 01 Jan 1970 00:00:00 GMT"), 1, 1); in fpm_status_handle_request()
89 sapi_add_header_ex(ZEND_STRL("Content-Type: text/plain"), 1, 1); in fpm_status_handle_request()
90 sapi_add_header_ex(ZEND_STRL("Expires: Thu, 01 Jan 1970 00:00:00 GMT"), 1, 1); in fpm_status_handle_request()
99 sapi_add_header_ex(ZEND_STRL("Content-Type: text/plain"), 1, 1); in fpm_status_handle_request()
112 sapi_add_header_ex(ZEND_STRL("Content-Type: text/plain"), 1, 1); in fpm_status_handle_request()
120 sapi_add_header_ex(ZEND_STRL("Expires: Thu, 01 Jan 1970 00:00:00 GMT"), 1, 1); in fpm_status_handle_request()
138 sapi_add_header_ex(ZEND_STRL("Content-Type: text/html"), 1, 1); in fpm_status_handle_request()
213 sapi_add_header_ex(ZEND_STRL("Content-Type: text/xml"), 1, 1); in fpm_status_handle_request()
265 sapi_add_header_ex(ZEND_STRL("Content-Type: application/json"), 1, 1); in fpm_status_handle_request()
[all …]
/PHP-7.0/ext/zlib/
H A Dzlib.c93 || php_output_handler_conflict(handler_name, handler_name_len, ZEND_STRL("ob_gzhandler")) in php_zlib_output_conflict_check()
94 || php_output_handler_conflict(handler_name, handler_name_len, ZEND_STRL("mb_output_handler")) in php_zlib_output_conflict_check()
95 || php_output_handler_conflict(handler_name, handler_name_len, ZEND_STRL("URL-Rewriter"))) { in php_zlib_output_conflict_check()
227 sapi_add_header_ex(ZEND_STRL("Vary: Accept-Encoding"), 1, 0); in php_zlib_output_handler()
248 sapi_add_header_ex(ZEND_STRL("Content-Encoding: gzip"), 1, 1); in php_zlib_output_handler()
251 sapi_add_header_ex(ZEND_STRL("Content-Encoding: deflate"), 1, 1); in php_zlib_output_handler()
257 sapi_add_header_ex(ZEND_STRL("Vary: Accept-Encoding"), 1, 0); in php_zlib_output_handler()
505 sapi_add_header_ex(ZEND_STRL("Content-Encoding: gzip"), 1, 1); in PHP_FUNCTION()
508 sapi_add_header_ex(ZEND_STRL("Content-Encoding: deflate"), 1, 1); in PHP_FUNCTION()
511 sapi_add_header_ex(ZEND_STRL("Vary: Accept-Encoding"), 1, 0); in PHP_FUNCTION()
[all …]
/PHP-7.0/ext/mcrypt/
H A Dmcrypt_filter.c177 if ((tmpzval = zend_hash_str_find(Z_ARRVAL_P(filterparams), ZEND_STRL("mode")))) { in php_mcrypt_filter_create()
185 if ((tmpzval=zend_hash_str_find(Z_ARRVAL_P(filterparams), ZEND_STRL("algorithms_dir")))) { in php_mcrypt_filter_create()
193 if ((tmpzval=zend_hash_str_find(Z_ARRVAL_P(filterparams), ZEND_STRL("modes_dir")))) { in php_mcrypt_filter_create()
201 if ((tmpzval = zend_hash_str_find(Z_ARRVAL_P(filterparams), ZEND_STRL("key"))) && in php_mcrypt_filter_create()
221 if (!(tmpzval = zend_hash_str_find(Z_ARRVAL_P(filterparams), ZEND_STRL("iv"))) || in php_mcrypt_filter_create()
/PHP-7.0/ext/standard/
H A Dinfo.c1041 php_print_gpcse_array(ZEND_STRL("_REQUEST")); in php_print_info()
1042 php_print_gpcse_array(ZEND_STRL("_GET")); in php_print_info()
1043 php_print_gpcse_array(ZEND_STRL("_POST")); in php_print_info()
1044 php_print_gpcse_array(ZEND_STRL("_FILES")); in php_print_info()
1045 php_print_gpcse_array(ZEND_STRL("_COOKIE")); in php_print_info()
1046 php_print_gpcse_array(ZEND_STRL("_SERVER")); in php_print_info()
1047 php_print_gpcse_array(ZEND_STRL("_ENV")); in php_print_info()
H A Durl_scanner_ex.c127 if ((!(tmp = zend_hash_str_find(&EG(symbol_table), ZEND_STRL("_SERVER")))) in PHP_INI_END()
129 || !(http_host = zend_hash_str_find(HASH_OF(tmp), ZEND_STRL("HTTP_HOST"))) in PHP_INI_END()
1017 …php_output_start_internal(ZEND_STRL("URL-Rewriter"), php_url_scanner_output_handler, 0, PHP_OUTPUT… in php_url_scanner_add_var()
H A Durl_scanner_ex.re130 if ((!(tmp = zend_hash_str_find(&EG(symbol_table), ZEND_STRL("_SERVER"))))
132 || !(http_host = zend_hash_str_find(HASH_OF(tmp), ZEND_STRL("HTTP_HOST")))
534 …php_output_start_internal(ZEND_STRL("URL-Rewriter"), php_url_scanner_output_handler, 0, PHP_OUTPUT…
H A Dbrowscap.c697 || zend_is_auto_global_str(ZEND_STRL("_SERVER"))) { in PHP_FUNCTION()
/PHP-7.0/ext/pdo_mysql/
H A Dmysql_driver.c320 PDO_DBG_RETURN(0 <= mysql_handle_doer(dbh, ZEND_STRL("START TRANSACTION"))); in mysql_handle_begin()
332 PDO_DBG_RETURN(0 <= mysql_handle_doer(dbh, ZEND_STRL("COMMIT"))); in mysql_handle_commit()
345 PDO_DBG_RETURN(0 <= mysql_handle_doer(dbh, ZEND_STRL("ROLLBACK"))); in mysql_handle_rollback()
360 PDO_DBG_RETURN(0 <= mysql_handle_doer(dbh, ZEND_STRL("SET AUTOCOMMIT=1"))); in mysql_handle_autocommit()
362 PDO_DBG_RETURN(0 <= mysql_handle_doer(dbh, ZEND_STRL("SET AUTOCOMMIT=0"))); in mysql_handle_autocommit()
/PHP-7.0/main/
H A Doutput.c415 …handler = php_output_handler_create_internal(ZEND_STRL(php_output_default_handler_name), php_outpu… in php_output_start_default()
430 …handler = php_output_handler_create_internal(ZEND_STRL(php_output_devnull_handler_name), php_outpu… in php_output_start_devnull()
448 …handler = php_output_handler_create_internal(ZEND_STRL(php_output_default_handler_name), php_outpu… in php_output_start_user()
486 …handler = php_output_handler_create_internal(ZEND_STRL(php_output_default_handler_name), php_outpu… in php_output_handler_create_user()
/PHP-7.0/Zend/
H A Dzend_portability.h433 #define ZEND_STRL(str) (str), (sizeof(str)-1) macro
H A Dzend_compile.c144 {ZEND_STRL("bool")},
145 {ZEND_STRL("false")},
146 {ZEND_STRL("float")},
147 {ZEND_STRL("int")},
148 {ZEND_STRL("null")},
149 {ZEND_STRL("parent")},
150 {ZEND_STRL("self")},
151 {ZEND_STRL("static")},
152 {ZEND_STRL("string")},
153 {ZEND_STRL("true")},
[all …]
/PHP-7.0/ext/filter/
H A Dfilter.c542 zend_is_auto_global_str(ZEND_STRL("_SERVER")); in php_filter_get_storage()
548 zend_is_auto_global_str(ZEND_STRL("_ENV")); in php_filter_get_storage()
/PHP-7.0/ext/tidy/
H A Dtidy.c1055 php_output_handler_alias_register(ZEND_STRL("ob_tidyhandler"), php_tidy_output_handler_init); in PHP_MINIT_FUNCTION()
1066 php_tidy_clean_output_start(ZEND_STRL("ob_tidyhandler")); in PHP_RINIT_FUNCTION()
1119 if (!php_output_handler_started(ZEND_STRL("ob_tidyhandler"))) { in PHP_INI_MH()
1120 php_tidy_clean_output_start(ZEND_STRL("ob_tidyhandler")); in PHP_INI_MH()
/PHP-7.0/ext/iconv/
H A Diconv.c316 php_output_handler_alias_register(ZEND_STRL("ob_iconv_handler"), php_iconv_output_handler_init); in PHP_INI_END()
317 php_output_handler_conflict_register(ZEND_STRL("ob_iconv_handler"), php_iconv_output_conflict); in PHP_INI_END()
387 if (php_output_handler_conflict(handler_name, handler_name_len, ZEND_STRL("ob_iconv_handler")) in php_iconv_output_conflict()
388 || php_output_handler_conflict(handler_name, handler_name_len, ZEND_STRL("mb_output_handler"))) { in php_iconv_output_conflict()
/PHP-7.0/sapi/cli/
H A Dphp_cli.c965 zend_is_auto_global_str(ZEND_STRL("_SERVER")); in do_cli()

Completed in 109 milliseconds

12