Home
last modified time | relevance | path

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

12345678910>>...23

/PHP-8.2/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.2/sapi/fpm/fpm/
H A Dfpm_arrays.h14 size_t used; member
42 a->used = 0; in fpm_array_init()
60 return fpm_array_item(a, a->used - 1); in fpm_array_item_last()
68 if (n < a->used - 1) { in fpm_array_item_remove()
69 void *last = fpm_array_item(a, a->used - 1); in fpm_array_item_remove()
77 --a->used; in fpm_array_item_remove()
87 if (a->used == a->allocated) { in fpm_array_push()
99 ret = fpm_array_item(a, a->used); in fpm_array_push()
101 ++a->used; in fpm_array_push()
112 a->used = a->allocated = 0; in fpm_array_free()
/PHP-8.2/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.2/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.2/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.2/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.2/main/
H A Doutput.c821 context->in.used = used; in php_output_context_feed()
835 context->in.used = context->out.used; in php_output_context_swap()
839 context->out.used = 0; in php_output_context_swap()
850 context->out.used = context->in.used; in php_output_context_pass()
854 context->in.used = 0; in php_output_context_pass()
896 if (buf->used) { in php_output_handler_append()
899 if ((handler->buffer.size - handler->buffer.used) <= buf->used) { in php_output_handler_append()
907 memcpy(handler->buffer.data + handler->buffer.used, buf->data, buf->used); in php_output_handler_append()
908 handler->buffer.used += buf->used; in php_output_handler_append()
945 context->in.used in php_output_handler_op()
[all …]
/PHP-8.2/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.2/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.2/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.2/ext/mysqli/tests/
H A Dbug55582.phpt2 Bug #55582 mysqli_num_rows() returns always 0 for unbuffered, when mysqlnd is used
37 mysqli_num_rows() cannot be used in MYSQLI_USE_RESULT mode
42 mysqli_num_rows() cannot be used in MYSQLI_USE_RESULT mode
/PHP-8.2/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.2/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 …]
/PHP-8.2/ext/phar/tests/
H A Dphar_setalias2.phpt45 alias "test" is already used for archive "%sphar_setalias2.phar.php" and cannot be used for other a…
46 alias "test" is already used for archive "%sphar_setalias2.phar.php" cannot be overloaded with "%sn…
/PHP-8.2/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_01.phpt114 Warning: oci_connect(): OCI_CRED_EXT can only be used with a username of "/" and a NULL password in…
119 Warning: oci_connect(): OCI_CRED_EXT can only be used with a username of "/" and a NULL password in…
124 Warning: oci_connect(): OCI_CRED_EXT can only be used with a username of "/" and a NULL password in…
129 Warning: oci_connect(): OCI_SYSDBA and OCI_SYSOPER cannot be used together in %s on line %d
134 Warning: oci_connect(): OCI_SYSDBA and OCI_SYSOPER cannot be used together in %s on line %d
139 Warning: oci_connect(): OCI_CRED_EXT can only be used with a username of "/" and a NULL password in…
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…
H A Dextauth_03.phpt114 Warning: oci_pconnect(): OCI_CRED_EXT can only be used with a username of "/" and a NULL password i…
119 Warning: oci_pconnect(): OCI_CRED_EXT can only be used with a username of "/" and a NULL password i…
124 Warning: oci_pconnect(): OCI_CRED_EXT can only be used with a username of "/" and a NULL password i…
129 Warning: oci_pconnect(): OCI_SYSDBA and OCI_SYSOPER cannot be used together in %s on line %d
134 Warning: oci_pconnect(): OCI_SYSDBA and OCI_SYSOPER cannot be used together in %s on line %d
139 Warning: oci_pconnect(): OCI_CRED_EXT can only be used with a username of "/" and a NULL password i…
/PHP-8.2/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.2/ext/ldap/tests/
H A DREADME.md80 OpenLDAP 2.4.31 has been used with the configuration below.
90 It is used for testing ldap_start_tls(), which also requires
107 # hdb is used instead of bdb as it enables the usage of referrals & aliases
134 … to use. May be the ldap root or a subtree. (ldap_search_variation6 will fail if a subtree is used)
135 LDAP_TEST_USER (default: cn=Manager,dc=my-domain,dc=com) DN used for binding
136 LDAP_TEST_SASL_USER (default: Manager) SASL user used for SASL binding
137 LDAP_TEST_PASSWD (default: secret) Password used for plain and SASL binding

Completed in 46 milliseconds

12345678910>>...23