Lines Matching refs:dest
141 function copy_text_file($source, $dest) argument
145 $fp = fopen($dest, "w");
193 $dest = fopen($destfilename, 'wb');
194 $x = stream_copy_to_stream($fp, $dest, $hdr['size']);
195 fclose($dest);
245 foreach ($text_files as $src => $dest) {
246 copy_text_file($src, $dist_dir . '/' . $dest);
254 foreach ($general_files as $src => $dest) {
255 copy($src, $dist_dir . '/' . $dest);
353 function copy_dir($source, $dest) argument
355 if (!is_dir($dest)) {
356 if (!mkdir($dest)) {
367 $fd = $dest . '/' . $f;
379 function copy_test_dir($directory, $dest) argument
386 if (!is_dir($dest . '/tests')) {
387 mkdir($dest . '/tests', 0775, true);
389 copy_dir($directory, $dest . '/tests/');
405 if (!is_dir($dest . '/' . $full_path)) {
406 mkdir($dest . '/' . $full_path , 0775, true);
408 copy_dir($full_path, $dest . '/' . $full_path . '/');
411 copy_test_dir($full_path, $dest);