/php-src/pear/ |
H A D | fetch.php | 9 …_callback($notification_code, $severity, $message, $message_code, $bytes_transferred, $bytes_max) { argument 30 $filesize = $bytes_max;
|
/php-src/ext/standard/tests/http/ |
H A D | gh8641.phpt | 11 …on_callback($notification_code, $severity, $message, $message_code, $bytes_transferred, $bytes_max) 14 echo $notification_code, ' ', $bytes_transferred, ' ', $bytes_max, PHP_EOL;
|
H A D | gh15034.phpt | 29 int $bytes_max 32 $max = $bytes_max;
|
H A D | bug47021.phpt | 11 …_callback($notification_code, $severity, $message, $message_code, $bytes_transferred, $bytes_max) { 18 echo "Size=$bytes_max\n";
|
H A D | bug69337.phpt | 11 …on_callback($notification_code, $severity, $message, $message_code, $bytes_transferred, $bytes_max)
|
/php-src/ext/fileinfo/libmagic/ |
H A D | compress.c | 314 urv = uncompressbuf(fd, ms->bytes_max, i, in file_zmagic() 603 return uncompresszlib(old, newch, bytes_max, n, 0); in uncompressgzipped() 610 size_t bytes_max, size_t *n, int zlib) in uncompresszlib() argument 619 z.avail_out = CAST(unsigned int, bytes_max); in uncompresszlib() 666 bz.avail_out = CAST(unsigned int, bytes_max); in uncompressbzlib() 707 xz.avail_out = CAST(unsigned int, bytes_max); in uncompressxzlib() 752 out.size = bytes_max; in uncompresszstd() 780 size_t new_remaining = bytes_max; in uncompresslzlib() 1069 *newch = CAST(unsigned char *, emalloc(bytes_max + 1)); in uncompressbuf() 1078 return (*decompress)(old, newch, bytes_max, n, 1); in uncompressbuf() [all …]
|
H A D | magic.c | 212 if ((buf = CAST(unsigned char *, emalloc(ms->bytes_max + SLOP))) == NULL) in file_or_stream() 251 if ((nbytes = php_stream_read(stream, (char *)buf, ms->bytes_max - nbytes)) < 0) { in file_or_stream() 361 ms->bytes_max = *CAST(const size_t *, val); in magic_setparam() 400 *CAST(size_t *, val) = ms->bytes_max; in magic_getparam()
|
H A D | file.h | 483 size_t bytes_max; /* number of bytes to read from file */ member
|
H A D | apprentice.c | 583 ms->bytes_max = FILE_BYTES_MAX; in file_ms_alloc()
|
/php-src/ext/standard/tests/streams/ |
H A D | gh10031.phpt | 36 …t_params($context, ['notification' => function ($code, $s, $m, $mc, $bytes_transferred, $bytes_max) 38 if ($code === STREAM_NOTIFY_FILE_SIZE_IS) echo "expected filesize=$bytes_max".PHP_EOL;
|
/php-src/main/streams/ |
H A D | php_stream_context.h | 23 size_t bytes_sofar, size_t bytes_max, 85 char *xmsg, int xcode, size_t bytes_sofar, size_t bytes_max, void * ptr);
|
H A D | streams.c | 2360 char *xmsg, int xcode, size_t bytes_sofar, size_t bytes_max, void * ptr) argument 2363 context->notifier->func(context, notifycode, severity, xmsg, xcode, bytes_sofar, bytes_max, ptr);
|
/php-src/ext/fileinfo/ |
H A D | libmagic.patch | 1251 urv = uncompressbuf(fd, ms->bytes_max, i, 1324 - *newch = CAST(unsigned char *, malloc(bytes_max + 1)); 1325 + *newch = CAST(unsigned char *, emalloc(bytes_max + 1)); 2562 - if ((buf = CAST(unsigned char *, malloc(ms->bytes_max + SLOP))) == NULL) 2563 + if ((buf = CAST(unsigned char *, emalloc(ms->bytes_max + SLOP))) == NULL) 2629 * try looking at the first ms->bytes_max bytes 2636 - CAST(size_t, ms->bytes_max - nbytes), 1)) > 0) { 2656 - ms->bytes_max; 2665 + if ((nbytes = php_stream_read(stream, (char *)buf, ms->bytes_max - nbytes)) < 0) {
|
/php-src/ext/standard/ |
H A D | streamsfuncs.c | 877 char *xmsg, int xcode, size_t bytes_sofar, size_t bytes_max, void * ptr) in user_space_stream_notifier() argument 893 ZVAL_LONG(&zvs[5], bytes_max); in user_space_stream_notifier()
|