Home
last modified time | relevance | path

Searched refs:source (Results 1 – 25 of 212) sorted by last modified time

123456789

/PHP-7.4/
H A DNEWS37 . No source changes to this release.
454 . Fixed bug #80523 (bogus parse error on >4GB source code). (Nikita)
2621 . Fixed bug #75317 (UConverter::setDestinationEncoding changes source instead
H A Dconfigure.ac382 dnl source packages. This should be harmless on other OSs.
1320 dnl https://reproducible-builds.org/specs/source-date-epoch/
H A DLICENSE6 Redistribution and use in source and binary forms, with or without
10 1. Redistributions of source code must retain the above copyright
/PHP-7.4/ext/hash/sha3/generic32lc/
H A DKeccakSponge.inc12 and related or neighboring rights to the source code in this file.
/PHP-7.4/ext/hash/sha3/generic64lc/
H A DKeccakSponge.inc12 and related or neighboring rights to the source code in this file.
/PHP-7.4/ext/ffi/
H A Dffi.g7 | This source file is subject to version 3.01 of the PHP license, |
39 | This source file is subject to version 3.01 of the PHP license, |
/PHP-7.4/ext/curl/
H A Dinterface.c2035 if (!Z_ISUNDEF(source->handlers->write->stream)) { in _php_setup_easy_copy_handlers()
2036 Z_ADDREF(source->handlers->write->stream); in _php_setup_easy_copy_handlers()
2040 if (!Z_ISUNDEF(source->handlers->read->stream)) { in _php_setup_easy_copy_handlers()
2041 Z_ADDREF(source->handlers->read->stream); in _php_setup_easy_copy_handlers()
2047 Z_ADDREF(source->handlers->write_header->stream); in _php_setup_easy_copy_handlers()
2056 if (!Z_ISUNDEF(source->handlers->passwd)) { in _php_setup_easy_copy_handlers()
2077 if (source->handlers->progress) { in _php_setup_easy_copy_handlers()
2087 if (source->handlers->fnmatch) { in _php_setup_easy_copy_handlers()
2099 ch->to_free = source->to_free; in _php_setup_easy_copy_handlers()
2101 ch->clone = source->clone; in _php_setup_easy_copy_handlers()
[all …]
/PHP-7.4/ext/phar/
H A Dphar_object.c2259 static zend_object *phar_convert_to_other(phar_archive_data *source, int convert, char *ext, uint32… in phar_convert_to_other() argument
2272 phar->is_data = source->is_data; in phar_convert_to_other()
2298 phar->fname = source->fname; in phar_convert_to_other()
2299 phar->fname_len = source->fname_len; in phar_convert_to_other()
2300 phar->is_temporary_alias = source->is_temporary_alias; in phar_convert_to_other()
2301 phar->alias = source->alias; in phar_convert_to_other()
2303 if (Z_TYPE(source->metadata) != IS_UNDEF) { in phar_convert_to_other()
2304 ZVAL_DUP(&phar->metadata, &source->metadata); in phar_convert_to_other()
2309 ZEND_HASH_FOREACH_PTR(&source->manifest, entry) { in phar_convert_to_other()
H A Dutil.c640 int phar_copy_entry_fp(phar_entry_info *source, phar_entry_info *dest, char **error) /* {{{ */ in phar_copy_entry_fp() argument
644 if (FAILURE == phar_open_entry_fp(source, error, 1)) { in phar_copy_entry_fp()
662 phar_seek_efp(source, 0, SEEK_SET, 0, 1); in phar_copy_entry_fp()
663 link = phar_get_link_source(source); in phar_copy_entry_fp()
666 link = source; in phar_copy_entry_fp()
673 …tents of file \"%s\" to \"%s\" in phar archive \"%s\"", source->filename, dest->filename, source->… in phar_copy_entry_fp()
/PHP-7.4/azure/
H A Dcommunity_job.yml6 # The purpose of the job is to test open-source community projects against an aggressive
/PHP-7.4/Zend/
H A Dzend_operators.c2632 ZEND_API char* ZEND_FASTCALL zend_str_tolower_copy(char *dest, const char *source, size_t length) /… in zend_str_tolower_copy() argument
2634 register unsigned char *str = (unsigned char*)source; in zend_str_tolower_copy()
2647 ZEND_API char* ZEND_FASTCALL zend_str_tolower_dup(const char *source, size_t length) /* {{{ */ in zend_str_tolower_dup() argument
2649 return zend_str_tolower_copy((char *)emalloc(length+1), source, length); in zend_str_tolower_dup()
2665 ZEND_API char* ZEND_FASTCALL zend_str_tolower_dup_ex(const char *source, size_t length) /* {{{ */ in zend_str_tolower_dup_ex() argument
2667 register const unsigned char *p = (const unsigned char*)source; in zend_str_tolower_dup_ex()
2675 if (p != (const unsigned char*)source) { in zend_str_tolower_dup_ex()
2676 memcpy(res, source, p - (const unsigned char*)source); in zend_str_tolower_dup_ex()
2678 r = (unsigned char*)p + (res - source); in zend_str_tolower_dup_ex()
H A Dzend_hash.c1914 IS_CONSISTENT(source); in zend_hash_copy()
1919 p = source->arData + idx; in zend_hash_copy()
1998 Bucket *p = source->arData; in zend_array_dup_packed_elements()
2015 Bucket *p = source->arData; in zend_array_dup_elements()
2045 IS_CONSISTENT(source); in zend_array_dup()
2071 memcpy(HT_GET_DATA_ADDR(target), HT_GET_DATA_ADDR(source), HT_USED_SIZE(source)); in zend_array_dup()
2081 (source->nInternalPointer < source->nNumUsed) ? in zend_array_dup()
2096 (source->nInternalPointer < source->nNumUsed) ? in zend_array_dup()
2129 IS_CONSISTENT(source); in zend_hash_merge()
2197 IS_CONSISTENT(source); in zend_hash_merge_ex()
[all …]
/PHP-7.4/ext/standard/
H A Dstring.c3157 for (source = ZSTR_VAL(str); source < source_end; source++) {
3193 for (source = ZSTR_VAL(str); source < source_end; source++) {
3763 …for (source = (char*)ZSTR_VAL(str), end = source + ZSTR_LEN(str), target = ZSTR_VAL(str); source <…
3764 if (*source == '\\' && source + 1 < end) {
3765 source++;
3792 while (source < end && *source >= '0' && *source <= '7' && i<3) {
3831 for (source = str, end = source + len, target = ZSTR_VAL(new_str); source < end; source++) {
4017 for (; end - source > 15; source += 16) {
4061 source++;
4174 for (; end - source > 15; source += 16) {
[all …]
H A Dfile.c1645 char *source, *target; in PHP_FUNCTION() local
1651 Z_PARAM_PATH(source, source_len) in PHP_FUNCTION()
1657 …if (php_stream_locate_url_wrapper(source, NULL, 0) == &php_plain_files_wrapper && php_check_open_b… in PHP_FUNCTION()
1663 if (php_copy_file_ctx(source, target, 0, context) == SUCCESS) { in PHP_FUNCTION()
/PHP-7.4/appveyor/
H A Dtest_task.bat103 …how-slow 1000 --set-timeout 120 -g FAIL,XFAIL,BORK,WARN,LEAK,SKIP --temp-source c:\tests_tmp --tem…
/PHP-7.4/ext/opcache/Optimizer/
H A Dzend_ssa.c1243 static inline void zend_ssa_remove_use_of_phi_source(zend_ssa *ssa, zend_ssa_phi *phi, int source, … in zend_ssa_remove_use_of_phi_source() argument
1245 zend_ssa_phi **cur = &ssa->vars[source].phi_use_chain; in zend_ssa_remove_use_of_phi_source()
1247 cur = zend_ssa_next_use_phi_ptr(ssa, source, *cur); in zend_ssa_remove_use_of_phi_source()
1257 int source; in zend_ssa_remove_uses_of_phi_sources() local
1258 FOREACH_PHI_SOURCE(phi, source) { in zend_ssa_remove_uses_of_phi_sources()
1259 zend_ssa_remove_use_of_phi_source(ssa, phi, source, zend_ssa_next_use_phi(ssa, source, phi)); in zend_ssa_remove_uses_of_phi_sources()
H A Ddce.c296 int source; in add_phi_sources_to_worklists() local
297 FOREACH_PHI_SOURCE(phi, source) { in add_phi_sources_to_worklists()
298 add_to_worklists(ctx, source, check); in add_phi_sources_to_worklists()
432 int source; in get_common_phi_source() local
433 FOREACH_PHI_SOURCE(phi, source) { in get_common_phi_source()
435 common_source = source; in get_common_phi_source()
436 } else if (common_source != source && source != phi->ssa_var) { in get_common_phi_source()
599 int source; in dce_optimize_op_array() local
601 FOREACH_PHI_SOURCE(phi, source) { in dce_optimize_op_array()
602 add_to_phi_worklist_no_val(&ctx, source); in dce_optimize_op_array()
/PHP-7.4/ext/xmlreader/
H A Dphp_xmlreader.c245 source += 8; in _xmlreader_get_valid_file_path()
247 source += 7; in _xmlreader_get_valid_file_path()
252 source += 17; in _xmlreader_get_valid_file_path()
254 source += 16; in _xmlreader_get_valid_file_path()
259 file_dest = source; in _xmlreader_get_valid_file_path()
262 if (!VCWD_REALPATH(source, resolved_path) && !expand_filepath(source, resolved_path)) { in _xmlreader_get_valid_file_path()
489 char *source; in php_xmlreader_set_relaxng_schema() local
504 if (source) { in php_xmlreader_set_relaxng_schema()
946 char *source; in PHP_METHOD() local
1256 ZEND_ARG_INFO(0, source)
[all …]
/PHP-7.4/ext/spl/
H A Dspl_directory.c354 spl_filesystem_object *source; in spl_filesystem_object_clone() local
362 intern->flags = source->flags; in spl_filesystem_object_clone()
364 switch (source->type) { in spl_filesystem_object_clone()
367 intern->_path = estrndup(source->_path, source->_path_len); in spl_filesystem_object_clone()
388 intern->oth = source->oth; in spl_filesystem_object_clone()
459 ce = ce ? ce : source->info_class; in spl_filesystem_object_create_info()
487 switch (source->type) { in spl_filesystem_object_create_type()
501 ce = ce ? ce : source->info_class; in spl_filesystem_object_create_type()
512 ZVAL_STRINGL(&arg1, source->file_name, source->file_name_len); in spl_filesystem_object_create_type()
516 intern->file_name = estrndup(source->file_name, source->file_name_len); in spl_filesystem_object_create_type()
[all …]
/PHP-7.4/ext/dom/
H A Dphp_dom.c184 dom_doc_propsptr source, dest; in dom_copy_doc_props() local
188 source = dom_get_doc_props(source_doc); in dom_copy_doc_props()
191 dest->formatoutput = source->formatoutput; in dom_copy_doc_props()
192 dest->validateonparse = source->validateonparse; in dom_copy_doc_props()
193 dest->resolveexternals = source->resolveexternals; in dom_copy_doc_props()
194 dest->preservewhitespace = source->preservewhitespace; in dom_copy_doc_props()
195 dest->substituteentities = source->substituteentities; in dom_copy_doc_props()
196 dest->stricterror = source->stricterror; in dom_copy_doc_props()
197 dest->recover = source->recover; in dom_copy_doc_props()
198 if (source->classmap) { in dom_copy_doc_props()
[all …]
/PHP-7.4/sapi/phpdbg/
H A Dphpdbg_prompt.c90 PHPDBG_COMMAND_D(source, "execute a phpdbginit", '<', NULL, "s", 0),
1420 PHPDBG_COMMAND(source) /* {{{ */ in PHPDBG_COMMAND() argument
/PHP-7.4/ext/oci8/
H A DLICENSE6 Redistribution and use in source and binary forms, with or without
10 1. Redistributions of source code must retain the above copyright
/PHP-7.4/ext/soap/
H A Dphp_sdl.c236 s = strstr(ctx->sdl->source, "://"); in sdl_set_uri_credentials()
239 l1 = s ? (size_t)(s - ctx->sdl->source) : strlen(ctx->sdl->source); in sdl_set_uri_credentials()
247 ctx->sdl->source[4] == ':' && in sdl_set_uri_credentials()
262 ctx->sdl->source[4] == 's' && in sdl_set_uri_credentials()
735 ctx.sdl->source = estrdup(struri); in load_wsdl()
2945 if (sdl->source) { in make_persistent_sdl()
2946 psdl->source = strdup(sdl->source); in make_persistent_sdl()
3125 if (tmp->source) { in delete_psdl_int()
3126 free(tmp->source); in delete_psdl_int()
3391 if (tmp->source) { in delete_sdl_impl()
[all …]
/PHP-7.4/build/
H A Dphp.m4168 dnl Processes a file called Makefile.frag in the source directory of the most
180 dnl PHP_ADD_SOURCES(source-path, sources [, special-flags [, type]])
182 dnl Adds sources which are located relative to source-path to the array of type
187 dnl Note: If source-path begins with a "/", the "/" is removed and the path is
221 dnl PHP_ADD_SOURCES_X(source-path, sources[, special-flags[, target-var[, shared[, special-post-fla…
228 dnl Relative to source- or build-directory?
252 dnl Choose the right compiler/flags/etc. for the source-file.
260 dnl Create a rule for the object/source combo.
863 dnl optionally also the source-files for the SAPI-specific objects.
1641 dnl PHP_TEST_BUILD(function, action-if-ok, action-if-not-ok [, extra-libs [, extra-source]])
/PHP-7.4/ext/intl/msgformat/
H A Dmsgformat_helpers.cpp623 U_CFUNC void umsg_parse_helper(UMessageFormat *fmt, int *count, zval **args, UChar *source, int32_t… in umsg_parse_helper() argument
625 UnicodeString srcString(source, source_len); in umsg_parse_helper()

Completed in 160 milliseconds

123456789