Home
last modified time | relevance | path

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

12

/PHP-8.3/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.c363 add_property_stringl(return_value, "data", bucket->buf, bucket->buflen); in PHP_FUNCTION()
364 add_property_long(return_value, "datalen", bucket->buflen); in PHP_FUNCTION()
400 if (bucket->buflen != Z_STRLEN_P(pzdata)) { in php_stream_bucket_attach()
402 bucket->buflen = Z_STRLEN_P(pzdata); in php_stream_bucket_attach()
404 memcpy(bucket->buf, Z_STRVAL_P(pzdata), bucket->buflen); in php_stream_bucket_attach()
462 add_property_stringl(return_value, "data", bucket->buf, bucket->buflen); in PHP_FUNCTION()
463 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()
1526 buckets_out, bucket->buf, bucket->buflen, &consumed, in strfilter_convert_filter()
1644 consumed += bucket->buflen; in consumed_filter_filter()
1860 consumed += bucket->buflen; in php_chunked_filter()
1861 bucket->buflen = php_dechunk(bucket->buf, bucket->buflen, data); in php_chunked_filter()
/PHP-8.3/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.c400 PHPAPI int php_stream_xport_recvfrom(php_stream *stream, char *buf, size_t buflen, in php_stream_xport_recvfrom() argument
411 return php_stream_read(stream, buf, buflen); in php_stream_xport_recvfrom()
426 if (recvd_len > buflen) { in php_stream_xport_recvfrom()
427 recvd_len = buflen; in php_stream_xport_recvfrom()
432 buflen -= recvd_len; in php_stream_xport_recvfrom()
435 if (buflen == 0) { in php_stream_xport_recvfrom()
449 param.inputs.buflen = buflen; in php_stream_xport_recvfrom()
469 PHPAPI int php_stream_xport_sendto(php_stream *stream, const char *buf, size_t buflen, in php_stream_xport_sendto() argument
478 return php_stream_write(stream, buf, buflen); in php_stream_xport_sendto()
494 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.c275 static inline int sock_sendto(php_netstream_data_t *sock, const char *buf, size_t buflen, int flags, in sock_sendto() argument
281 ret = sendto(sock->socket, buf, XP_SOCK_BUF_SIZE(buflen), flags, addr, XP_SOCK_BUF_SIZE(addrlen)); in sock_sendto()
286 …return ((ret = send(sock->socket, buf, buflen > INT_MAX ? INT_MAX : (int)buflen, flags)) == SOCK_C… in sock_sendto()
288 return ((ret = send(sock->socket, buf, buflen, flags)) == SOCK_CONN_ERR) ? -1 : ret; in sock_sendto()
292 static inline int sock_recvfrom(php_netstream_data_t *sock, char *buf, size_t buflen, int flags, in sock_recvfrom() argument
303 ret = recvfrom(sock->socket, buf, XP_SOCK_BUF_SIZE(buflen), flags, (struct sockaddr*)&sa, &sl); in sock_recvfrom()
308 ret = buflen; in sock_recvfrom()
324 ret = recv(sock->socket, buf, XP_SOCK_BUF_SIZE(buflen), flags); in sock_recvfrom()
437 xparam->inputs.buf, xparam->inputs.buflen, in php_sockop_set_option()
458 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.c615 stream->readbuflen += bucket->buflen; in _php_stream_fill_read_buffer()
619 if (bucket->buflen) { in _php_stream_fill_read_buffer()
622 stream->writepos += bucket->buflen; in _php_stream_fill_read_buffer()
1520 size_t len = 0, buflen; in _php_stream_copy_to_mem() local
1569 if (maxlen > 0 && buflen > maxlen) { in _php_stream_copy_to_mem()
1570 buflen = maxlen; in _php_stream_copy_to_mem()
1573 buflen = step; in _php_stream_copy_to_mem()
1582 if (len + min_room >= buflen) { in _php_stream_copy_to_mem()
1586 if (maxlen > 0 && buflen + step > maxlen) { in _php_stream_copy_to_mem()
1587 buflen = maxlen; in _php_stream_copy_to_mem()
[all …]
/PHP-8.3/ext/posix/
H A Dposix.c481 buflen = 32; in PHP_FUNCTION()
485 buflen = 1; in PHP_FUNCTION()
493 buflen *= 2; in PHP_FUNCTION()
788 long buflen; in PHP_FUNCTION() local
800 buflen = 1024; in PHP_FUNCTION()
804 buflen = 1; in PHP_FUNCTION()
813 buflen *= 2; in PHP_FUNCTION()
928 long buflen; in PHP_FUNCTION() local
940 buflen = 1024; in PHP_FUNCTION()
944 buflen = 1; in PHP_FUNCTION()
[all …]
/PHP-8.3/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.3/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.3/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.3/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.3/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.3/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.3/ext/snmp/
H A Dsnmp.c241 int buflen = sizeof(sbuf) - 1; in php_snmp_getvalue() local
269 buflen = val_len; in php_snmp_getvalue()
275 buflen = val_len; in php_snmp_getvalue()
300 snprintf(buf, buflen, "%d.%d.%d.%d", in php_snmp_getvalue()
303 buf[buflen]=0; in php_snmp_getvalue()
312 snprintf(buf, buflen, "%lu", *vars->val.integer); in php_snmp_getvalue()
313 buf[buflen]=0; in php_snmp_getvalue()
318 snprintf(buf, buflen, "%ld", *vars->val.integer); in php_snmp_getvalue()
319 buf[buflen]=0; in php_snmp_getvalue()
325 snprintf(buf, buflen, "%f", *vars->val.floatVal); in php_snmp_getvalue()
[all …]
/PHP-8.3/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.3/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.3/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.3/ext/mysqli/
H A Dphp_mysqli_structs.h43 zend_ulong buflen; member
/PHP-8.3/main/
H A DSAPI.h189 SAPI_API size_t sapi_read_post_block(char *buffer, size_t buflen);

Completed in 61 milliseconds

12