Lines Matching refs:file_size
42 "text" = fills with string of size $file_size
43 "numeric" = fills with numeric value of size $file_size
83 Function : bool fill_file(resource $file_handle, string $fill_type, string $file_size);
87 "text" = fills with string of size $file_size
88 "numeric" = fills with numeric value of size $file_size
95 function fill_file($file_handle, $fill_type, $file_size) {
122 $size = $file_size;
140 $bytes_written = fwrite($file_handle, $num_values, $file_size);
141 if ( $bytes_written != $file_size ) {
257 $file_size = $size;
259 $file_size = $file_size * 1024;
293 if( fill_file($file_handle, $content_type, $file_size) )