Home
last modified time | relevance | path

Searched refs:copy (Results 1 – 25 of 316) sorted by last modified time

12345678910>>...13

/php-src/ext/dom/lexbor/lexbor/html/interfaces/
H A Ddocument.c32 .copy = lexbor_hash_copy,
/php-src/build/
H A Dlibtool.m47 ## unlimited permission to copy and/or distribute it, with or without
548 # Copy echo and quote the copy suitably for passing to libtool from
4144 # You should have received a copy of the GNU General Public License
H A Dltmain.sh6131 $echo "$modename: cannot copy a libtool object to \`$destfile'" 1>&2
/php-src/docs/
H A Drelease-process.md583 copy the tarballs and signature files into the repository. Add, commit, and
663 > If this fails for any reason, you can manually copy the information
/php-src/ext/spl/
H A Dphp_spl.c546 zend_function *copy = emalloc(sizeof(zend_op_array)); in PHP_FUNCTION() local
548 memcpy(copy, alfi->func_ptr, sizeof(zend_op_array)); in PHP_FUNCTION()
550 alfi->func_ptr = copy; in PHP_FUNCTION()
/php-src/Zend/
H A Dzend_execute.c1939 if (!copy) { in zend_incdec_typed_ref()
1940 copy = &tmp; in zend_incdec_typed_ref()
1943 ZVAL_COPY(copy, var_ptr); in zend_incdec_typed_ref()
1959 ZVAL_COPY_VALUE(var_ptr, copy); in zend_incdec_typed_ref()
1960 ZVAL_UNDEF(copy); in zend_incdec_typed_ref()
1961 } else if (copy == &tmp) { in zend_incdec_typed_ref()
1970 if (!copy) { in zend_incdec_typed_prop()
1971 copy = &tmp; in zend_incdec_typed_prop()
1974 ZVAL_COPY(copy, var_ptr); in zend_incdec_typed_prop()
1990 ZVAL_UNDEF(copy); in zend_incdec_typed_prop()
[all …]
H A Dzend_constants.c539 zend_constant *copy = pemalloc(sizeof(zend_constant), ZEND_CONSTANT_FLAGS(c) & CONST_PERSISTENT); in zend_hash_add_constant() local
541 memcpy(copy, c, sizeof(zend_constant)); in zend_hash_add_constant()
542 ret = zend_hash_add_ptr(ht, key, copy); in zend_hash_add_constant()
544 pefree(copy, ZEND_CONSTANT_FLAGS(c) & CONST_PERSISTENT); in zend_hash_add_constant()
H A Dzend_closures.c625 zval copy; in zend_closure_get_debug_info() local
630 ZVAL_COPY(&copy, var); in zend_closure_get_debug_info()
632 zend_hash_add_new(Z_ARRVAL(val), key, &copy); in zend_closure_get_debug_info()
H A Dzend_API.h770 zend_function *copy = (zend_function*)emalloc(sizeof(zend_function)); in zend_fcc_addref() local
772 memcpy(copy, fcc->function_handler, sizeof(zend_function)); in zend_fcc_addref()
774 fcc->function_handler = copy; in zend_fcc_addref()
990 #define ZVAL_ZVAL(z, zv, copy, dtor) do { \ argument
994 if (copy && !dtor) { \
1001 if (dtor || !copy) { \
1029 #define RETVAL_ZVAL(zv, copy, dtor) ZVAL_ZVAL(return_value, zv, copy, dtor) argument
1055 #define RETURN_ZVAL(zv, copy, dtor) do { RETVAL_ZVAL(zv, copy, dtor); return; } while (0) argument
/php-src/sapi/fpm/
H A Dconfig.m494 …long v1 = (unsigned int) -1; /* copy will fail if sizeof(long) == 8 and we've got "int ptrace()" */
/php-src/ext/standard/
H A Dbasic_functions.stub.php2855 function copy(string $from, string $to, $context = null): bool {}
H A Dbasic_functions_arginfo.h2662 ZEND_FUNCTION(copy);
3299 ZEND_FE(copy, arginfo_copy)
H A Dproc_open.c473 HANDLE copy, self = GetCurrentProcess(); in dup_handle() local
475 if (!DuplicateHandle(self, src, self, &copy, 0, inherit, DUPLICATE_SAME_ACCESS | in dup_handle()
478 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/filter/
H A Dfilter.c247 …(zval *value, zend_long filter, zend_long flags, zval *options, char* charset, bool copy) /* {{{ */ in php_zval_filter() argument
372 …(zval *value, zend_long filter, zend_long flags, zval *options, char *charset, bool copy) /* {{{ */ in php_zval_filter_recursive() argument
386 php_zval_filter_recursive(element, filter, flags, options, charset, copy); in php_zval_filter_recursive()
388 php_zval_filter(element, filter, flags, options, charset, copy); in php_zval_filter_recursive()
393 php_zval_filter(value, filter, flags, options, charset, copy); in php_zval_filter_recursive()
465 const int copy, zend_long filter_flags in php_filter_call() argument
517 php_zval_filter_recursive(filtered, filter, filter_flags, options, charset, copy); in php_filter_call()
530 php_zval_filter(filtered, filter, filter_flags, options, charset, copy); in php_filter_call()
/php-src/ext/phar/tests/
H A Dgh13833.phpt28 $fname_new = "$fname.copy.phar";
29 copy($fname, $fname_new);
41 unlink(__DIR__ . '/gh13833.phar.copy.phar');
47 internal corruption of phar "%sgh13833.phar.copy.phar" (trying to read past buffer end)
/php-src/ext/opcache/
H A Dzend_persist.c177 zend_persist_zval(&copy->val); in zend_persist_ast()
178 node = (zend_ast *) copy; in zend_persist_ast()
181 zend_ast_list *copy = zend_shared_memdup(ast, in zend_persist_ast() local
184 if (copy->child[i]) { in zend_persist_ast()
185 copy->child[i] = zend_persist_ast(copy->child[i]); in zend_persist_ast()
188 node = (zend_ast *) copy; in zend_persist_ast()
295 zend_accel_store_interned_string(copy->name); in zend_persist_attributes()
298 for (i = 0; i < copy->argc; i++) { in zend_persist_attributes()
299 if (copy->args[i].name) { in zend_persist_attributes()
302 zend_persist_zval(&copy->args[i].value); in zend_persist_attributes()
[all …]
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/
H A Dphp.ini-development574 ; You can download a copy of the PHP manual from https://php.net/docs
575 ; and change docref_root to the base URL of your local copy including the
H A Dphp.ini-production576 ; You can download a copy of the PHP manual from https://php.net/docs
577 ; and change docref_root to the base URL of your local copy including the
/php-src/Zend/Optimizer/
H A Dzend_optimizer_internal.h83 bool zend_optimizer_get_persistent_constant(zend_string *name, zval *result, int copy);
/php-src/ext/phar/
H A Dphar_object.stub.php114 public function copy(string $from, string $to): true {} function in Phar
324 public function copy(string $from, string $to): true {} function in PharData
H A Dphar_object_arginfo.h404 ZEND_METHOD(Phar, copy);
481 ZEND_ME(Phar, copy, arginfo_class_Phar_copy, ZEND_ACC_PUBLIC)
/php-src/ext/phar/phar/
H A Dpharcommand.inc929 if (!@copy($f, $target)) {

Completed in 156 milliseconds

12345678910>>...13