Home
last modified time | relevance | path

Searched refs:buffer (Results 276 – 300 of 323) sorted by relevance

1...<<111213

/PHP-7.4/ext/fileinfo/libmagic/
H A Dis_json.c387 file_is_json(struct magic_set *ms, const struct buffer *b) in file_is_json()
H A Dencoding.c70 file_encoding(struct magic_set *ms, const struct buffer *b, unichar **ubuf, in file_encoding()
H A Dfuncs.c215 struct buffer b; in file_buffer()
H A Dreadcdf.c532 file_trycdf(struct magic_set *ms, const struct buffer *b) in file_trycdf()
/PHP-7.4/ext/mysqlnd/
H A Dmysqlnd_ps_codec.c948 zend_uchar *p = stmt->execute_cmd_buffer.buffer, in mysqlnd_stmt_execute_generate_request()
949 *cmd_buffer = stmt->execute_cmd_buffer.buffer; in mysqlnd_stmt_execute_generate_request()
972 *free_buffer = (cmd_buffer != stmt->execute_cmd_buffer.buffer); in mysqlnd_stmt_execute_generate_request()
H A Dmysqlnd_structs.h76 zend_uchar *buffer; member
384 …c_mysqlnd_vio__network_read)(MYSQLND_VIO * const vio, zend_uchar * const buffer, const size_t coun…
1124 …nd)(MYSQLND_PFC * const pfc, MYSQLND_VIO * const vio, zend_uchar * const buffer, const size_t coun…
1125 …ve)(MYSQLND_PFC * const pfc, MYSQLND_VIO * const vio, zend_uchar * const buffer, const size_t coun…
/PHP-7.4/ext/sqlite3/
H A Dsqlite3.c1571 zend_string *buffer = NULL; in php_sqlite3_bind_params() local
1578 buffer = php_stream_copy_to_mem(stream, PHP_STREAM_COPY_ALL, 0); in php_sqlite3_bind_params()
1580 buffer = zval_get_string(parameter); in php_sqlite3_bind_params()
1583 if (buffer) { in php_sqlite3_bind_params()
1584 …sqlite3_bind_blob(stmt_obj->stmt, param->param_number, ZSTR_VAL(buffer), ZSTR_LEN(buffer), SQLITE_… in php_sqlite3_bind_params()
1585 zend_string_release_ex(buffer, 0); in php_sqlite3_bind_params()
/PHP-7.4/ext/hash/
H A Dhash.c1281 char buffer[2048]; in PHP_MINFO_FUNCTION() local
1283 char *s = buffer, *e = s + sizeof(buffer); in PHP_MINFO_FUNCTION()
1292 php_info_print_table_row(2, "Hashing Engines", buffer); in PHP_MINFO_FUNCTION()
/PHP-7.4/main/streams/
H A Dstreams.c244 char *buffer = NULL; in php_stream_wrapper_log_error() local
247 vspprintf(&buffer, 0, fmt, args); in php_stream_wrapper_log_error()
251 php_error_docref(NULL, E_WARNING, "%s", buffer); in php_stream_wrapper_log_error()
252 efree(buffer); in php_stream_wrapper_log_error()
264 zend_llist_init(&new_list, sizeof(buffer), wrapper_error_dtor, 0); in php_stream_wrapper_log_error()
270 zend_llist_add_element(list, &buffer); in php_stream_wrapper_log_error()
/PHP-7.4/ext/mbstring/libmbfl/mbfl/
H A Dmbfilter.c304 if (convd != NULL && result != NULL && convd->device.buffer != NULL) { in mbfl_buffer_converter_getbuffer()
306 result->val = convd->device.buffer; in mbfl_buffer_converter_getbuffer()
734 if (c == (int)pc->needle.buffer[pc->needle_pos]) { in collector_strpos()
746 h = (int *)pc->needle.buffer; in collector_strpos()
751 m = (int *)pc->needle.buffer; in collector_strpos()
1050 if (pc.needle.buffer == NULL) { in mbfl_substr_count()
2227 encoding = mbfl_name2encoding((const char *)&pd->tmpdev.buffer[pd->cspos]); in mime_header_decoder_collector()
/PHP-7.4/ext/simplexml/
H A Dsimplexml.c390 xmlChar *buffer; in change_node_zval() local
406 buffer = xmlEncodeEntitiesReentrant(node->doc, (xmlChar *)Z_STRVAL_P(value)); in change_node_zval()
408 if (buffer) { in change_node_zval()
409 xmlNodeSetContent(node, buffer); in change_node_zval()
410 xmlFree(buffer); in change_node_zval()
1492 return_content = (char *)outbuf->buffer->content; in SXE_METHOD()
1493 return_len = outbuf->buffer->use; in SXE_METHOD()
/PHP-7.4/ext/dom/tests/
H A Dbug76738.phpt2 Bug #76738 Wrong handling of output buffer
/PHP-7.4/sapi/cgi/
H A Dcgi_main.c478 static size_t sapi_cgi_read_post(char *buffer, size_t count_bytes) in sapi_cgi_read_post() argument
494 tmp_read_bytes = read(STDIN_FILENO, buffer + read_bytes, to_read); in sapi_cgi_read_post()
496 tmp_read_bytes = read(STDIN_FILENO, buffer + read_bytes, count_bytes - read_bytes); in sapi_cgi_read_post()
506 static size_t sapi_fcgi_read_post(char *buffer, size_t count_bytes) in sapi_fcgi_read_post() argument
520 tmp_read_bytes = fcgi_read(request, buffer + read_bytes, to_read); in sapi_fcgi_read_post()
/PHP-7.4/ext/standard/
H A Dbasic_functions.c2109 ZEND_ARG_INFO(0, buffer)
2114 ZEND_ARG_INFO(0, buffer)
2641 ZEND_ARG_INFO(0, buffer)
3928 char buffer[40]; in PHP_NAMED_FUNCTION() local
3943 if (!inet_ntop(af, address, buffer, sizeof(buffer))) { in PHP_NAMED_FUNCTION()
3947 RETURN_STRING(buffer); in PHP_NAMED_FUNCTION()
3960 char buffer[17]; in PHP_NAMED_FUNCTION() local
3966 memset(buffer, 0, sizeof(buffer)); in PHP_NAMED_FUNCTION()
3977 ret = inet_pton(af, address, buffer); in PHP_NAMED_FUNCTION()
3983 RETURN_STRINGL(buffer, af == AF_INET ? 4 : 16); in PHP_NAMED_FUNCTION()
/PHP-7.4/ext/gd/libgd/
H A Dgd.h385 int (*source) (void *context, char *buffer, int len);
633 int (*sink) (void *context, const char *buffer, int len);
/PHP-7.4/ext/intl/
H A DERROR_CONVENTIONS.md35 of the first two. If the message is not a static buffer, `copyMsg` should be 1.
/PHP-7.4/Zend/
H A Dzend.h158 int (*serialize)(zval *object, unsigned char **buffer, size_t *buf_len, zend_serialize_data *data);
/PHP-7.4/ext/sockets/tests/
H A Dsocket_strerror.phpt129 string(25) "No buffer space available"
/PHP-7.4/sapi/fpm/fpm/
H A Dfpm_main.c433 static size_t sapi_cgi_read_post(char *buffer, size_t count_bytes) /* {{{ */ in sapi_cgi_read_post() argument
460 tmp_read_bytes = fcgi_read(request, buffer + read_bytes, count_bytes - read_bytes); in sapi_cgi_read_post()
462 tmp_read_bytes = read(request_body_fd, buffer + read_bytes, count_bytes - read_bytes); in sapi_cgi_read_post()
/PHP-7.4/ext/pdo_odbc/tests/
H A Dlong_columns.phpt58 …driver reads columns in blocks of 255 bytes and then reassembles those blocks into a single buffer.
/PHP-7.4/ext/oci8/tests/
H A Dbind_char_1.phpt7 // The bind buffer size edge cases seem to change each DB version.
H A Dbind_char_1_11gR1.phpt7 // The bind buffer size edge cases seem to change each DB version.
/PHP-7.4/build/
H A Dphp.m41470 ssize_t reader(void *cookie, char *buffer, size_t size)
1472 ssize_t writer(void *cookie, const char *buffer, size_t size)
2236 CRYPTD buffer;
2237 crypt_r("passwd", "hash", &buffer);
2245 struct crypt_data buffer;
2246 crypt_r("passwd", "hash", &buffer);
2256 struct crypt_data buffer;
2257 crypt_r("passwd", "hash", &buffer);
/PHP-7.4/ext/fileinfo/tests/
H A Dbug68819_001.phpt13 $type = $finfo->buffer($string);
/PHP-7.4/sapi/litespeed/
H A Dlsapi_main.c294 static size_t sapi_lsapi_read_post(char *buffer, size_t count_bytes) in sapi_lsapi_read_post() argument
297 ssize_t rv = LSAPI_ReadReqBody(buffer, (unsigned long long)count_bytes); in sapi_lsapi_read_post()

Completed in 165 milliseconds

1...<<111213