Searched refs:file_size (Results 1 - 4 of 4) sorted by relevance
| /PHP_5_5/ext/standard/tests/file/ |
| H A D | file.inc | 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 [all...] |
| /PHP_5_5/ext/standard/ |
| H A D | ftp_fopen_wrapper.c | 423 size_t file_size = 0; local 493 file_size = atoi(sizestr); 494 php_stream_notify_file_size(context, file_size, tmp_line, result); 573 php_stream_notify_progress_init(context, 0, file_size);
|
| H A D | http_fopen_wrapper.c | 104 size_t chunk_size = 0, file_size = 0; local 748 file_size = atoi(http_header_line + 16); 749 php_stream_notify_file_size(context, file_size, http_header_line, 0); 897 php_stream_notify_progress_init(context, 0, file_size);
|
| /PHP_5_5/main/streams/ |
| H A D | php_stream_context.h | 112 #define php_stream_notify_file_size(context, file_size, xmsg, xcode) do { if ((context) && (context)->notifier) { \ 114 (xmsg), (xcode), 0, (file_size), NULL TSRMLS_CC); } } while(0)
|
Completed in 6 milliseconds