Home
last modified time | relevance | path

Searched refs:operation (Results 1 – 25 of 156) sorted by relevance

1234567

/PHP-5.5/ext/standard/
H A Dflock_compat.c41 PHPAPI int flock(int fd, int operation) in flock() argument
43 return php_flock(fd, operation); in flock()
47 PHPAPI int php_flock(int fd, int operation) in php_flock() argument
56 if (operation & LOCK_SH) in php_flock()
58 else if (operation & LOCK_EX) in php_flock()
60 else if (operation & LOCK_UN) in php_flock()
67 ret = fcntl(fd, operation & LOCK_NB ? F_SETLK : F_SETLKW, &flck); in php_flock()
69 if (operation & LOCK_NB && ret == -1 && in php_flock()
136 switch (operation & ~LOCK_NB) { /* translate to LockFileEx() op */
139 ((operation & LOCK_NB) ? LOCKFILE_FAIL_IMMEDIATELY : 0),
[all …]
/PHP-5.5/ext/soap/tests/bugs/
H A Dbug40609.wsdl26operation name="update"><wsdl:input xmlns:wsaw="http://www.w3.org/2006/05/addressing/wsdl" message…
H A Dbug29795.wsdl18 <operation name="GetPrice">
21 </operation>
25 <operation name="GetPrice">
26 <soap:operation soapAction="http://soap.amazon.com"/>
33 </operation>
H A Dbug29839.wsdl20 <operation name="EchoString">
23 </operation>
27 <operation name="EchoString">
28 <soap:operation soapAction="http://test-uri"/>
35 </operation>
H A Dbug34453.wsdl20 <operation name="EchoString">
23 </operation>
27 <operation name="EchoString">
28 <soap:operation soapAction="http://test-uri"/>
35 </operation>
H A Dbug29061.wsdl19 <operation name="getQuote">
22 </operation>
27 <operation name="getQuote">
34 </operation>
/PHP-5.5/ext/standard/tests/file/
H A Dcopy_variation2-win32.phpt60 echo "Copy operation => ";
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 =>
138 Copy operation => bool(true)
145 Copy operation => bool(true)
159 Copy operation =>
[all …]
H A Dcopy_variation2.phpt62 echo "Copy operation => ";
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)
155 Copy operation => bool(true)
[all …]
H A Dcopy_variation1.phpt36 echo "Size of the source file before copy operation => ";
47 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)
[all …]
H A Dcopy_variation18.phpt10 /* Test copy(): checking stat of file before and after after copy operation */
29 echo "Copy operation => ";
40 echo "Comparing the stats of file before and after copy operation => ";
54 Copy operation => bool(true)
55 Comparing the stats of file before and after copy operation => bool(true)
H A Dcopy_variation11.phpt23 echo "Size of source before copy operation => ";
26 echo "Size of destination before copy operation => ";
30 echo "\n-- Now applying copy() operation --\n";
56 Size of source before copy operation => int(300)
57 Size of destination before copy operation => int(%d)
59 -- Now applying copy() operation --
H A D007_variation10.phpt34 var_dump( fread($file_handle, 100) ); //Check for read operation
35 var_dump( ftell($file_handle) ); //File pointer position after read operation, expected at the end…
36 var_dump( fwrite($file_handle, $string) ); //Check for write operation; passes; expected:size of t…
37 var_dump( ftell($file_handle) ); //File pointer position after write operation, expected at the en…
38 var_dump( fclose($file_handle) ); //Check for close operation on the file handle
39 var_dump( get_resource_type($file_handle) ); //Check whether resource is lost after close operation
H A D007_variation18.phpt34 var_dump( fread($file_handle, 100) ); //Check for read operation
35 var_dump( ftell($file_handle) ); //File pointer position after read operation, expected at the end…
36 var_dump( fwrite($file_handle, $string) ); //Check for write operation; passes; expected:size of t…
37 var_dump( ftell($file_handle) ); //File pointer position after write operation, expected at the en…
38 var_dump( fclose($file_handle) ); //Check for close operation on the file handle
39 var_dump( get_resource_type($file_handle) ); //Check whether resource is lost after close operation
H A D007_variation2.phpt34 var_dump( fread($file_handle, 100) ); //Check for read operation
35 var_dump( ftell($file_handle) ); //File pointer position after read operation, expected at the end…
36 var_dump( fwrite($file_handle, $string) ); //Check for write operation; passes; expected:size of t…
37 var_dump( ftell($file_handle) ); //File pointer position after write operation, expected at the en…
38 var_dump( fclose($file_handle) ); //Check for close operation on the file handle
39 var_dump( get_resource_type($file_handle) ); //Check whether resource is lost after close operation
H A Dcopy_variation3-win32.phpt36 echo "Size of the source file before copy operation => ";
47 echo "Copy operation => ";
81 Size of the source file before copy operation => int(1500)
85 Copy operation => bool(true)
92 Copy operation => bool(true)
99 Copy operation =>
105 Copy operation =>
H A Dflock_error.phpt6 Prototype: bool flock(resource $handle, int $operation [, int &$wouldblock]);
30 foreach($operations as $operation) {
32 var_dump(flock($fp, $operation));
62 Warning: flock(): Illegal operation argument in %s on line %d
66 Warning: flock(): Illegal operation argument in %s on line %d
70 Warning: flock(): Illegal operation argument in %s on line %d
74 Warning: flock(): Illegal operation argument in %s on line %d
H A D007_variation15.phpt32 var_dump( fwrite($file_handle, $string) ); //Check for write operation; passes; expected:size of t…
33 var_dump( ftell($file_handle) ); //File pointer position after write operation, expected at the en…
35 var_dump( fread($file_handle, 100) ); //Check for read operation; fails; expected: empty string
36 var_dump( ftell($file_handle) ); //File pointer position after read operation, expected at the beg…
37 var_dump( fclose($file_handle) ); //Check for close operation on the file handle
38 var_dump( get_resource_type($file_handle) ); //Check whether resource is lost after close operation
H A D007_variation23.phpt32 var_dump( fwrite($file_handle, $string) ); //Check for write operation; passes; expected:size of t…
33 var_dump( ftell($file_handle) ); //File pointer position after write operation, expected at the en…
35 var_dump( fread($file_handle, 100) ); //Check for read operation; fails; expected: empty string
36 var_dump( ftell($file_handle) ); //File pointer position after read operation, expected at the beg…
37 var_dump( fclose($file_handle) ); //Check for close operation on the file handle
38 var_dump( get_resource_type($file_handle) ); //Check whether resource is lost after close operation
H A D007_variation7.phpt32 var_dump( fwrite($file_handle, $string) ); //Check for write operation; passes; expected:size of t…
33 var_dump( ftell($file_handle) ); //File pointer position after write operation, expected at the en…
35 var_dump( fread($file_handle, 100) ); //Check for read operation; fails; expected: empty string
36 var_dump( ftell($file_handle) ); //File pointer position after read operation, expected at the beg…
37 var_dump( fclose($file_handle) ); //Check for close operation on the file handle
38 var_dump( get_resource_type($file_handle) ); //Check whether resource is lost after close operation
H A D007_variation8.phpt32 var_dump( fwrite($file_handle, $string) ); //Check for write operation; passes; expected:size of t…
33 var_dump( ftell($file_handle) ); //File pointer position after write operation, expected at the en…
35 var_dump( fread($file_handle, 100) ); //Check for read operation; passes; expected: content of the…
36 var_dump( ftell($file_handle) ); //File pointer position after read operation, expected at the end…
37 var_dump( fclose($file_handle) ); //Check for close operation on the file handle
38 var_dump( get_resource_type($file_handle) ); //Check whether resource is lost after close operation
H A Dcopy_variation3.phpt36 echo "Size of the source file before copy operation => ";
47 echo "Copy operation => ";
80 Size of the source file before copy operation => int(1500)
84 Copy operation => bool(true)
91 Copy operation => bool(true)
98 Copy operation => bool(true)
105 Copy operation => bool(true)
H A Dcopy_variation6.phpt51 echo "Copy operation => ";
88 Copy operation => bool(true)
95 Copy operation => bool(true)
102 Copy operation => bool(true)
109 Copy operation => bool(true)
116 Copy operation => bool(true)
123 Copy operation => bool(true)
130 Copy operation => bool(true)
137 Copy operation => bool(true)
H A Dcopy_variation16-win32.phpt56 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 => bool(true)
126 Copy operation => bool(true)
133 Copy operation =>
140 Copy operation => bool(true)
/PHP-5.5/ext/soap/tests/
H A Dclassmap.wsdl25 <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 Dbug68361.phpt51 <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>

Completed in 68 milliseconds

1234567