Home
last modified time | relevance | path

Searched refs:copy (Results 276 – 300 of 316) sorted by relevance

1...<<111213

/php-src/ext/dom/lexbor/
H A DLICENSE96 Derivative Works a copy of this License; and
109 include a readable copy of the attribution notices contained
/php-src/ext/standard/
H A Dproc_open.c469 HANDLE copy, self = GetCurrentProcess(); in dup_handle() local
471 if (!DuplicateHandle(self, src, self, &copy, 0, inherit, DUPLICATE_SAME_ACCESS | in dup_handle()
474 return copy; in dup_handle()
H A Durl_scanner_ex.re9 | If you did not receive a copy of the PHP license and are unable to |
11 | license@php.net so we can mail you a copy immediately. |
446 * we continue to scan the tag, otherwise we simply copy the complete
H A Dvar_unserializer.re9 | If you did not receive a copy of the PHP license and are unable to |
11 | license@php.net so we can mail you a copy immediately. |
/php-src/ext/fileinfo/
H A Dlibmagic.patch3069 - if ((copy = CAST(char *, malloc(len + 1))) == NULL)
3072 (void)memcpy(copy, str, len);
3073 copy[len] = '\0';
3241 - char *copy;
3259 - copy = CAST(char *, malloc(slen));
3260 - if (copy == NULL) {
3266 - memcpy(copy, ms->search.s, slen);
3267 - copy[--slen] = '\0';
3268 - search = copy;
3271 - copy = NULL;
[all …]
/php-src/ext/opcache/
H A DZendAccelerator.c3552 bool copy = false; local
3563 if (!(copy = zend_hash_exists(preload_scripts, filename))) {
3566 copy = zend_hash_str_exists(preload_scripts, ZSTR_VAL(filename), eval_len);
3570 copy = false;
3573 if (copy) {
3591 bool copy = false; local
3601 if (!(copy = zend_hash_exists(preload_scripts, filename))) {
3604 copy = zend_hash_str_exists(preload_scripts, ZSTR_VAL(filename), eval_len);
3608 copy = false;
3611 if (copy) {
/php-src/ext/fileinfo/libmagic/
H A Dsoftmagic.c524 char *copy; in strndup() local
528 if ((copy = CAST(char *, emalloc(len + 1))) == NULL) in strndup()
530 (void)memcpy(copy, str, len); in strndup()
531 copy[len] = '\0'; in strndup()
532 return copy; in strndup()
/php-src/ext/phar/tests/
H A Dphar_convert_again.phpt38 copy($tbz->getPath(), $fname2);
/php-src/
H A DREADME.REDIST.BINS265 The authors hereby grant permission to use, copy, modify, distribute,
364 Permission to use, copy, modify, and distribute this software for any
509 Permission has been granted to copy, distribute and modify gd in
614 3. Redistributions must contain a verbatim copy of this document.
644 California, USA. All Rights Reserved. Permission to copy and
H A DCONTRIBUTING.md441 | If you did not receive a copy of the PHP license and are unable to |
443 | license@php.net so we can mail you a copy immediately. |
/php-src/ext/standard/tests/strings/
H A Dhtmlentities_html4.phpt75 &copy; U+000A9
H A Dget_html_translation_table_basic5.phpt651 [©] => &copy;
H A Dhtml_entity_decode_html5.phpt836 "&copy;",
2970 &copy; => © c2a9
/php-src/ext/mysqli/tests/
H A Dmysqli_store_result_copy.phpt102 globally to copy mode and run all the tests */
/php-src/ext/phar/
H A Dphar_object_arginfo.h404 ZEND_METHOD(Phar, copy);
481 ZEND_ME(Phar, copy, arginfo_class_Phar_copy, ZEND_ACC_PUBLIC)
/php-src/docs/source/core/data-structures/
H A Dzend_string.rst145 - Creates a true copy of the string in a new allocation, except if the string is interned.
/php-src/sapi/fpm/tests/
H A Dfcgi.inc7 * Permission is hereby granted, free of charge, to any person obtaining a copy of
10 * use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies
/php-src/ext/phar/tests/zip/files/
H A Dcorrupt_zipmaker.php.inc20 * You should have received a copy of the GNU Lesser General Public
/php-src/build/
H A Dpkg.m417 dnl You should have received a copy of the GNU General Public License
/php-src/sapi/fpm/
H A Dconfig.m487 …long v1 = (unsigned int) -1; /* copy will fail if sizeof(long) == 8 and we've got "int ptrace()" */
/php-src/Zend/Optimizer/
H A Dblock_pass.c33 bool zend_optimizer_get_persistent_constant(zend_string *name, zval *result, int copy) in zend_optimizer_get_persistent_constant() argument
42 if (copy) { in zend_optimizer_get_persistent_constant()
/php-src/Zend/tests/
H A Doperator_unsupported_types.phpt110 $copy = eval("return $illegalValue;");
112 $copy++;
113 echo "No error for $copy++\n";
117 $copy = eval("return $illegalValue;");
119 $copy--;
120 echo "No error for $copy--\n";
/php-src/ext/dom/lexbor/lexbor/html/interfaces/
H A Ddocument.c32 .copy = lexbor_hash_copy,
/php-src/ext/soap/
H A Dphp_encoding.c634 xmlNodePtr copy; in to_zval_user() local
636 copy = xmlCopyNode(node, 1); in to_zval_user()
638 xmlNodeDump(buf, NULL, copy, 0, 0); in to_zval_user()
641 xmlFreeNode(copy); in to_zval_user()
/php-src/ext/sodium/
H A Dlibsodium.c151 zend_string *copy = zend_string_init(Z_STRVAL_P(zv), Z_STRLEN_P(zv), 0); in sodium_separate_string() local
153 ZVAL_STR(zv, copy); in sodium_separate_string()

Completed in 120 milliseconds

1...<<111213