Home
last modified time | relevance | path

Searched refs:bytes_max (Results 1 – 13 of 13) sorted by relevance

/PHP-8.1/ext/fileinfo/libmagic/
H A Dcompress.c527 size_t bytes_max, size_t *n) in uncompressgzipped() argument
555 return uncompresszlib(old, newch, bytes_max, n, 0); in uncompressgzipped()
562 size_t bytes_max, size_t *n, int zlib) in uncompresszlib() argument
573 z.avail_out = CAST(unsigned int, bytes_max); in uncompresszlib()
606 size_t bytes_max, size_t *n) in uncompressbzlib() argument
622 bz.avail_out = CAST(unsigned int, bytes_max); in uncompressbzlib()
649 size_t bytes_max, size_t *n) in uncompressxzlib() argument
665 xz.avail_out = CAST(unsigned int, bytes_max); in uncompressxzlib()
827 return uncompressgzipped(old, newch, bytes_max, n); in uncompressbuf()
833 return uncompressbzlib(old, newch, bytes_max, n); in uncompressbuf()
[all …]
H A Dmagic.c203 if ((buf = CAST(unsigned char *, emalloc(ms->bytes_max + SLOP))) == NULL) in file_or_stream()
242 if ((nbytes = php_stream_read(stream, (char *)buf, ms->bytes_max - nbytes)) < 0) { in file_or_stream()
349 ms->bytes_max = *CAST(const size_t *, val); in magic_setparam()
385 *CAST(size_t *, val) = ms->bytes_max; in magic_getparam()
H A Dascmagic.c210 if (seen_cr && nbytes < ms->bytes_max) in file_ascmagic_with_encoding()
H A Dfile.h458 size_t bytes_max; /* number of bytes to read from file */ member
H A Dapprentice.c537 ms->bytes_max = FILE_BYTES_MAX; in file_ms_alloc()
/PHP-8.1/pear/
H A Dfetch.php9 …_callback($notification_code, $severity, $message, $message_code, $bytes_transferred, $bytes_max) { argument
30 $filesize = $bytes_max;
/PHP-8.1/ext/standard/tests/streams/
H A Dgh10031.phpt36 …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-8.1/ext/standard/tests/http/
H A Dbug47021.phpt11 …_callback($notification_code, $severity, $message, $message_code, $bytes_transferred, $bytes_max) {
18 echo "Size=$bytes_max\n";
H A Dbug69337.phpt11 …on_callback($notification_code, $severity, $message, $message_code, $bytes_transferred, $bytes_max)
/PHP-8.1/main/streams/
H A Dphp_stream_context.h23 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 Dstreams.c2204 char *xmsg, int xcode, size_t bytes_sofar, size_t bytes_max, void * ptr) argument
2207 context->notifier->func(context, notifycode, severity, xmsg, xcode, bytes_sofar, bytes_max, ptr);
/PHP-8.1/ext/fileinfo/
H A Dlibmagic.patch1423 - if ((*newch = CAST(unsigned char *, malloc(bytes_max + 1))) == NULL)
1424 + if ((*newch = CAST(unsigned char *, emalloc(bytes_max + 1))) == NULL)
2733 - if ((buf = CAST(unsigned char *, malloc(ms->bytes_max + SLOP))) == NULL)
2734 + if ((buf = CAST(unsigned char *, emalloc(ms->bytes_max + SLOP))) == NULL)
2802 * try looking at the first ms->bytes_max bytes
2809 - CAST(size_t, ms->bytes_max - nbytes), 1)) > 0) {
2829 - ms->bytes_max;
2838 + if ((nbytes = php_stream_read(stream, (char *)buf, ms->bytes_max - nbytes)) < 0) {
/PHP-8.1/ext/standard/
H A Dstreamsfuncs.c876 char *xmsg, int xcode, size_t bytes_sofar, size_t bytes_max, void * ptr) in user_space_stream_notifier() argument
892 ZVAL_LONG(&zvs[5], bytes_max); in user_space_stream_notifier()

Completed in 74 milliseconds