Home
last modified time | relevance | path

Searched refs:names (Results 1 – 25 of 204) sorted by last modified time

123456789

/PHP-7.4/
H A DNEWS21 . Fixed bug #81727: Don't mangle HTTP variable names that clash with ones
668 . Fixed bug #79699 (PHP parses encoded cookie names so malicious `__Host-`
H A Dconfigure.ac1274 dnl Expand all directory names for use in macros/constants.
H A Dphp.ini-development38 ; Directive names are *case sensitive* - foo=bar is different from FOO=bar.
310 ; It receives a comma-delimited list of function names.
315 ; It receives a comma-delimited list of class names.
1003 ; enable them. Note that the IMAP library does not filter mailbox names before
1819 ; Each OPcache blacklist file is a text file that holds the names of files
H A Dphp.ini-production38 ; Directive names are *case sensitive* - foo=bar is different from FOO=bar.
310 ; It receives a comma-delimited list of function names.
315 ; It receives a comma-delimited list of class names.
1003 ; enable them. Note that the IMAP library does not filter mailbox names before
1819 ; Each OPcache blacklist file is a text file that holds the names of files
H A DUPGRADING129 . Starting with 7.4.11, incoming cookie names are not url-decoded. This was never
130 required by the standard, outgoing cookie names aren't encoded and this leads
268 . CURLFile now supports stream wrappers in addition to plain file names, if
/PHP-7.4/sapi/fpm/tests/
H A Dtester.inc938 } elseif (isset($configTemplates['names'])) {
939 foreach($configTemplates['names'] as $name) {
943 throw new \Exception('The config template requires count or names if poolTemplate set');
H A Dbug68391-conf-include-order.phpt28 $cfg['names'] = ['cccc', 'aaaa', 'eeee', 'dddd', 'bbbb'];
/PHP-7.4/ext/fileinfo/
H A Dlibmagic.patch483 + /* FIXME: Read file names and sort them to prevent
1754 #define FILE_NAMES_SIZE 49 /* size of array to contain all names */
/PHP-7.4/ext/xml/
H A Dcompat.c354 _external_entity_ref_handler(void *user, const xmlChar *names, int type, const xmlChar *sys_id, con… in _external_entity_ref_handler() argument
362 if (!parser->h_external_entity_ref(parser, names, (XML_Char *) "", sys_id, pub_id)) { in _external_entity_ref_handler()
/PHP-7.4/ext/openssl/
H A Dopenssl.c2297 GENERAL_NAMES *names; in openssl_x509v3_subjectAltName() local
2312 names = (GENERAL_NAMES*) (ASN1_item_d2i(NULL, &p, length, in openssl_x509v3_subjectAltName()
2315 names = (GENERAL_NAMES*) (method->d2i(NULL, &p, length)); in openssl_x509v3_subjectAltName()
2317 if (names == NULL) { in openssl_x509v3_subjectAltName()
2322 num = sk_GENERAL_NAME_num(names); in openssl_x509v3_subjectAltName()
2326 name = sk_GENERAL_NAME_value(names, i); in openssl_x509v3_subjectAltName()
2357 sk_GENERAL_NAME_pop_free(names, GENERAL_NAME_free); in openssl_x509v3_subjectAltName()
/PHP-7.4/ext/session/
H A Dsession.c1971 zval_ptr_dtor(&PS(mod_user_names).names[i]); in PHP_FUNCTION()
1990 zval_ptr_dtor(&PS(mod_user_names).names[i]); in PHP_FUNCTION()
1998 zval_ptr_dtor(&PS(mod_user_names).names[i]); in PHP_FUNCTION()
1999 ZVAL_UNDEF(&PS(mod_user_names).names[i]); in PHP_FUNCTION()
2010 zval_ptr_dtor(&PS(mod_user_names).names[i]); in PHP_FUNCTION()
2019 ZVAL_UNDEF(&PS(mod_user_names).names[i]); in PHP_FUNCTION()
2079 if (!Z_ISUNDEF(PS(mod_user_names).names[i])) { in PHP_FUNCTION()
2080 zval_ptr_dtor(&PS(mod_user_names).names[i]); in PHP_FUNCTION()
2909 if (!Z_ISUNDEF(PS(mod_user_names).names[i])) { in PHP_RSHUTDOWN_FUNCTION()
2910 zval_ptr_dtor(&PS(mod_user_names).names[i]); in PHP_RSHUTDOWN_FUNCTION()
[all …]
/PHP-7.4/ext/mysqli/tests/
H A Dmysqli_query_unicode.phpt30 if (TRUE !== ($tmp = @mysqli_query($link, "set names utf8")))
H A Dmysqli_get_client_stats.phpt122 /* we need to skip this test in unicode - we send set names utf8 during mysql_connect */
H A Dmysqli_debug_mysqlnd_control_string.phpt93 …printf("[055] File names seem to be missing, first characters from trace are '%s'\n", substr($trac…
152 // get two or three function names to play with...
H A Dmysqli_class_mysqli_result_interface.phpt51 // get_class_method reports different constructor names
H A Dmysqli_error_unicode.phpt27 mysqli_query($link, "set names utf8");
H A Dmysqli_class_mysqli_stmt_interface.phpt55 // get_class_method reports different constructor names
H A Dmysqli_begin_transaction.phpt106 /* does it like stupid names? */
110 /* does it like stupid names? */
/PHP-7.4/build/
H A Dlibtool.m43733 # names for shared libraries.
4154 # The names of the tagged configurations supported by this script.
4307 # List of archive names. First name is the real one, the rest are links.
4382 # Take the output of nm and produce a listing of raw symbols and C names.
4668 /* The mapping between symbol names and symbols. */
6288 # old names
/PHP-7.4/win32/build/
H A Dconfutils.js695 var names = [];
712 if (RegExp.$1 != names[0]) {
713 names.push(RegExp.$1);
721 names.push(libname.replace(new RegExp("\\.lib$"), ".pdb"));
723 for (var k = 0; k < names.length; k++) {
724 var pdbname = names[k];
/PHP-7.4/ext/ffi/
H A Dffi.c6416 } names[] = { local
6430 for (id = 0; names[id].len != 0; id++) {
6431 if (name_len == names[id].len) {
6432 if (memcmp(name, names[id].name, name_len) == 0) {
6499 } names[] = { local
6513 for (id = 0; names[id].len != 0; id++) {
6514 if (name_len == names[id].len) {
6515 if (memcmp(name, names[id].name, name_len) == 0) {
/PHP-7.4/ext/com_dotnet/
H A Dcom_typeinfo.c541 BSTR *names; in php_com_process_typeinfo() local
543 names = (BSTR*)safe_emalloc((func->cParams + 1), sizeof(BSTR), 0); in php_com_process_typeinfo()
545 ITypeInfo_GetNames(typeinfo, func->memid, names, func->cParams + 1, &cnames); in php_com_process_typeinfo()
547 SysFreeString(names[0]); in php_com_process_typeinfo()
595 funcdesc = php_com_olestring_to_string(names[j+1], &funcdesclen, codepage); in php_com_process_typeinfo()
596 SysFreeString(names[j+1]); in php_com_process_typeinfo()
625 efree(names); in php_com_process_typeinfo()
/PHP-7.4/Zend/
H A DZend.m4137 AC_MSG_CHECKING([whether dlsym() requires a leading underscore in symbol names])
142 …INE(DLSYM_NEEDS_UNDERSCORE, 1, [Define if dlsym() requires a leading underscore in symbol names. ])
/PHP-7.4/ext/standard/tests/strings/
H A Dsetlocale_variation2.phpt59 //try different locale names
/PHP-7.4/ext/standard/tests/file/
H A Dlstat_stat_variation20.phpt2 Test lstat() and stat() functions: usage variations - link names stored in array/object
19 /* test for stats of link when their names are stored in object and array */
31 class names {
39 $link_object = new names("$file_path/lstat_stat_variation20_link.tmp");

Completed in 114 milliseconds

123456789