Lines Matching refs:popen
2 Test popen() and pclose function: basic functionality
10 echo "*** Testing popen(): reading from the pipe ***\n";
15 $file_handle = popen(" echo $string", "r");
19 echo "*** Testing popen(): writing to the pipe ***\n";
21 // popen("sort", "w") fails if variables_order="GPCS"
35 $file_handle = popen("$sysroot/system32/sort", "w");
43 echo "*** Testing popen() and pclose(): return type ***\n";
44 $return_value_popen = popen("echo $string", "r");
53 *** Testing popen(): reading from the pipe ***
55 *** Testing popen(): writing to the pipe ***
60 *** Testing popen() and pclose(): return type ***