Home
last modified time | relevance | path

Searched refs:in_buf (Results 1 – 6 of 6) sorted by relevance

/PHP-7.3/sapi/fpm/fpm/
H A Dfpm_stdio.c124 int in_buf = 0; local
167 res = read(fd, buf + in_buf, max_buf_size - 1 - in_buf);
175 in_buf += res;
177 if (!buf[in_buf - 1]) {
179 in_buf--;
185 if (in_buf == 0) {
190 nl = memchr(buf, '\n', in_buf);
199 memmove(buf, buf + out_len, in_buf - out_len);
200 in_buf -= out_len;
203 zlog_stream_str(log_stream, buf, in_buf);
[all …]
/PHP-7.3/ext/zlib/
H A Dzlib.c336 static zend_string *php_zlib_encode(const char *in_buf, size_t in_len, int encoding, int level) in php_zlib_encode() argument
349 Z.next_in = (Bytef *) in_buf; in php_zlib_encode()
435 Z.next_in = (Bytef *) in_buf; in php_zlib_decode()
695 char *in_buf, *out_buf; \
699 if (SUCCESS != zend_parse_parameters(ZEND_NUM_ARGS(), "s|l", &in_buf, &in_len, &max_len)) { \
706 if (SUCCESS != php_zlib_decode(in_buf, in_len, &out_buf, &out_len, encoding, max_len)) { \
907 char *in_buf; in PHP_FUNCTION() local
914 …if (SUCCESS != zend_parse_parameters(ZEND_NUM_ARGS(), "rs|l", &res, &in_buf, &in_len, &flush_type)… in PHP_FUNCTION()
950 ctx->next_in = (Bytef *) in_buf; in PHP_FUNCTION()
1163 char *in_buf; in PHP_FUNCTION() local
[all …]
/PHP-7.3/ext/xmlrpc/libxmlrpc/
H A Dxml_element.c684 xml_element* xml_elem_parse_buf(const char* in_buf, int len, XML_ELEM_INPUT_OPTIONS options, XML_EL… in xml_elem_parse_buf() argument
694 if(in_buf) { in xml_elem_parse_buf()
712 len = strlen(in_buf); in xml_elem_parse_buf()
716 if(XML_Parse(parser, in_buf, len, 1) == 0) { in xml_elem_parse_buf()
731 in_buf + (byte_idx > 10 ? byte_idx - 10 : byte_idx)); in xml_elem_parse_buf()
H A Dxml_element.h164 xml_element* xml_elem_parse_buf(const char* in_buf, int len, XML_ELEM_INPUT_OPTIONS options, XML_EL…
H A Dxmlrpc.h374 XMLRPC_REQUEST XMLRPC_REQUEST_FromXML(const char* in_buf, int len, XMLRPC_REQUEST_INPUT_OPTIONS in_…
375 XMLRPC_VALUE XMLRPC_VALUE_FromXML(const char* in_buf, int len, XMLRPC_REQUEST_INPUT_OPTIONS in_opti…
H A Dxmlrpc.c742 XMLRPC_VALUE XMLRPC_VALUE_FromXML (const char *in_buf, int len, XMLRPC_REQUEST_INPUT_OPTIONS in_opt… in XMLRPC_VALUE_FromXML() argument
744 XMLRPC_REQUEST req = XMLRPC_REQUEST_FromXML(in_buf, len, in_options); in XMLRPC_VALUE_FromXML()
801 XMLRPC_REQUEST XMLRPC_REQUEST_FromXML (const char *in_buf, int len, in XMLRPC_REQUEST_FromXML() argument
808 xml_elem_parse_buf (in_buf, len, in XMLRPC_REQUEST_FromXML()

Completed in 28 milliseconds