Searched refs:gzseek (Results 1 – 16 of 16) sorted by relevance
/PHP-8.0/ext/zlib/tests/ |
H A D | gzseek_basic.phpt | 2 Test function gzseek() by calling it with its expected arguments when reading 15 var_dump(gzseek( $h, 50 ) ); 21 var_dump(gzseek( $h, 100 ) ); 27 var_dump(gzseek( $h, 20 ) );
|
H A D | gzseek_variation2.phpt | 2 Test function gzseek() by calling it with SEEK_SET when reading 15 var_dump(gzseek( $h, 50, SEEK_SET ) ); 21 var_dump(gzseek( $h, 100, SEEK_SET ) ); 27 var_dump(gzseek( $h, 20, SEEK_SET ) );
|
H A D | gzseek_variation3.phpt | 2 Test function gzseek() by calling it with SEEK_CUR when reading 15 var_dump(gzseek( $h, 50, SEEK_CUR ) ); 21 var_dump(gzseek( $h, 34, SEEK_CUR ) ); 27 var_dump(gzseek( $h, -27, SEEK_CUR ) );
|
H A D | gzseek_variation6.phpt | 2 Test function gzseek() by calling it with SEEK_END when reading 19 var_dump(gzseek( $h, 0, SEEK_END ) ); 33 Warning: gzseek(): SEEK_END is not supported in %s on line %d
|
H A D | gzseek_variation7.phpt | 2 Test function gzseek() by calling it with SEEK_END when writing 21 var_dump(gzseek($h, 0, SEEK_END)); 39 Warning: gzseek(): SEEK_END is not supported in %s on line %d
|
H A D | gzseek_variation1.phpt | 2 Test function gzseek() by seeking forward in write mode 18 gzseek($h, strlen($str1) + 20);
|
H A D | gzseek_basic2.phpt | 2 Test function gzseek() by calling it with its expected arguments when writing 19 gzseek($h, strlen($str1) + 20);
|
H A D | gzseek_variation4.phpt | 2 Test function gzseek() by calling it with SEEK_SET when writing 19 gzseek($h, strlen($str1) + 20, SEEK_SET);
|
H A D | gzseek_variation5.phpt | 2 Test function gzseek() by calling it with SEEK_CUR when writing 19 gzseek($h, 20, SEEK_CUR);
|
H A D | gzreadgzwriteplain.phpt | 31 gzseek($fp, strlen($original) / 2);
|
/PHP-8.0/ext/zlib/ |
H A D | php_zlib.def | 45 gzseek
|
H A D | zlib.stub.php | 86 function gzseek($stream, int $offset, int $whence = SEEK_SET): int {} function
|
H A D | zlib_fopen_wrapper.c | 64 *newoffs = gzseek(self->gz_file, offset, whence); in php_gziop_seek()
|
H A D | zlib_arginfo.h | 188 ZEND_FALIAS(gzseek, fseek, arginfo_gzseek)
|
H A D | zlib.c | 43 #undef gzseek
|
/PHP-8.0/win32/build/ |
H A D | mkdist.php | 219 gzseek($fp, gztell($fp) + $size);
|
Completed in 23 milliseconds