/PHP-8.0/ext/standard/ |
H A D | flock_compat.c | 22 PHPAPI int flock(int fd, int operation) in flock() argument 24 return php_flock(fd, operation); in flock() 28 PHPAPI int php_flock(int fd, int operation) in php_flock() argument 37 if (operation & LOCK_SH) in php_flock() 39 else if (operation & LOCK_EX) in php_flock() 41 else if (operation & LOCK_UN) in php_flock() 48 ret = fcntl(fd, operation & LOCK_NB ? F_SETLK : F_SETLKW, &flck); in php_flock() 50 if ((operation & LOCK_NB) && ret == -1 && in php_flock() 117 switch (operation & ~LOCK_NB) { /* translate to LockFileEx() op */ 120 ((operation & LOCK_NB) ? LOCKFILE_FAIL_IMMEDIATELY : 0), [all …]
|
/PHP-8.0/ext/soap/tests/bugs/ |
H A D | bug40609.wsdl | 26 …operation name="update"><wsdl:input xmlns:wsaw="http://www.w3.org/2006/05/addressing/wsdl" message…
|
H A D | bug29795.wsdl | 18 <operation name="GetPrice"> 21 </operation> 25 <operation name="GetPrice"> 26 <soap:operation soapAction="http://soap.amazon.com"/> 33 </operation>
|
H A D | bug29839.wsdl | 20 <operation name="EchoString"> 23 </operation> 27 <operation name="EchoString"> 28 <soap:operation soapAction="http://test-uri"/> 35 </operation>
|
H A D | bug34453.wsdl | 20 <operation name="EchoString"> 23 </operation> 27 <operation name="EchoString"> 28 <soap:operation soapAction="http://test-uri"/> 35 </operation>
|
H A D | bug29061.wsdl | 19 <operation name="getQuote"> 22 </operation> 27 <operation name="getQuote"> 34 </operation>
|
/PHP-8.0/ext/standard/tests/file/ |
H A D | flock_error.phpt | 31 foreach($operations as $operation) { 34 var_dump(flock($fp, $operation)); 59 flock(): Argument #2 ($operation) must be one of LOCK_SH, LOCK_EX, or LOCK_UN 61 flock(): Argument #2 ($operation) must be one of LOCK_SH, LOCK_EX, or LOCK_UN 63 flock(): Argument #2 ($operation) must be one of LOCK_SH, LOCK_EX, or LOCK_UN 65 flock(): Argument #2 ($operation) must be one of LOCK_SH, LOCK_EX, or LOCK_UN 67 flock(): Argument #2 ($operation) must be of type int, array given 69 flock(): Argument #2 ($operation) must be of type int, array given 71 flock(): Argument #2 ($operation) must be of type int, string given 73 flock(): Argument #2 ($operation) must be of type int, string given [all …]
|
H A D | copy_variation2.phpt | 57 echo "Copy operation => "; 92 Copy operation => bool(true) 99 Copy operation => bool(true) 106 Copy operation => bool(true) 113 Copy operation => bool(true) 120 Copy operation => bool(true) 127 Copy operation => bool(true) 134 Copy operation => bool(true) 141 Copy operation => bool(true) 148 Copy operation => bool(true) [all …]
|
H A D | copy_variation2-win32-mb.phpt | 55 echo "Copy operation => "; 91 Copy operation => bool(true) 98 Copy operation => bool(true) 105 Copy operation => bool(true) 112 Copy operation => bool(true) 119 Copy operation => 125 Copy operation => 131 Copy operation => bool(true) 138 Copy operation => bool(true) 152 Copy operation => [all …]
|
H A D | copy_variation2-win32.phpt | 55 echo "Copy operation => "; 91 Copy operation => bool(true) 98 Copy operation => bool(true) 105 Copy operation => bool(true) 112 Copy operation => bool(true) 119 Copy operation => 125 Copy operation => 131 Copy operation => bool(true) 138 Copy operation => bool(true) 152 Copy operation => [all …]
|
H A D | copy_variation1.phpt | 31 echo "Size of the source file before copy operation => "; 42 echo "Copy operation => "; 77 Copy operation => bool(true) 84 Copy operation => bool(true) 91 Copy operation => bool(true) 98 Copy operation => bool(true) 105 Copy operation => bool(true) 112 Copy operation => bool(true) 119 Copy operation => bool(true) 126 Copy operation => bool(true) [all …]
|
H A D | copy_variation18.phpt | 5 /* Test copy(): checking stat of file before and after after copy operation */ 24 echo "Copy operation => "; 35 echo "Comparing the stats of file before and after copy operation => "; 47 Copy operation => bool(true) 48 Comparing the stats of file before and after copy operation => bool(true)
|
H A D | copy_variation11.phpt | 18 echo "Size of source before copy operation => "; 21 echo "Size of destination before copy operation => "; 25 echo "\n-- Now applying copy() operation --\n"; 49 Size of source before copy operation => int(300) 50 Size of destination before copy operation => int(%d) 52 -- Now applying copy() operation --
|
H A D | 007_variation10.phpt | 23 var_dump( fread($file_handle, 100) ); //Check for read operation 24 var_dump( ftell($file_handle) ); //File pointer position after read operation, expected at the end… 25 var_dump( fwrite($file_handle, $string) ); //Check for write operation; passes; expected:size of t… 26 var_dump( ftell($file_handle) ); //File pointer position after write operation, expected at the en… 27 var_dump( fclose($file_handle) ); //Check for close operation on the file handle 28 var_dump( get_resource_type($file_handle) ); //Check whether resource is lost after close operation
|
H A D | 007_variation18.phpt | 23 var_dump( fread($file_handle, 100) ); //Check for read operation 24 var_dump( ftell($file_handle) ); //File pointer position after read operation, expected at the end… 25 var_dump( fwrite($file_handle, $string) ); //Check for write operation; passes; expected:size of t… 26 var_dump( ftell($file_handle) ); //File pointer position after write operation, expected at the en… 27 var_dump( fclose($file_handle) ); //Check for close operation on the file handle 28 var_dump( get_resource_type($file_handle) ); //Check whether resource is lost after close operation
|
H A D | 007_variation2.phpt | 23 var_dump( fread($file_handle, 100) ); //Check for read operation 24 var_dump( ftell($file_handle) ); //File pointer position after read operation, expected at the end… 25 var_dump( fwrite($file_handle, $string) ); //Check for write operation; passes; expected:size of t… 26 var_dump( ftell($file_handle) ); //File pointer position after write operation, expected at the en… 27 var_dump( fclose($file_handle) ); //Check for close operation on the file handle 28 var_dump( get_resource_type($file_handle) ); //Check whether resource is lost after close operation
|
H A D | copy_variation3-win32.phpt | 33 echo "Size of the source file before copy operation => "; 44 echo "Copy operation => "; 76 Size of the source file before copy operation => int(1500) 80 Copy operation => bool(true) 87 Copy operation => bool(true) 94 Copy operation => 100 Copy operation =>
|
H A D | copy_variation3.phpt | 33 echo "Size of the source file before copy operation => "; 44 echo "Copy operation => "; 75 Size of the source file before copy operation => int(1500) 79 Copy operation => bool(true) 86 Copy operation => bool(true) 93 Copy operation => bool(true) 100 Copy operation => bool(true)
|
H A D | 007_variation8.phpt | 21 var_dump( fwrite($file_handle, $string) ); //Check for write operation; passes; expected:size of t… 22 var_dump( ftell($file_handle) ); //File pointer position after write operation, expected at the en… 24 var_dump( fread($file_handle, 100) ); //Check for read operation; passes; expected: content of the… 25 var_dump( ftell($file_handle) ); //File pointer position after read operation, expected at the end… 26 var_dump( fclose($file_handle) ); //Check for close operation on the file handle 27 var_dump( get_resource_type($file_handle) ); //Check whether resource is lost after close operation
|
H A D | copy_variation16.phpt | 51 echo "Copy operation => "; 84 Copy operation => bool(true) 91 Copy operation => bool(true) 98 Copy operation => bool(true) 105 Copy operation => bool(true) 112 Copy operation => bool(true) 119 Copy operation => bool(true) 126 Copy operation => bool(true) 133 Copy operation => bool(true)
|
H A D | copy_variation6-win32.phpt | 46 echo "Copy operation => "; 84 Copy operation => bool(true) 91 Copy operation => bool(true) 98 Copy operation => bool(true) 105 Copy operation => bool(true) 112 Copy operation => bool(true) 119 Copy operation => bool(true) 126 Copy operation => 132 Copy operation => bool(true)
|
H A D | copy_variation6.phpt | 46 echo "Copy operation => "; 82 Copy operation => bool(true) 89 Copy operation => bool(true) 96 Copy operation => bool(true) 103 Copy operation => bool(true) 110 Copy operation => bool(true) 117 Copy operation => bool(true) 124 Copy operation => bool(true) 131 Copy operation => bool(true)
|
H A D | copy_variation5.phpt | 29 echo "Size of the source file before copy operation => "; 40 echo "Copy operation => "; 75 Size of the source file before copy operation => int(1500) 79 Copy operation => bool(true) 86 Copy operation => bool(true) 93 Copy operation => bool(true)
|
/PHP-8.0/ext/soap/tests/ |
H A D | classmap.wsdl | 25 <operation name="dotest"> 28 </operation> 29 <operation name="dotest2"> 32 </operation> 36 <operation name="dotest"> 37 …<soap:operation soapAction="http://localhost:81/test/interface.php?class=test/dotest" style="rpc"/> 44 </operation> 45 <operation name="dotest2"> 46 …<soap:operation soapAction="http://localhost:81/test/interface.php?class=test/dotest2" style="rpc"… 53 </operation>
|
H A D | bug68361.phpt | 51 <operation name="getEmployee"> 54 </operation> 55 <operation name="getUser"> 58 </operation> 62 <operation name="getEmployee"> 63 <soap:operation soapAction="http://foo.bar/testserver/#getEmployee"/> 70 </operation> 71 <operation name="getUser"> 72 <soap:operation soapAction="http://foo.bar/testserver/#getUser"/> 79 </operation>
|