Home
last modified time | relevance | path

Searched refs:used (Results 1 – 25 of 540) sorted by relevance

12345678910>>...22

/PHP-8.1/Zend/tests/
H A Dclosure_062.phpt8 echo "instance scoped, non-static, \$this used\n";
13 echo "instance scoped, static, \$this used\n";
26 echo "static scoped, non-static, \$this used\n";
31 echo "static scoped, static, \$this used\n";
36 echo "static scoped, static, \$this not used\n";
49 instance scoped, non-static, $this used
52 instance scoped, static, $this used
53 instance scoped, non-static, $this not used
54 static scoped, non-static, $this used
55 static scoped, static, $this used
[all …]
H A Dresource_key.phpt24 Warning: Resource ID#%d used as offset, casting to integer (%d) in %s on line %d
26 Warning: Resource ID#%d used as offset, casting to integer (%d) in %s on line %d
28 Warning: Resource ID#%d used as offset, casting to integer (%d) in %s on line %d
30 Warning: Resource ID#%d used as offset, casting to integer (%d) in %s on line %d
33 Warning: Resource ID#%d used as offset, casting to integer (%d) in %s on line %d
36 Warning: Resource ID#%d used as offset, casting to integer (%d) in %s on line %d
H A Dclass_on_expression_in_constant_expression.phpt2 ::class on an expression cannot be used inside constant expressions
10 Fatal error: (expression)::class cannot be used in constant expressions in %s on line %d
H A Dbug71622.phpt2 Bug #71622 (Strings used in pass-as-reference cannot be used to invoke C::$callable())
/PHP-8.1/sapi/fpm/fpm/
H A Dfpm_arrays.h12 size_t used; member
40 a->used = 0; in fpm_array_init()
58 return fpm_array_item(a, a->used - 1); in fpm_array_item_last()
66 if (n < a->used - 1) { in fpm_array_item_remove()
67 void *last = fpm_array_item(a, a->used - 1); in fpm_array_item_remove()
75 --a->used; in fpm_array_item_remove()
85 if (a->used == a->allocated) { in fpm_array_push()
97 ret = fpm_array_item(a, a->used); in fpm_array_push()
99 ++a->used; in fpm_array_push()
110 a->used = a->allocated = 0; in fpm_array_free()
/PHP-8.1/ext/spl/tests/
H A Dheap_009.phpt2 SPL: SplHeap and friends, throw: An iterator cannot be used with foreach by reference
49 An iterator cannot be used with foreach by reference
50 An iterator cannot be used with foreach by reference
51 An iterator cannot be used with foreach by reference
52 An iterator cannot be used with foreach by reference
53 An iterator cannot be used with foreach by reference
54 An iterator cannot be used with foreach by reference
H A Diterator_069.phpt2 SPL: RecursiveIteratorIterator cannot be used with foreach by reference
17 Fatal error: Uncaught Error: An iterator cannot be used with foreach by reference in %s:%d
/PHP-8.1/ext/phar/tests/zip/
H A Dcorrupt_008.phpt84 phar error: unsupported compression method (Shrunk) used in this zip in zip-based phar "%scompress_…
85 phar error: unsupported compression method (Reduce) used in this zip in zip-based phar "%scompress_…
86 phar error: unsupported compression method (Reduce) used in this zip in zip-based phar "%scompress_…
87 phar error: unsupported compression method (Reduce) used in this zip in zip-based phar "%scompress_…
88 phar error: unsupported compression method (Reduce) used in this zip in zip-based phar "%scompress_…
89 phar error: unsupported compression method (Implode) used in this zip in zip-based phar "%scompress…
90 phar error: unsupported compression method (Tokenize) used in this zip in zip-based phar "%scompres…
91 phar error: unsupported compression method (Deflate64) used in this zip in zip-based phar "%scompre…
93 phar error: unsupported compression method (LZMA) used in this zip in zip-based phar "%scompress_un…
96 phar error: unsupported compression method (WavPack) used in this zip in zip-based phar "%scompress…
[all …]
/PHP-8.1/ext/standard/tests/class_object/
H A Dget_declared_interfaces_variation1.phpt11 echo "\n-- before interface is used --\n";
15 echo "\n-- after interface is used --\n";
24 -- before interface is used --
27 -- after interface is used --
/PHP-8.1/ext/standard/tests/general_functions/
H A Dgetrusage_basic.phpt16 echo "User time used (seconds) " . $dat["ru_utime.tv_sec"] . "\n";
17 echo "User time used (microseconds) " . $dat["ru_utime.tv_usec"] . "\n";
21 User time used (seconds) %d
22 User time used (microseconds) %d
/PHP-8.1/main/
H A Doutput.c817 context->in.used = used; in php_output_context_feed()
831 context->in.used = context->out.used; in php_output_context_swap()
835 context->out.used = 0; in php_output_context_swap()
846 context->out.used = context->in.used; in php_output_context_pass()
850 context->in.used = 0; in php_output_context_pass()
892 if (buf->used) { in php_output_handler_append()
895 if ((handler->buffer.size - handler->buffer.used) <= buf->used) { in php_output_handler_append()
903 memcpy(handler->buffer.data + handler->buffer.used, buf->data, buf->used); in php_output_handler_append()
904 handler->buffer.used += buf->used; in php_output_handler_append()
941 context->in.used in php_output_handler_op()
[all …]
/PHP-8.1/ext/pcre/tests/
H A D005.phpt5 // this file is not used in the cron job
122 [8] => `oci_ping' defined but not used
225 [8] => `nope' defined but not used
330 [8] => `yy_fatal_error' defined but not used
336 [14] => `yy_last_accepting_cpos' defined but not used
339 [17] => `yy_more_flag' defined but not used
342 [20] => `yy_more_len' defined but not used
345 [23] => `yyunput' defined but not used
348 [26] => `yy_top_state' defined but not used
369 [14] => `yyunput' defined but not used
[all …]
/PHP-8.1/Zend/tests/generators/errors/
H A Dyield_outside_function_error.phpt2 Yield cannot be used outside of functions
10 Fatal error: The "yield" expression can only be used inside a function in %s on line %d
/PHP-8.1/Zend/tests/generators/
H A Dunused_return_value.phpt2 There shouldn't be any leaks when the generator's return value isn't used
8 gen('foo'); // return value not used
/PHP-8.1/Zend/tests/type_declarations/union_types/
H A Dstandalone_false.phpt2 False cannot be used as a standalone type
10 Fatal error: False can not be used as a standalone type in %s on line %d
H A Dstandalone_null.phpt2 Null cannot be used as a standalone type
10 Fatal error: Null can not be used as a standalone type in %s on line %d
H A Dstandalone_nullable_false.phpt2 Nullable false cannot be used as a standalone type
10 Fatal error: False can not be used as a standalone type in %s on line %d
/PHP-8.1/ext/mysqli/tests/
H A Dbug55582.phpt2 Bug #55582 mysqli_num_rows() returns always 0 for unbuffered, when mysqlnd is used
38 mysqli_num_rows() cannot be used in MYSQLI_USE_RESULT mode
43 mysqli_num_rows() cannot be used in MYSQLI_USE_RESULT mode
/PHP-8.1/Zend/tests/type_declarations/mixed/syntax/
H A Dmixed_parameter_error1.phpt2 Test that the mixed parameter type can't be used together with any other type
12 Fatal error: Type mixed can only be used as a standalone type in %s on line %d
H A Dmixed_return_error.phpt2 Test that the mixed return type can't be used together with any other type
13 Fatal error: Type mixed can only be used as a standalone type in %s on line %d
/PHP-8.1/ext/oci8/tests/
H A Derror_bind.phpt55 Warning: oci_execute(): Invalid variable used for bind in %s on line %d
59 Warning: oci_bind_by_name(): Invalid variable used for bind in %s on line %d
61 Warning: oci_execute(): Invalid variable used for bind in %s on line %d
66 Warning: oci_bind_by_name(): Invalid variable used for bind in %s on line %d
H A Dextauth_02.phpt114 Warning: oci_new_connect(): OCI_CRED_EXT can only be used with a username of "/" and a NULL passwor…
119 Warning: oci_new_connect(): OCI_CRED_EXT can only be used with a username of "/" and a NULL passwor…
124 Warning: oci_new_connect(): OCI_CRED_EXT can only be used with a username of "/" and a NULL passwor…
129 Warning: oci_new_connect(): OCI_SYSDBA and OCI_SYSOPER cannot be used together in %s on line %d
134 Warning: oci_new_connect(): OCI_SYSDBA and OCI_SYSOPER cannot be used together in %s on line %d
139 Warning: oci_new_connect(): OCI_CRED_EXT can only be used with a username of "/" and a NULL passwor…
/PHP-8.1/ext/standard/
H A Dmd5.c307 uint32_t used, free; in PHP_MD5Update() local
315 used = saved_lo & 0x3f; in PHP_MD5Update()
317 if (used) { in PHP_MD5Update()
318 free = 64 - used; in PHP_MD5Update()
325 memcpy(&ctx->buffer[used], data, free); in PHP_MD5Update()
341 uint32_t used, free; in PHP_MD5Final() local
343 used = ctx->lo & 0x3f; in PHP_MD5Final()
345 ctx->buffer[used++] = 0x80; in PHP_MD5Final()
347 free = 64 - used; in PHP_MD5Final()
350 memset(&ctx->buffer[used], 0, free); in PHP_MD5Final()
[all …]
/PHP-8.1/ext/phar/tests/
H A Dphar_setalias2.phpt48 alias "test" is already used for archive "%sphar_setalias2.phar.php" and cannot be used for other a…
49 alias "test" is already used for archive "%sphar_setalias2.phar.php" cannot be overloaded with "%sn…
/PHP-8.1/ext/zlib/
H A Dzlib.c194 ctx->buffer.used = 0; in php_zlib_output_handler_ex()
197 if (output_context->in.used) { in php_zlib_output_handler_ex()
207 memcpy(ctx->buffer.data + ctx->buffer.used, output_context->in.data, output_context->in.used); in php_zlib_output_handler_ex()
209 ctx->buffer.used += output_context->in.used; in php_zlib_output_handler_ex()
214 output_context->out.used = 0; in php_zlib_output_handler_ex()
216 ctx->Z.avail_in = ctx->buffer.used; in php_zlib_output_handler_ex()
239 ctx->buffer.used = ctx->Z.avail_in; in php_zlib_output_handler_ex()
445 buffer.used += buffer.free - Z->avail_out; in php_zlib_inflate_rounds()
456 buffer.data[buffer.used] = '\0'; in php_zlib_inflate_rounds()
458 *len = buffer.used; in php_zlib_inflate_rounds()
[all …]

Completed in 50 milliseconds

12345678910>>...22