Searched refs:fault (Results 1 – 25 of 155) sorted by relevance
1234567
/PHP-8.2/ext/soap/tests/ |
H A D | fault_warning.phpt | 20 $fault = new SoapFault("Sender", "message"); 21 echo get_class($fault) . "\n"; 22 $fault = new SoapFault(null, "message"); 23 echo get_class($fault) . "\n"; 37 $fault = new SoapFault(["more-ns", "Sender"], "message"); // two given 38 echo get_class($fault); 42 SoapFault::__construct(): Argument #1 ($code) is not a valid fault code 46 SoapFault::__construct(): Argument #1 ($code) is not a valid fault code 47 SoapFault::__construct(): Argument #1 ($code) is not a valid fault code
|
H A D | server016.phpt | 2 SOAP Server 16: user fault 9 $server->fault("MyFault","My fault string"); 34 …AP-ENV:Body><SOAP-ENV:Fault><faultcode>MyFault</faultcode><faultstring>My fault string</faultstrin…
|
H A D | fault001.phpt | 8 $fault = new SoapFault("code", "message"); 9 var_dump(is_soap_fault($fault));
|
H A D | server017.phpt | 2 SOAP Server 17: user fault (through return) 8 return new SoapFault("MyFault","My fault string"); 33 …AP-ENV:Body><SOAP-ENV:Fault><faultcode>MyFault</faultcode><faultstring>My fault string</faultstrin…
|
H A D | server018.phpt | 2 SOAP Server 18: user fault (through throw) 8 throw new SoapFault("MyFault","My fault string"); 33 …AP-ENV:Body><SOAP-ENV:Fault><faultcode>MyFault</faultcode><faultstring>My fault string</faultstrin…
|
H A D | server022.phpt | 2 SOAP Server 22: user fault (through throw of subclass) 9 parent::__construct("MyFault","My fault string"); 40 …AP-ENV:Body><SOAP-ENV:Fault><faultcode>MyFault</faultcode><faultstring>My fault string</faultstrin…
|
/PHP-8.2/Zend/tests/ |
H A D | bug43128.phpt | 15 if ($a instanceof $a); // Segmentation fault 16 new $a; // Segmentation fault
|
H A D | bug64677.phpt | 11 $cat->show_output('Files: ', `cd .`); // this causes a segmentation fault 12 $cat->show_output(`cd .`); // this causes a segmentation fault
|
/PHP-8.2/ext/soap/tests/bugs/ |
H A D | bug38005.phpt | 10 return new SoapFault('Test', 'This is our fault: �'); 43 This is our fault: � 45 …e><env:Value>Test</env:Value></env:Code><env:Reason><env:Text>This is our fault: Ä</env:Text></env…
|
/PHP-8.2/ext/soap/ |
H A D | php_packet_soap.c | 26 xmlNodePtr trav, env, head, body, resp, cur, fault; in parse_packet_soap() local 177 fault = get_node_ex(body->children,"Fault",envelope_ns); in parse_packet_soap() 178 if (fault != NULL) { in parse_packet_soap() 186 tmp = get_node(fault->children, "faultcode"); in parse_packet_soap() 191 tmp = get_node(fault->children, "faultstring"); in parse_packet_soap() 198 tmp = get_node(fault->children, "faultactor"); in parse_packet_soap() 205 tmp = get_node(fault->children, "detail"); in parse_packet_soap() 210 tmp = get_node(fault->children, "Code"); in parse_packet_soap() 218 tmp = get_node(fault->children,"Reason"); in parse_packet_soap() 229 tmp = get_node(fault->children,"Detail"); in parse_packet_soap()
|
/PHP-8.2/ext/pcre/tests/ |
H A D | gh10968.phpt | 2 GH-10968: preg_replace_callback_array() segmentation fault
|
/PHP-8.2/ext/mbstring/tests/ |
H A D | gh9248.phpt | 2 Bug GH-9248 (Segmentation fault in mb_strimwidth())
|
H A D | bug76319.phpt | 2 Bug #76319: mb_strtolower with invalid UTF-8 causes segmentation fault
|
/PHP-8.2/ext/opcache/tests/jit/ |
H A D | gh15658.phpt | 2 GH-15658 (Segmentation fault in Zend/zend_vm_execute.h)
|
/PHP-8.2/ext/xml/tests/ |
H A D | bug72099.phpt | 2 Bug #72099: xml_parse_into_struct segmentation fault
|
/PHP-8.2/ext/opcache/tests/ |
H A D | bug73654.phpt | 2 Bug #73654: Segmentation fault in zend_call_function
|
H A D | issue0128.phpt | 2 ISSUE #128 (opcache_invalidate segmentation fault)
|
H A D | bug76337.phpt | 2 Bug 76337: segmentation fault when an extension use zend_register_class_alias() and opcache enabled
|
/PHP-8.2/ext/json/tests/ |
H A D | bug42090.phpt | 2 Bug #42090 (json_decode causes segmentation fault)
|
/PHP-8.2/ext/standard/tests/general_functions/ |
H A D | bug76643.phpt | 2 Bug #76643 (Segmentation fault when using `output_add_rewrite_var`)
|
/PHP-8.2/ext/intl/tests/ |
H A D | bug78804.phpt | 2 Bug #78804: Segmentation fault in Locale::filterMatches
|
/PHP-8.2/ext/standard/tests/streams/ |
H A D | bug72221.phpt | 2 Bug #72221 (Segmentation fault in stream_get_line / zend_memnstr_ex)
|
/PHP-8.2/ext/standard/tests/array/ |
H A D | bug51552.phpt | 2 Bug #51552 (debug_backtrace() causes segmentation fault and/or memory issues)
|
/PHP-8.2/ext/spl/tests/ |
H A D | bug62616.phpt | 2 Bug #62616 (ArrayIterator::count() from IteratorIterator instance gives Segmentation fault)
|
/PHP-8.2/ext/simplexml/tests/ |
H A D | gh16808.phpt | 2 GH-16808 (Segmentation fault in RecursiveIteratorIterator->current() with a xml element input)
|
Completed in 23 milliseconds
1234567