Home
last modified time | relevance | path

Searched refs:local (Results 1 – 25 of 130) sorted by last modified time

123456

/PHP-7.4/
H A Dconfigure.ac1027 Example: --with-foobar=shared,/usr/local/foobar/
1030 o foobar package install prefix is /usr/local/foobar/
1208 test "$prefix" = "NONE" && prefix=/usr/local
1603 | If you encounter <defunc> processes when using a local Oracle |
H A Dphp.ini-development558 ; and change docref_root to the base URL of your local copy including the
1054 ; Default socket name for local MySQL connects. If empty, uses the built-in
1143 ; Allow accessing, from PHP's perspective, local files with LOAD DATA statements
1162 ; Default socket name for local MySQL connects. If empty, uses the built-in
1731 ;tidy.default_config = /usr/local/lib/php/default.tcfg
1922 ; The location of a Certificate Authority (CA) file on the local filesystem
H A Dphp.ini-production558 ; and change docref_root to the base URL of your local copy including the
1054 ; Default socket name for local MySQL connects. If empty, uses the built-in
1143 ; Allow accessing, from PHP's perspective, local files with LOAD DATA statements
1162 ; Default socket name for local MySQL connects. If empty, uses the built-in
1731 ;tidy.default_config = /usr/local/lib/php/default.tcfg
1922 ; The location of a Certificate Authority (CA) file on the local filesystem
/PHP-7.4/ext/phar/
H A Dphar.c2357 phar_zip_file_header local; in phar_postprocess_file() local
2366 …if (sizeof(local) != php_stream_read(phar_get_entrypfp(idata->internal_file), (char *) &local, siz… in phar_postprocess_file()
2373 if (((PHAR_ZIP_16(local.flags)) & 0x8) == 0x8) { in phar_postprocess_file()
2375 entry->header_offset + sizeof(local) + in phar_postprocess_file()
2376 PHAR_ZIP_16(local.filename_len) + in phar_postprocess_file()
2377 PHAR_ZIP_16(local.extra_len) + in phar_postprocess_file()
2385 memcpy(&(local.crc32), &(desc.crc32), 12); in phar_postprocess_file()
2388 memcpy(&(local.crc32), &desc, 12); in phar_postprocess_file()
2392local.filename_len) || entry->crc32 != PHAR_ZIP_32(local.crc32) || entry->uncompressed_filesize !=… in phar_postprocess_file()
2399 …sizeof(local) + entry->header_offset + PHAR_ZIP_16(local.filename_len) + PHAR_ZIP_16(local.extra_l… in phar_postprocess_file()
H A Dzip.c578 phar_zip_file_header local; in phar_parse_zipfile() local
584 if (sizeof(local) != php_stream_read(fp, (char *) &local, sizeof(local))) { in phar_parse_zipfile()
590local.filename_len) || entry.crc32 != PHAR_GET_32(local.crc32) || entry.uncompressed_filesize != P… in phar_parse_zipfile()
597 …sizeof(local) + entry.header_offset + PHAR_GET_16(local.filename_len) + PHAR_GET_16(local.extra_le… in phar_parse_zipfile()
824 phar_zip_file_header local; in phar_zip_changed_apply_int() local
848 memset(&local, 0, sizeof(local)); in phar_zip_changed_apply_int()
851 memcpy(local.signature, "PK\3\4", 4); in phar_zip_changed_apply_int()
877 phar_zip_u2d_time(entry->timestamp, local.timestamp, local.datestamp); in phar_zip_changed_apply_int()
878 memcpy(central.timestamp, local.timestamp, sizeof(local.timestamp)); in phar_zip_changed_apply_int()
879 memcpy(central.datestamp, local.datestamp, sizeof(local.datestamp)); in phar_zip_changed_apply_int()
[all …]
/PHP-7.4/azure/macos/
H A Djob.yml12 export PATH="/usr/local/opt/bison/bin:$PATH"
23 --prefix=/usr/local \
28 --with-pgsql=/usr/local/opt/libpq \
29 --with-pdo-pgsql=/usr/local/opt/libpq \
42 --with-tidy=/usr/local/opt/tidyp \
52 --with-gettext=/usr/local/opt/gettext \
54 --with-bz2=/usr/local/opt/bzip2 \
56 --with-gmp=/usr/local/opt/gmp \
57 --with-iconv=/usr/local/opt/libiconv \
61 --with-pspell=/usr/local/opt/aspell \
[all …]
H A Dtest.yml12 /usr/local/bin/php run-tests.php -P -q \
/PHP-7.4/sapi/fpm/tests/
H A Dtester.inc213 // try local php-fpm
/PHP-7.4/ext/dom/
H A Delement.c639 xmlChar *local; in PHP_FUNCTION() local
650 local = xmlCharStrndup(name, name_len); in PHP_FUNCTION()
651 dom_namednode_iter(intern, 0, namednode, NULL, local, NULL); in PHP_FUNCTION()
1064 xmlChar *local, *nsuri; in PHP_FUNCTION() local
1075 local = xmlCharStrndup(name, name_len); in PHP_FUNCTION()
1077 dom_namednode_iter(intern, 0, namednode, NULL, local, nsuri); in PHP_FUNCTION()
H A Dphp_dom.c1054 …ct *basenode, int ntype, dom_object *intern, xmlHashTablePtr ht, xmlChar *local, xmlChar *ns) /* {… in dom_namednode_iter() argument
1066 mapptr->local = local; in dom_namednode_iter()
1126 if (objmap->local) { in dom_nnodemap_object_dtor()
1127 xmlFree(objmap->local); in dom_nnodemap_object_dtor()
1163 objmap->local = NULL; in dom_nnodemap_objects_new()
1340 xmlNode *dom_get_elements_by_tag_name_ns_raw(xmlNodePtr nodep, char *ns, char *local, int *cur, int… in dom_get_elements_by_tag_name_ns_raw() argument
1346 … if (xmlStrEqual(nodep->name, (xmlChar *)local) || xmlStrEqual((xmlChar *)"*", (xmlChar *)local)) { in dom_get_elements_by_tag_name_ns_raw()
1355 ret = dom_get_elements_by_tag_name_ns_raw(nodep->children, ns, local, cur, index); in dom_get_elements_by_tag_name_ns_raw()
H A Ddocument.c970 xmlChar *local; in PHP_FUNCTION() local
981 local = xmlCharStrndup(name, name_len); in PHP_FUNCTION()
982 dom_namednode_iter(intern, 0, namednode, NULL, local, NULL); in PHP_FUNCTION()
1185 xmlChar *local, *nsuri; in PHP_FUNCTION() local
1196 local = xmlCharStrndup(name, name_len); in PHP_FUNCTION()
1198 dom_namednode_iter(intern, 0, namednode, NULL, local, nsuri); in PHP_FUNCTION()
/PHP-7.4/ext/standard/
H A Dfilestat.c779 const char *local; in php_stat() local
786 …php_stream_locate_url_wrapper(filename, &local, 0)) == &php_plain_files_wrapper && php_check_open_… in php_stat()
796 RETURN_BOOL(VCWD_ACCESS(local, F_OK) == 0); in php_stat()
801 RETURN_BOOL(VCWD_ACCESS(local, W_OK) == 0); in php_stat()
806 RETURN_BOOL(VCWD_ACCESS(local, R_OK) == 0); in php_stat()
811 RETURN_BOOL(VCWD_ACCESS(local, X_OK) == 0); in php_stat()
H A Dconfig.m4431 for i in $PHP_PASSWORD_ARGON2 /usr /usr/local ; do
/PHP-7.4/ext/intl/timezone/
H A Dtimezone_class.cpp427 ZEND_ARG_INFO(0, local)
/PHP-7.4/appveyor/
H A Dtest_task.bat46 set ODBC_TEST_DSN=Driver={ODBC Driver 13 for SQL Server};Server=(local)\SQL2017;Database=master;uid…
/PHP-7.4/ext/ftp/
H A Dphp_ftp.c977 char *local, *remote; in PHP_FUNCTION() local
1014 …outstream = php_stream_open_wrapper(local, mode == FTPTYPE_ASCII ? "wt" : "wb", REPORT_ERRORS, NUL… in PHP_FUNCTION()
1018 php_error_docref(NULL, E_WARNING, "Error opening %s", local); in PHP_FUNCTION()
1024 VCWD_UNLINK(local); in PHP_FUNCTION()
1044 char *local, *remote; in PHP_FUNCTION() local
1080 …outstream = php_stream_open_wrapper(local, mode == FTPTYPE_ASCII ? "wt" : "wb", REPORT_ERRORS, NUL… in PHP_FUNCTION()
1084 php_error_docref(NULL, E_WARNING, "Error opening %s", local); in PHP_FUNCTION()
1095 VCWD_UNLINK(local); in PHP_FUNCTION()
1266 char *remote, *local; in PHP_FUNCTION() local
1322 char *remote, *local; in PHP_FUNCTION() local
[all …]
/PHP-7.4/ext/standard/tests/mail/
H A Dbug80751.phpt38 var_dump(strpos($header, 'To: "<bob@example.com>" <info@mail.local>') !== false);
42 … var_dump(strpos($header, 'Cc: "Lastname, Firstname\\\\" <admin@mail.local>') !== false);
/PHP-7.4/build/
H A Dphp.m41 dnl This file contains local autoconf macros.
1980 for i in $PHP_ICONV /usr/local /usr; do
H A Dlibtool.m41365 sys_lib_search_path_spec="/lib /usr/lib /usr/local/lib"
1447 sys_lib_search_path_spec="/shlib /usr/lib /usr/X11/lib /usr/contrib/lib /lib /usr/local/lib"
1448 sys_lib_dlsearch_path_spec="/shlib /usr/lib /usr/local/lib"
1479 sys_lib_search_path_spec="/usr/lib /lib/w32api /lib /usr/local/lib"
1524 sys_lib_search_path_spec="$sys_lib_search_path_spec /usr/local/lib"])
1525 sys_lib_dlsearch_path_spec='/usr/local/lib /lib /usr/lib'
1607 sys_lib_search_path_spec="/usr/lib/hpux32 /usr/local/lib/hpux32 /usr/local/lib"
1609 sys_lib_search_path_spec="/usr/lib/hpux64 /usr/local/lib/hpux64"
1681 sys_lib_search_path_spec="/usr/lib${libsuff} /lib${libsuff} /usr/local/lib${libsuff}"
1873 sys_lib_search_path_spec='/usr/local/lib /usr/gnu/lib /usr/ccs/lib /usr/lib /lib'
[all …]
/PHP-7.4/ext/mysqli/tests/
H A D061.phpt2 local infile handler
/PHP-7.4/ext/iconv/
H A Dconfig.m417 for i in /usr/local /usr; do
/PHP-7.4/ext/mysqli/
H A Dconfig.m49 /usr/local/mysql/var/mysql.sock \
/PHP-7.4/ext/standard/tests/file/
H A Dsymlink_link_linkinfo_is_link_variation3.phpt42 // storing size of symlink in a local variable
/PHP-7.4/sapi/fpm/
H A Dwww.conf.in411 ;env[PATH] = /usr/local/bin:/usr/bin:/bin
/PHP-7.4/docs/
H A Drelease-process.md128 don't need to be pushed (a local temporary branch should be used).
173 * Call `php bin/createNewsEntry` in your local phpweb checkout. Use category
321 * Call `php bin/createNewsEntry` in your local phpweb checkout.
360 * Call `php bin/createNewsEntry` in your local phpweb checkout.

Completed in 81 milliseconds

123456