Home
last modified time | relevance | path

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

12

/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/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/ext/fileinfo/libmagic/
H A Dcdf.c1202 cdf_print_classid(char *buf, size_t buflen, const cdf_classid_t *id) in cdf_print_classid() argument
1204 return snprintf(buf, buflen, "%.8x-%.4x-%.4x-%.2x%.2x-" in cdf_print_classid()
/PHP-7.4/ext/iconv/
H A Diconv.c2823 buckets_out, bucket->buf, bucket->buflen, &consumed, in php_iconv_stream_filter_do_filter()
/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/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 …]
H A Dphp_mysqli_structs.h86 zend_ulong buflen; member
/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/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/pdo/
H A Dpdo_dbh.c207 static char *dsn_from_uri(char *uri, char *buf, size_t buflen) /* {{{ */ in dsn_from_uri() argument
214 dsn = php_stream_get_line(stream, buf, buflen, NULL); in dsn_from_uri()
/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/pgsql/
H A Dpgsql.c4480 size_t buflen; local
4488 buflen = strlen(strtext); /* will shrink, also we discover if
4490 buffer = (unsigned char *) emalloc(buflen); /* isn't NULL terminated */
4505 buflen--;
4512 buflen--;
4541 buflen -= 3;
4552 buffer = erealloc(buffer, buflen+1);
4553 buffer[buflen] = '\0';
4555 *retbuflen = buflen;
/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/session/
H A Dmod_files.c109 static char *ps_files_path_create(char *buf, size_t buflen, ps_files *data, const char *key) in ps_files_path_create() argument
118 buflen < (strlen(data->basedir) + 2 * data->dirdepth + key_len + 5 + sizeof(FILE_PREFIX))) { in ps_files_path_create()
/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/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 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 …]
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()
/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/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/main/
H A DSAPI.c234 SAPI_API size_t sapi_read_post_block(char *buffer, size_t buflen) in sapi_read_post_block() argument
242 read_bytes = sapi_module.read_post(buffer, buflen); in sapi_read_post_block()
248 if (read_bytes < buflen) { in sapi_read_post_block()
H A DSAPI.h192 SAPI_API size_t sapi_read_post_block(char *buffer, size_t buflen);

Completed in 145 milliseconds

12