Home
last modified time | relevance | path

Searched refs:buflen (Results 1 – 25 of 29) sorted by relevance

12

/PHP-8.2/ext/standard/
H A Dcrypt_sha256.c57 uint32_t buflen; member
205 ctx->buflen = 0; in sha256_init_ctx()
249 if (ctx->buflen != 0) { in sha256_process_bytes()
258 ctx->buflen &= 63; in sha256_process_bytes()
524 buflen -= n; in php_sha256_crypt_r()
528 buflen -= MIN(MAX (0, buflen), (int)salt_len); in php_sha256_crypt_r()
530 if (buflen > 0) { in php_sha256_crypt_r()
532 --buflen; in php_sha256_crypt_r()
558 if (buflen <= 0) { in php_sha256_crypt_r()
609 if (buflen < needed) { in php_sha256_crypt()
[all …]
H A Dcrypt_sha512.c51 uint64_t buflen; member
232 ctx->buflen = 0; in sha512_init_ctx()
276 if (ctx->buflen != 0) { in sha512_process_bytes()
281 ctx->buflen += add; in sha512_process_bytes()
286 ctx->buflen &= 127; in sha512_process_bytes()
559 buflen -= n; in php_sha512_crypt_r()
563 buflen -= (int) MIN((size_t) MAX(0, buflen), salt_len); in php_sha512_crypt_r()
565 if (buflen > 0) { in php_sha512_crypt_r()
567 --buflen; in php_sha512_crypt_r()
605 if (buflen <= 0) { in php_sha512_crypt_r()
[all …]
H A Dphp_crypt_r.h35 extern char * php_sha512_crypt_r (const char *key, const char *salt, char *buffer, int buflen);
36 extern char * php_sha256_crypt_r (const char *key, const char *salt, char *buffer, int buflen);
H A Duser_filters.c369 add_property_stringl(return_value, "data", bucket->buf, bucket->buflen); in PHP_FUNCTION()
370 add_property_long(return_value, "datalen", bucket->buflen); in PHP_FUNCTION()
406 if (bucket->buflen != Z_STRLEN_P(pzdata)) { in php_stream_bucket_attach()
408 bucket->buflen = Z_STRLEN_P(pzdata); in php_stream_bucket_attach()
410 memcpy(bucket->buf, Z_STRVAL_P(pzdata), bucket->buflen); in php_stream_bucket_attach()
468 add_property_stringl(return_value, "data", bucket->buf, bucket->buflen); in PHP_FUNCTION()
469 add_property_long(return_value, "datalen", bucket->buflen); in PHP_FUNCTION()
H A Dexec.c121 size_t buflen, bufl = 0; in php_exec() local
143 buflen = EXEC_INPUT_BUF; in php_exec()
151 if (buflen < (bufl + (b - buf) + EXEC_INPUT_BUF)) { in php_exec()
153 buflen = bufl + EXEC_INPUT_BUF; in php_exec()
154 buf = erealloc(buf, buflen); in php_exec()
H A Dfilters.c47 php_strtr(bucket->buf, bucket->buflen, rot13_from, rot13_to, 52); in strfilter_rot13_filter()
48 consumed += bucket->buflen; in strfilter_rot13_filter()
95 php_strtr(bucket->buf, bucket->buflen, lowercase, uppercase, 26); in strfilter_toupper_filter()
96 consumed += bucket->buflen; in strfilter_toupper_filter()
123 php_strtr(bucket->buf, bucket->buflen, uppercase, lowercase, 26); in strfilter_tolower_filter()
124 consumed += bucket->buflen; in strfilter_tolower_filter()
1533 buckets_out, bucket->buf, bucket->buflen, &consumed, in strfilter_convert_filter()
1651 consumed += bucket->buflen; in consumed_filter_filter()
1867 consumed += bucket->buflen; in php_chunked_filter()
1868 bucket->buflen = php_dechunk(bucket->buf, bucket->buflen, data); in php_chunked_filter()
/PHP-8.2/main/streams/
H A Dfilter.c81 bucket->buf = pemalloc(buflen, 1); in php_stream_bucket_new()
82 memcpy(bucket->buf, buf, buflen); in php_stream_bucket_new()
83 bucket->buflen = buflen; in php_stream_bucket_new()
87 bucket->buflen = buflen; in php_stream_bucket_new()
118 memcpy(retval->buf, bucket->buf, retval->buflen); in php_stream_bucket_make_writeable()
134 (*left)->buflen = length; in php_stream_bucket_split()
140 (*right)->buflen = in->buflen - length; in php_stream_bucket_split()
369 stream->readbuflen += bucket->buflen; in php_stream_filter_append_ex()
373 stream->writepos += bucket->buflen; in php_stream_filter_append_ex()
442 flushed_size += bucket->buflen; in _php_stream_filter_flush()
[all …]
H A Dtransports.c398 PHPAPI int php_stream_xport_recvfrom(php_stream *stream, char *buf, size_t buflen, in php_stream_xport_recvfrom() argument
409 return php_stream_read(stream, buf, buflen); in php_stream_xport_recvfrom()
424 if (recvd_len > buflen) { in php_stream_xport_recvfrom()
425 recvd_len = buflen; in php_stream_xport_recvfrom()
430 buflen -= recvd_len; in php_stream_xport_recvfrom()
433 if (buflen == 0) { in php_stream_xport_recvfrom()
447 param.inputs.buflen = buflen; in php_stream_xport_recvfrom()
467 PHPAPI int php_stream_xport_sendto(php_stream *stream, const char *buf, size_t buflen, in php_stream_xport_sendto() argument
476 return php_stream_write(stream, buf, buflen); in php_stream_xport_sendto()
492 param.inputs.buflen = buflen; in php_stream_xport_sendto()
H A Dphp_stream_transport.h100 PHPAPI int php_stream_xport_recvfrom(php_stream *stream, char *buf, size_t buflen,
106 PHPAPI int php_stream_xport_sendto(php_stream *stream, const char *buf, size_t buflen,
145 size_t buflen; member
H A Dxp_socket.c253 static inline int sock_sendto(php_netstream_data_t *sock, const char *buf, size_t buflen, int flags, in sock_sendto() argument
259 ret = sendto(sock->socket, buf, XP_SOCK_BUF_SIZE(buflen), flags, addr, XP_SOCK_BUF_SIZE(addrlen)); in sock_sendto()
264 …return ((ret = send(sock->socket, buf, buflen > INT_MAX ? INT_MAX : (int)buflen, flags)) == SOCK_C… in sock_sendto()
266 return ((ret = send(sock->socket, buf, buflen, flags)) == SOCK_CONN_ERR) ? -1 : ret; in sock_sendto()
270 static inline int sock_recvfrom(php_netstream_data_t *sock, char *buf, size_t buflen, int flags, in sock_recvfrom() argument
281 ret = recvfrom(sock->socket, buf, XP_SOCK_BUF_SIZE(buflen), flags, (struct sockaddr*)&sa, &sl); in sock_recvfrom()
286 ret = buflen; in sock_recvfrom()
302 ret = recv(sock->socket, buf, XP_SOCK_BUF_SIZE(buflen), flags); in sock_recvfrom()
415 xparam->inputs.buf, xparam->inputs.buflen, in php_sockop_set_option()
436 xparam->inputs.buf, xparam->inputs.buflen, in php_sockop_set_option()
H A Dphp_stream_filter_api.h45 size_t buflen; member
66 PHPAPI php_stream_bucket *php_stream_bucket_new(php_stream *stream, char *buf, size_t buflen, uint8…
H A Dstreams.c602 if (stream->readbuf && stream->readbuflen - stream->writepos < bucket->buflen) { in _php_stream_fill_read_buffer()
610 if (stream->readbuflen - stream->writepos < bucket->buflen) { in _php_stream_fill_read_buffer()
611 stream->readbuflen += bucket->buflen; in _php_stream_fill_read_buffer()
615 if (bucket->buflen) { in _php_stream_fill_read_buffer()
616 memcpy(stream->readbuf + stream->writepos, bucket->buf, bucket->buflen); in _php_stream_fill_read_buffer()
618 stream->writepos += bucket->buflen; in _php_stream_fill_read_buffer()
1217 if (_php_stream_write_buffer(stream, bucket->buf, bucket->buflen) < 0) { in _php_stream_write_filtered()
/PHP-8.2/ext/posix/
H A Dposix.c469 buflen = 32; in PHP_FUNCTION()
473 buflen = 1; in PHP_FUNCTION()
481 buflen *= 2; in PHP_FUNCTION()
732 long buflen; in PHP_FUNCTION() local
744 buflen = 1024; in PHP_FUNCTION()
748 buflen = 1; in PHP_FUNCTION()
757 buflen *= 2; in PHP_FUNCTION()
872 long buflen; in PHP_FUNCTION() local
884 buflen = 1024; in PHP_FUNCTION()
888 buflen = 1; in PHP_FUNCTION()
[all …]
/PHP-8.2/sapi/phpdbg/
H A Dphpdbg_out.c212 int buflen; in phpdbg_log_internal() local
216 buflen = vasprintf(&buffer, fmt, args); in phpdbg_log_internal()
219 len = phpdbg_mixed_write(fd, buffer, buflen); in phpdbg_log_internal()
228 int buflen; in phpdbg_out_internal() local
236 buflen = vasprintf(&buffer, fmt, args); in phpdbg_out_internal()
239 len = phpdbg_mixed_write(fd, buffer, buflen); in phpdbg_out_internal()
/PHP-8.2/ext/intl/locale/
H A Dlocale_methods.c352 int32_t buflen = 512; in get_icu_value_internal() local
402 tag_value = zend_string_realloc( tag_value , buflen, 0); in get_icu_value_internal()
404 tag_value = zend_string_alloc( buflen, 0); in get_icu_value_internal()
406 tag_value_len = buflen; in get_icu_value_internal()
427 buflen++; /* add space for \0 */ in get_icu_value_internal()
441 } while( buflen > tag_value_len ); in get_icu_value_internal()
443 if( buflen ==0 ){ in get_icu_value_internal()
565 int32_t buflen = 512; in get_icu_disp_value_src_php() local
618 disp_name = erealloc( disp_name , buflen * sizeof(UChar) ); in get_icu_disp_value_src_php()
619 disp_name_len = buflen; in get_icu_disp_value_src_php()
[all …]
/PHP-8.2/ext/zlib/
H A Dzlib_filter.c77 while (bin < (unsigned int) bucket->buflen && !data->finished) { in php_zlib_inflate_filter()
79 desired = bucket->buflen - bin; in php_zlib_inflate_filter()
117 consumed += bucket->buflen; in php_zlib_inflate_filter()
197 while (bin < (unsigned int) bucket->buflen) { in php_zlib_deflate_filter()
200 desired = bucket->buflen - bin; in php_zlib_deflate_filter()
232 consumed += bucket->buflen; in php_zlib_deflate_filter()
/PHP-8.2/ext/mysqlnd/
H A Dmysqlnd_loaddata.c145 unsigned int buflen = 4096; in mysqlnd_handle_local_infile() local
205 buf = (zend_uchar *) mnd_ecalloc(1, buflen); in mysqlnd_handle_local_infile()
223 …while ((bufsize = infile.local_infile_read (info, buf + MYSQLND_HEADER_SIZE, buflen - MYSQLND_HEAD… in mysqlnd_handle_local_infile()
/PHP-8.2/ext/bz2/
H A Dbz2_filter.c92 while (bin < bucket->buflen) { in php_bz2_decompress_filter()
105 consumed += bucket->buflen; in php_bz2_decompress_filter()
109 desired = bucket->buflen - bin; in php_bz2_decompress_filter()
230 while (bin < bucket->buflen) { in php_bz2_compress_filter()
233 desired = bucket->buflen - bin; in php_bz2_compress_filter()
/PHP-8.2/build/
H A Dax_func_which_gethostbyname_r.m4105 int buflen = 1024;
107 (void)gethostbyname_r(name, &ret, buf, buflen, &retp, &my_h_errno) /* ; */
125 int buflen = 1024;
127 (void)gethostbyname_r(name, &ret, buf, buflen, &my_h_errno) /* ; */
/PHP-8.2/ext/snmp/
H A Dsnmp.c243 int buflen = sizeof(sbuf) - 1; in php_snmp_getvalue() local
271 buflen = val_len; in php_snmp_getvalue()
277 buflen = val_len; in php_snmp_getvalue()
302 snprintf(buf, buflen, "%d.%d.%d.%d", in php_snmp_getvalue()
305 buf[buflen]=0; in php_snmp_getvalue()
314 snprintf(buf, buflen, "%lu", *vars->val.integer); in php_snmp_getvalue()
315 buf[buflen]=0; in php_snmp_getvalue()
320 snprintf(buf, buflen, "%ld", *vars->val.integer); in php_snmp_getvalue()
321 buf[buflen]=0; in php_snmp_getvalue()
327 snprintf(buf, buflen, "%f", *vars->val.floatVal); in php_snmp_getvalue()
[all …]
/PHP-8.2/win32/
H A Dregistry.c288 DWORD buflen = MAXPATHLEN; in GetIniPathFromRegistry() local
290 if(RegQueryValueEx(hKey, PHPRC_REGISTRY_NAME, 0, NULL, reg_location, &buflen) != ERROR_SUCCESS) { in GetIniPathFromRegistry()
/PHP-8.2/ext/pdo_odbc/
H A Dodbc_stmt.c57 zend_ulong buflen, zend_ulong *outlen) in pdo_odbc_utf82ucs2() argument
60 if (is_unicode && buflen) { in pdo_odbc_utf82ucs2()
64 ret = MultiByteToWideChar(CP_UTF8, 0, buf, buflen, NULL, 0); in pdo_odbc_utf82ucs2()
77 …ret = MultiByteToWideChar(CP_UTF8, 0, buf, buflen, (LPWSTR)S->convbuf, S->convbufsize / sizeof(WCH… in pdo_odbc_utf82ucs2()
/PHP-8.2/ext/session/
H A Dmod_files.c107 static char *ps_files_path_create(char *buf, size_t buflen, ps_files *data, const zend_string *key) in ps_files_path_create() argument
114buflen < (ZSTR_LEN(data->basedir) + 2 * data->dirdepth + ZSTR_LEN(key) + 5 + sizeof(FILE_PREFIX)))… in ps_files_path_create()
/PHP-8.2/ext/mysqli/
H A Dphp_mysqli_structs.h43 zend_ulong buflen; member
/PHP-8.2/main/
H A DSAPI.h189 SAPI_API size_t sapi_read_post_block(char *buffer, size_t buflen);

Completed in 69 milliseconds

12