Home
last modified time | relevance | path

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

/PHP-7.2/sapi/fpm/fpm/
H A Dfpm_stdio.c119 int in_buf = 0; local
135 res = read(fd, buf + in_buf, max_buf_size - 1 - in_buf);
158 in_buf += res;
163 if (in_buf == 0) {
168 buf[in_buf] = '\0';
173 if (in_buf == max_buf_size - 1) {
194 memmove(buf, buf + out_buf, in_buf - out_buf);
195 in_buf -= out_buf;
197 in_buf = 0;
/PHP-7.2/ext/zlib/
H A Dzlib.c338 static zend_string *php_zlib_encode(const char *in_buf, size_t in_len, int encoding, int level) in php_zlib_encode() argument
351 Z.next_in = (Bytef *) in_buf; in php_zlib_encode()
437 Z.next_in = (Bytef *) in_buf; in php_zlib_decode()
697 char *in_buf, *out_buf; \
701 if (SUCCESS != zend_parse_parameters(ZEND_NUM_ARGS(), "s|l", &in_buf, &in_len, &max_len)) { \
708 if (SUCCESS != php_zlib_decode(in_buf, in_len, &out_buf, &out_len, encoding, max_len)) { \
909 char *in_buf; in PHP_FUNCTION() local
916 …if (SUCCESS != zend_parse_parameters(ZEND_NUM_ARGS(), "rs|l", &res, &in_buf, &in_len, &flush_type)… in PHP_FUNCTION()
952 ctx->next_in = (Bytef *) in_buf; in PHP_FUNCTION()
1165 char *in_buf; in PHP_FUNCTION() local
[all …]
/PHP-7.2/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 33 milliseconds