/PHP-8.3/main/streams/ |
H A D | filter.c | 290 if (chain->head) { in php_stream_filter_prepend_ex() 293 chain->tail = filter; in php_stream_filter_prepend_ex() 295 chain->head = filter; in php_stream_filter_prepend_ex() 296 filter->chain = chain; in php_stream_filter_prepend_ex() 312 if (chain->tail) { in php_stream_filter_append_ex() 317 chain->tail = filter; in php_stream_filter_append_ex() 318 filter->chain = chain; in php_stream_filter_append_ex() 389 chain->head = NULL; in _php_stream_filter_append() 390 chain->tail = NULL; in _php_stream_filter_append() 408 if (!filter->chain || !filter->chain->stream) { in _php_stream_filter_flush() [all …]
|
H A D | php_stream_filter_api.h | 112 php_stream_filter_chain *chain; member 123 PHPAPI void _php_stream_filter_prepend(php_stream_filter_chain *chain, php_stream_filter *filter); 124 PHPAPI int php_stream_filter_prepend_ex(php_stream_filter_chain *chain, php_stream_filter *filter); 125 PHPAPI void _php_stream_filter_append(php_stream_filter_chain *chain, php_stream_filter *filter); 126 PHPAPI int php_stream_filter_append_ex(php_stream_filter_chain *chain, php_stream_filter *filter); 134 #define php_stream_filter_prepend(chain, filter) _php_stream_filter_prepend((chain), (filter)) argument 135 #define php_stream_filter_append(chain, filter) _php_stream_filter_append((chain), (filter)) argument
|
/PHP-8.3/Zend/tests/ |
H A D | oss-fuzz-69765.phpt | 2 OSS-Fuzz #69765: yield reference to nullsafe chain 10 Fatal error: Cannot take reference of a nullsafe chain in %s on line %d
|
H A D | oss_fuzz_60011_1.phpt | 8 Fatal error: Cannot take reference of a nullsafe chain in %s on line %d
|
H A D | oss_fuzz_60011_2.phpt | 8 Fatal error: Cannot take reference of a nullsafe chain in %s on line %d
|
/PHP-8.3/Zend/tests/traits/ |
H A D | bug55355.phpt | 15 // inheritance chain 23 // inheritance chain
|
/PHP-8.3/ext/opcache/tests/ |
H A D | qm_assign_unlink_use_chain.phpt | 2 Don't try to unlink use chain of QM_ASSIGN without result use
|
/PHP-8.3/Zend/tests/nullsafe_operator/ |
H A D | 009.phpt | 11 Fatal error: Cannot take reference of a nullsafe chain in %s.php on line 4
|
H A D | 017.phpt | 12 Fatal error: Cannot take reference of a nullsafe chain in %s.php on line 4
|
H A D | 010.phpt | 11 Fatal error: Cannot take reference of a nullsafe chain in %s.php on line 4
|
H A D | 027.phpt | 2 Test nullsafe in sub-chain of function argument
|
H A D | 028.phpt | 2 Test nullsafe in sub-chain of return as ref
|
H A D | 020.phpt | 2 Test nullsafe lhs of assignment to nested property chain
|
H A D | 026.phpt | 2 Nullsafe chain in static property / method name
|
/PHP-8.3/Zend/tests/generators/ |
H A D | gc_with_root_parent_mismatch.phpt | 2 Generator GC when the yield from parent chain does not reach the root
|
/PHP-8.3/ext/standard/tests/class_object/ |
H A D | forward_static_call_003.phpt | 2 forward_static_call() calling outside of the inheritance chain.
|
/PHP-8.3/ext/spl/tests/ |
H A D | class_uses_basic2.phpt | 16 /** There is no semantics for traits in the inheritance chain.
|
/PHP-8.3/Zend/asm/ |
H A D | make_ppc32_sysv_xcoff_gas.S | 86 # set back-chain to zero
|
H A D | make_ppc64_sysv_xcoff_gas.S | 98 # set back-chain to zero
|
H A D | make_i386_ms_pe_masm.asm | 85 ; traverse current seh chain to get the last exception handler installed by Windows 87 ; the exception handler chain is tested for the presence of ntdll.dll!FinalExceptionHandler
|
H A D | make_ppc32_sysv_elf_gas.S | 79 # set back-chain to zero
|
H A D | make_ppc64_sysv_elf_gas.S | 124 # set back-chain to zero
|
/PHP-8.3/ext/openssl/tests/ |
H A D | gh9310.phpt | 176 PHP Warning: stream_socket_accept(): Failed setting local cert chain file `%ssni_server_cs.pem'; f… 184 PHP Warning: stream_socket_accept(): Failed setting local cert chain file `%ssni_server_us_cert.pe…
|
/PHP-8.3/ext/openssl/ |
H A D | xp_ssl.c | 1875 STACK_OF(X509) *chain; in php_openssl_capture_peer_certs() 1877 chain = SSL_get_peer_cert_chain(sslsock->ssl_handle); in php_openssl_capture_peer_certs() 1879 if (chain && sk_X509_num(chain) > 0) { in php_openssl_capture_peer_certs() 1883 for (i = 0; i < sk_X509_num(chain); i++) { in php_openssl_capture_peer_certs() 1884 X509 *mycert = X509_dup(sk_X509_value(chain, i)); in php_openssl_capture_peer_certs()
|
/PHP-8.3/ext/mbstring/tests/ |
H A D | mb_decode_numericentity.phpt | 130 // because some text encodings did not properly invoke the next flush function in the chain
|