Home
last modified time | relevance | path

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

12

/PHP-7.4/ext/standard/
H A Dcrypt_sha256.c58 uint32_t buflen; member
206 ctx->buflen = 0; in sha256_init_ctx()
250 if (ctx->buflen != 0) { in sha256_process_bytes()
259 ctx->buflen &= 63; in sha256_process_bytes()
512 buflen -= n; in php_sha256_crypt_r()
516 buflen -= MIN(MAX (0, buflen), (int)salt_len); in php_sha256_crypt_r()
518 if (buflen > 0) { in php_sha256_crypt_r()
520 --buflen; in php_sha256_crypt_r()
546 if (buflen <= 0) { in php_sha256_crypt_r()
589 if (buflen < needed) { in php_sha256_crypt()
[all …]
H A Dcrypt_sha512.c52 uint64_t buflen; member
233 ctx->buflen = 0; in sha512_init_ctx()
277 if (ctx->buflen != 0) { in sha512_process_bytes()
282 ctx->buflen += add; in sha512_process_bytes()
287 ctx->buflen &= 127; in sha512_process_bytes()
547 buflen -= n; in php_sha512_crypt_r()
551 buflen -= (int) MIN((size_t) MAX(0, buflen), salt_len); in php_sha512_crypt_r()
553 if (buflen > 0) { in php_sha512_crypt_r()
555 --buflen; in php_sha512_crypt_r()
593 if (buflen <= 0) { in php_sha512_crypt_r()
[all …]
H A Dphp_crypt_r.h51 extern char * php_sha512_crypt_r (const char *key, const char *salt, char *buffer, int buflen);
52 extern char * php_sha256_crypt_r (const char *key, const char *salt, char *buffer, int buflen);
H A Duser_filters.c426 add_property_stringl(return_value, "data", bucket->buf, bucket->buflen); in PHP_FUNCTION()
427 add_property_long(return_value, "datalen", bucket->buflen); in PHP_FUNCTION()
463 if (bucket->buflen != Z_STRLEN_P(pzdata)) { in php_stream_bucket_attach()
465 bucket->buflen = Z_STRLEN_P(pzdata); in php_stream_bucket_attach()
467 memcpy(bucket->buf, Z_STRVAL_P(pzdata), bucket->buflen); in php_stream_bucket_attach()
533 add_property_stringl(return_value, "data", bucket->buf, bucket->buflen); in PHP_FUNCTION()
534 add_property_long(return_value, "datalen", bucket->buflen); in PHP_FUNCTION()
H A Dexec.c101 size_t buflen, bufl = 0; in php_exec() local
123 buflen = EXEC_INPUT_BUF; in php_exec()
131 if (buflen < (bufl + (b - buf) + EXEC_INPUT_BUF)) { in php_exec()
133 buflen = bufl + EXEC_INPUT_BUF; in php_exec()
134 buf = erealloc(buf, buflen); in php_exec()
H A Dfilters.c49 php_strtr(bucket->buf, bucket->buflen, rot13_from, rot13_to, 52); in strfilter_rot13_filter()
50 consumed += bucket->buflen; in strfilter_rot13_filter()
97 php_strtr(bucket->buf, bucket->buflen, lowercase, uppercase, 26); in strfilter_toupper_filter()
98 consumed += bucket->buflen; in strfilter_toupper_filter()
126 consumed += bucket->buflen; in strfilter_tolower_filter()
216 consumed = bucket->buflen; in strfilter_strip_tags_filter()
218 …bucket->buflen = php_strip_tags(bucket->buf, bucket->buflen, &(inst->state), inst->allowed_tags, i… in strfilter_strip_tags_filter()
1665 buckets_out, bucket->buf, bucket->buflen, &consumed, in strfilter_convert_filter()
1783 consumed += bucket->buflen; in consumed_filter_filter()
1989 consumed += bucket->buflen; in php_chunked_filter()
[all …]
/PHP-7.4/main/streams/
H A Dfilter.c83 bucket->buf = pemalloc(buflen, 1); in php_stream_bucket_new()
84 memcpy(bucket->buf, buf, buflen); in php_stream_bucket_new()
85 bucket->buflen = buflen; in php_stream_bucket_new()
89 bucket->buflen = buflen; in php_stream_bucket_new()
120 memcpy(retval->buf, bucket->buf, retval->buflen); in php_stream_bucket_make_writeable()
136 (*left)->buflen = length; in php_stream_bucket_split()
142 (*right)->buflen = in->buflen - length; in php_stream_bucket_split()
371 stream->readbuflen += bucket->buflen; in php_stream_filter_append_ex()
375 stream->writepos += bucket->buflen; in php_stream_filter_append_ex()
444 flushed_size += bucket->buflen; in _php_stream_filter_flush()
[all …]
H A Dtransports.c389 PHPAPI int php_stream_xport_recvfrom(php_stream *stream, char *buf, size_t buflen, in php_stream_xport_recvfrom() argument
400 return php_stream_read(stream, buf, buflen); in php_stream_xport_recvfrom()
415 if (recvd_len > buflen) { in php_stream_xport_recvfrom()
416 recvd_len = buflen; in php_stream_xport_recvfrom()
421 buflen -= recvd_len; in php_stream_xport_recvfrom()
424 if (buflen == 0) { in php_stream_xport_recvfrom()
438 param.inputs.buflen = buflen; in php_stream_xport_recvfrom()
458 PHPAPI int php_stream_xport_sendto(php_stream *stream, const char *buf, size_t buflen, in php_stream_xport_sendto() argument
467 return php_stream_write(stream, buf, buflen); in php_stream_xport_sendto()
483 param.inputs.buflen = buflen; in php_stream_xport_sendto()
H A Dphp_stream_transport.h102 PHPAPI int php_stream_xport_recvfrom(php_stream *stream, char *buf, size_t buflen,
108 PHPAPI int php_stream_xport_sendto(php_stream *stream, const char *buf, size_t buflen,
147 size_t buflen; member
H A Dxp_socket.c251 static inline int sock_sendto(php_netstream_data_t *sock, const char *buf, size_t buflen, int flags, in sock_sendto() argument
257 ret = sendto(sock->socket, buf, XP_SOCK_BUF_SIZE(buflen), flags, addr, XP_SOCK_BUF_SIZE(addrlen)); in sock_sendto()
262 …return ((ret = send(sock->socket, buf, buflen > INT_MAX ? INT_MAX : (int)buflen, flags)) == SOCK_C… in sock_sendto()
264 return ((ret = send(sock->socket, buf, buflen, flags)) == SOCK_CONN_ERR) ? -1 : ret; in sock_sendto()
268 static inline int sock_recvfrom(php_netstream_data_t *sock, char *buf, size_t buflen, int flags, in sock_recvfrom() argument
279 ret = recvfrom(sock->socket, buf, XP_SOCK_BUF_SIZE(buflen), flags, (struct sockaddr*)&sa, &sl); in sock_recvfrom()
284 ret = buflen; in sock_recvfrom()
300 ret = recv(sock->socket, buf, XP_SOCK_BUF_SIZE(buflen), flags); in sock_recvfrom()
405 xparam->inputs.buf, xparam->inputs.buflen, in php_sockop_set_option()
426 xparam->inputs.buf, xparam->inputs.buflen, in php_sockop_set_option()
H A Dphp_stream_filter_api.h47 size_t buflen; member
68 PHPAPI php_stream_bucket *php_stream_bucket_new(php_stream *stream, char *buf, size_t buflen, uint8…
/PHP-7.4/sapi/phpdbg/
H A Dphpdbg_out.c908 tmp = tmpptr = emalloc(*buflen * 5); in phpdbg_encode_ctrl_chars()
910 for (i = 0; i < *buflen; i++) { in phpdbg_encode_ctrl_chars()
928 *buflen = len; in phpdbg_encode_ctrl_chars()
933 int msgoutlen, xmloutlen, buflen; in phpdbg_process_print() local
1014 buflen = ZSTR_LEN(encoded); in phpdbg_process_print()
1015 memcpy(buf = emalloc(buflen + 1), ZSTR_VAL(encoded), buflen); in phpdbg_process_print()
1017 phpdbg_mixed_write(fd, buf, buflen); in phpdbg_process_print()
1192 int buflen; in phpdbg_xml_internal() local
1215 int buflen; in phpdbg_log_internal() local
1231 int buflen; in phpdbg_out_internal() local
[all …]
H A Dphpdbg_rinit_hook.c61 ssize_t buflen; in PHP_RINIT_FUNCTION() local
80 while ((buflen = recv(s, buf, sizeof(buf) - 1, 0)) > 0) { in PHP_RINIT_FUNCTION()
81 php_write(buf, buflen); in PHP_RINIT_FUNCTION()
/PHP-7.4/ext/intl/locale/
H A Dlocale_methods.c264 int32_t buflen = 512; in get_icu_value_internal() local
314 tag_value = zend_string_realloc( tag_value , buflen, 0); in get_icu_value_internal()
316 tag_value = zend_string_alloc( buflen, 0); in get_icu_value_internal()
318 tag_value_len = buflen; in get_icu_value_internal()
339 buflen++; /* add space for \0 */ in get_icu_value_internal()
353 } while( buflen > tag_value_len ); in get_icu_value_internal()
355 if( buflen ==0 ){ in get_icu_value_internal()
496 int32_t buflen = 512; in get_icu_disp_value_src_php() local
553 disp_name_len = buflen; in get_icu_disp_value_src_php()
591 } while( buflen > disp_name_len ); in get_icu_disp_value_src_php()
[all …]
/PHP-7.4/ext/posix/
H A Dposix.c806 zend_long buflen; in PHP_FUNCTION() local
824 if (buflen < 1) { in PHP_FUNCTION()
827 p = emalloc(buflen); in PHP_FUNCTION()
1088 long buflen; in PHP_FUNCTION() local
1098 if (buflen < 1) { in PHP_FUNCTION()
1101 buf = emalloc(buflen); in PHP_FUNCTION()
1107 buflen *= 2; in PHP_FUNCTION()
1220 long buflen; in PHP_FUNCTION() local
1230 if (buflen < 1) { in PHP_FUNCTION()
1233 buf = emalloc(buflen); in PHP_FUNCTION()
[all …]
/PHP-7.4/ext/zlib/
H A Dzlib_filter.c79 while (bin < (unsigned int) bucket->buflen && !data->finished) { in php_zlib_inflate_filter()
81 desired = bucket->buflen - bin; in php_zlib_inflate_filter()
118 consumed += bucket->buflen; in php_zlib_inflate_filter()
198 while (bin < (unsigned int) bucket->buflen) { in php_zlib_deflate_filter()
201 desired = bucket->buflen - bin; in php_zlib_deflate_filter()
233 consumed += bucket->buflen; in php_zlib_deflate_filter()
/PHP-7.4/ext/mysqlnd/
H A Dmysqlnd_loaddata.c147 unsigned int buflen = 4096; in mysqlnd_handle_local_infile() local
169 buf = (zend_uchar *) mnd_ecalloc(1, buflen); in mysqlnd_handle_local_infile()
187 …while ((bufsize = infile.local_infile_read (info, buf + MYSQLND_HEADER_SIZE, buflen - MYSQLND_HEAD… in mysqlnd_handle_local_infile()
/PHP-7.4/ext/bz2/
H A Dbz2_filter.c94 while (bin < bucket->buflen) { in php_bz2_decompress_filter()
107 consumed += bucket->buflen; in php_bz2_decompress_filter()
111 desired = bucket->buflen - bin; in php_bz2_decompress_filter()
231 while (bin < bucket->buflen) { in php_bz2_compress_filter()
234 desired = bucket->buflen - bin; in php_bz2_compress_filter()
/PHP-7.4/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-7.4/ext/pdo_odbc/
H A Dodbc_stmt.c59 zend_ulong buflen, zend_ulong *outlen) in pdo_odbc_utf82ucs2() argument
62 if (is_unicode && buflen) { in pdo_odbc_utf82ucs2()
66 ret = MultiByteToWideChar(CP_UTF8, 0, buf, buflen, NULL, 0); in pdo_odbc_utf82ucs2()
79 …ret = MultiByteToWideChar(CP_UTF8, 0, buf, buflen, (LPWSTR)S->convbuf, S->convbufsize / sizeof(WCH… in pdo_odbc_utf82ucs2()
94 zend_ulong buflen, zend_ulong *outlen) in pdo_odbc_ucs22utf8() argument
97 if (is_unicode && buflen) { in pdo_odbc_ucs22utf8()
101 ret = WideCharToMultiByte(CP_UTF8, 0, (LPCWSTR)buf, buflen/sizeof(WCHAR), NULL, 0, NULL, NULL); in pdo_odbc_ucs22utf8()
111 …ret = WideCharToMultiByte(CP_UTF8, 0, (LPCWSTR)buf, buflen/sizeof(WCHAR), S->convbuf, S->convbufsi… in pdo_odbc_ucs22utf8()
/PHP-7.4/ext/mysqli/tests/
H A D061.phpt26 function my_read($fp, &$buffer, $buflen, &$error) {
27 $buffer = strrev(fread($fp, $buflen));
/PHP-7.4/ext/xmlrpc/libxmlrpc/
H A Dxml_element.c442 int buflen = el->text.len; in xml_element_serialize() local
445 … escaped_str = xml_elem_entity_escape(el->text.str, buflen, &buflen, options->escaping ); in xml_element_serialize()
455 xml_elem_writefunc(fptr, escaped_str, data, buflen); in xml_element_serialize()
/PHP-7.4/ext/snmp/
H A Dsnmp.c532 int buflen = sizeof(sbuf) - 1; in php_snmp_getvalue() local
560 buflen = val_len; in php_snmp_getvalue()
566 buflen = val_len; in php_snmp_getvalue()
591 snprintf(buf, buflen, "%d.%d.%d.%d", in php_snmp_getvalue()
594 buf[buflen]=0; in php_snmp_getvalue()
603 snprintf(buf, buflen, "%lu", *vars->val.integer); in php_snmp_getvalue()
604 buf[buflen]=0; in php_snmp_getvalue()
609 snprintf(buf, buflen, "%ld", *vars->val.integer); in php_snmp_getvalue()
610 buf[buflen]=0; in php_snmp_getvalue()
616 snprintf(buf, buflen, "%f", *vars->val.floatVal); in php_snmp_getvalue()
[all …]
/PHP-7.4/win32/
H A Dregistry.c290 DWORD buflen = MAXPATHLEN; in GetIniPathFromRegistry() local
292 if(RegQueryValueEx(hKey, PHPRC_REGISTRY_NAME, 0, NULL, reg_location, &buflen) != ERROR_SUCCESS) { in GetIniPathFromRegistry()
/PHP-7.4/ext/mysqli/
H A Dmysqli_api.c418 stmt->result.buf[ofs].buflen = sizeof(float); in mysqli_stmt_bind_result_do_bind()
428 stmt->result.buf[ofs].buflen = sizeof(double); in mysqli_stmt_bind_result_do_bind()
469 stmt->result.buf[ofs].buflen = sizeof(my_ulonglong); in mysqli_stmt_bind_result_do_bind()
470 stmt->result.buf[ofs].val = (char *)emalloc(stmt->result.buf[ofs].buflen); in mysqli_stmt_bind_result_do_bind()
474 bind[ofs].buffer_length = stmt->result.buf[ofs].buflen; in mysqli_stmt_bind_result_do_bind()
517 stmt->result.buf[ofs].buflen = in mysqli_stmt_bind_result_do_bind()
525 if (!(stmt->result.buf[ofs].buflen = stmt->stmt->fields[ofs].max_length)) in mysqli_stmt_bind_result_do_bind()
526 ++stmt->result.buf[ofs].buflen; in mysqli_stmt_bind_result_do_bind()
528 stmt->result.buf[ofs].val = (char *)emalloc(stmt->result.buf[ofs].buflen); in mysqli_stmt_bind_result_do_bind()
532 bind[ofs].buffer_length = stmt->result.buf[ofs].buflen; in mysqli_stmt_bind_result_do_bind()
[all …]

Completed in 100 milliseconds

12