Home
last modified time | relevance | path

Searched refs:resource (Results 1 – 25 of 607) sorted by last modified time

12345678910>>...25

/php-src/
H A Dconfigure.ac414 sys/resource.h \
/php-src/Zend/tests/type_declarations/
H A Dscalar_return_basic.phpt101 *** Trying resource(5) of type (stream)
102 *** Caught {closure:%s:%d}(): Return value must be of type int, resource returned in %s on line %d
138 *** Trying resource(5) of type (stream)
139 *** Caught {closure:%s:%d}(): Return value must be of type float, resource returned in %s on line %d
175 *** Trying resource(5) of type (stream)
176 *** Caught {closure:%s:%d}(): Return value must be of type string, resource returned in %s on line …
212 *** Trying resource(5) of type (stream)
213 *** Caught {closure:%s:%d}(): Return value must be of type bool, resource returned in %s on line %d
H A Dscalar_strict.phpt107 *** Trying resource(5) of type (stream)
108 *** Caught {closure:%s:%d}(): Argument #1 ($i) must be of type int, resource given, called in %s on…
160 *** Trying resource(5) of type (stream)
161 *** Caught {closure:%s:%d}(): Argument #1 ($f) must be of type float, resource given, called in %s …
213 *** Trying resource(5) of type (stream)
214 *** Caught {closure:%s:%d}(): Argument #1 ($s) must be of type string, resource given, called in %s…
266 *** Trying resource(5) of type (stream)
267 *** Caught {closure:%s:%d}(): Argument #1 ($b) must be of type bool, resource given, called in %s o…
H A Dscalar_basic.phpt114 *** Trying resource(%d) of type (stream)
115 *** Caught {closure:%s:%d}(): Argument #1 ($i) must be of type int, resource given, called in %s on…
167 *** Trying resource(%d) of type (stream)
168 *** Caught {closure:%s:%d}(): Argument #1 ($f) must be of type float, resource given, called in %s …
220 *** Trying resource(%d) of type (stream)
221 *** Caught {closure:%s:%d}(): Argument #1 ($s) must be of type string, resource given, called in %s…
273 *** Trying resource(%d) of type (stream)
274 *** Caught {closure:%s:%d}(): Argument #1 ($b) must be of type bool, resource given, called in %s o…
H A Dscalar_return_basic_64bit.phpt101 *** Trying resource(5) of type (stream)
102 *** Caught {closure:%s:%d}(): Return value must be of type int, resource returned in %s on line %d
138 *** Trying resource(5) of type (stream)
139 *** Caught {closure:%s:%d}(): Return value must be of type float, resource returned in %s on line %d
175 *** Trying resource(5) of type (stream)
176 *** Caught {closure:%s:%d}(): Return value must be of type string, resource returned in %s on line …
212 *** Trying resource(5) of type (stream)
213 *** Caught {closure:%s:%d}(): Return value must be of type bool, resource returned in %s on line %d
H A Dscalar_strict_64bit.phpt107 *** Trying resource(5) of type (stream)
108 *** Caught {closure:%s:%d}(): Argument #1 ($i) must be of type int, resource given, called in %s on…
160 *** Trying resource(5) of type (stream)
161 *** Caught {closure:%s:%d}(): Argument #1 ($f) must be of type float, resource given, called in %s …
213 *** Trying resource(5) of type (stream)
214 *** Caught {closure:%s:%d}(): Argument #1 ($s) must be of type string, resource given, called in %s…
266 *** Trying resource(5) of type (stream)
267 *** Caught {closure:%s:%d}(): Argument #1 ($b) must be of type bool, resource given, called in %s o…
H A Dscalar_strict_basic.phpt80 *** Trying resource value
81 *** Caught {closure:%s:%d}(): Argument #1 ($i) must be of type int, resource given, called in %s on…
109 *** Trying resource value
110 *** Caught {closure:%s:%d}(): Argument #1 ($f) must be of type float, resource given, called in %s …
138 *** Trying resource value
139 *** Caught {closure:%s:%d}(): Argument #1 ($s) must be of type string, resource given, called in %s…
167 *** Trying resource value
168 *** Caught {closure:%s:%d}(): Argument #1 ($b) must be of type bool, resource given, called in %s o…
/php-src/ext/zend_test/tests/
H A Dgh10695_2.phpt2 GH-10695: Uncaught exception in exception handler catching resource dtor exception
11 $resource = zend_test_create_throwing_resource();
/php-src/ext/standard/tests/file/
H A Dbug39551.phpt27 resource(%d) of type (userfilter.bucket)
/php-src/ext/standard/
H A Dproc_open.c1047 static zend_result set_proc_descriptor_from_resource(zval *resource, descriptorspec_item *desc, int… in set_proc_descriptor_from_resource() argument
1050 php_stream *stream = (php_stream*)zend_fetch_resource(Z_RES_P(resource), "stream", in set_proc_descriptor_from_resource()
H A Dhttp_fopen_wrapper.c124 php_url *resource = NULL; in php_stream_url_wrap_http_ex() local
159 if (resource == NULL) { in php_stream_url_wrap_http_ex()
190 resource->port = 443; in php_stream_url_wrap_http_ex()
192 resource->port = 80; in php_stream_url_wrap_http_ex()
398 if (resource->path && ZSTR_LEN(resource->path)) { in php_stream_url_wrap_http_ex()
527 php_url_decode(ZSTR_VAL(resource->user), ZSTR_LEN(resource->user)); in php_stream_url_wrap_http_ex()
533 if (resource->pass) { in php_stream_url_wrap_http_ex()
534 php_url_decode(ZSTR_VAL(resource->pass), ZSTR_LEN(resource->pass)); in php_stream_url_wrap_http_ex()
561 if ((use_ssl && resource->port != 443 && resource->port != 0) || in php_stream_url_wrap_http_ex()
562 (!use_ssl && resource->port != 80 && resource->port != 0)) { in php_stream_url_wrap_http_ex()
[all …]
/php-src/ext/libxml/
H A Dlibxml.c702 const char *resource = NULL; in _php_libxml_external_entity_loader() local
748 resource = Z_STRVAL(retval); in _php_libxml_external_entity_loader()
786 if (resource == NULL) { in _php_libxml_external_entity_loader()
796 ret = xmlNewInputFromFile(context, resource); in _php_libxml_external_entity_loader()
/php-src/ext/phar/
H A Dstream.c62 php_url *resource; in phar_parse_url() local
94 if (resource) { in phar_parse_url()
154 return resource; in phar_parse_url()
178 if (!resource->scheme || !resource->host || !resource->path) { in phar_wrapper_open_url()
179 php_url_free(resource); in phar_wrapper_open_url()
185 php_url_free(resource); in phar_wrapper_open_url()
211 php_url_free(resource); in phar_wrapper_open_url()
309 php_url_free(resource); in phar_wrapper_open_url()
576 if (!resource->scheme || !resource->host || !resource->path) { in phar_wrapper_stat()
672 php_url *resource; in phar_wrapper_unlink() local
[all …]
/php-src/sapi/fpm/tests/
H A Dtester.inc111 * @var resource
121 * @var resource
1402 * Get file path for resource file.
1418 * Get absolute file path for the resource file used by templates.
1430 * Get relative file name for resource file used by templates.
1462 * Create a resource file.
H A Dlogreader.inc57 * @param resource $stream The actual stream.
252 * @var resource
/php-src/ext/openssl/tests/
H A Dstream_crypto_flags_003.phpt73 resource(%d) of type (stream)
74 resource(%d) of type (stream)
75 resource(%d) of type (stream)
H A Dtls_wrapper.phpt70 resource(%d) of type (stream)
72 resource(%d) of type (stream)
73 resource(%d) of type (stream)
74 resource(%d) of type (stream)
75 resource(%d) of type (stream)
H A Dtls_wrapper_with_tls_v1.3.phpt73 resource(%d) of type (stream)
75 resource(%d) of type (stream)
76 resource(%d) of type (stream)
77 resource(%d) of type (stream)
78 resource(%d) of type (stream)
79 resource(%d) of type (stream)
H A Dtlsv1.3_wrapper.phpt59 resource(%d) of type (stream)
/php-src/ext/spl/
H A Dspl_directory.c548 zval *resource = NULL; in spl_filesystem_object_create_type() local
551 &open_mode, &use_include_path, &resource) == FAILURE in spl_filesystem_object_create_type()
573 intern->u.file.zcontext = resource; in spl_filesystem_object_create_type()
/php-src/ext/dom/tests/
H A DDOMDocument_schemaValidateSource_error1.phpt26 Warning: DOMDocument::schemaValidateSource(): Failed to parse the XML resource 'in_memory_buffer'. …
H A DDOMDocument_schemaValidate_error1.phpt26 Warning: DOMDocument::schemaValidate(): Failed to parse the XML resource '%sbook-not-a-schema.xsd'.…
H A DDOMDocument_schemaValidate_error5.phpt22 Warning: DOMDocument::schemaValidate(): Failed to locate the main schema resource at '%snon-existen…
/php-src/ext/intl/tests/
H A Dresourcebundle_arrayaccess.phpt57 2: Cannot load resource element 'nonexisting': U_MISSING_RESOURCE_ERROR
/php-src/ext/posix/
H A Dposix_arginfo.h143 ZEND_ARG_TYPE_INFO_WITH_DEFAULT_VALUE(0, resource, IS_LONG, 1, "null")
149 ZEND_ARG_TYPE_INFO(0, resource, IS_LONG, 0)

Completed in 58 milliseconds

12345678910>>...25