Home
last modified time | relevance | path

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

/PHP-5.5/sapi/fpm/fpm/
H A Dfpm_stdio.c96 int in_buf = 0; in fpm_stdio_child_said() local
112 res = read(fd, buf + in_buf, max_buf_size - 1 - in_buf); in fpm_stdio_child_said()
135 in_buf += res; in fpm_stdio_child_said()
140 if (in_buf == 0) { in fpm_stdio_child_said()
145 buf[in_buf] = '\0'; in fpm_stdio_child_said()
150 if (in_buf == max_buf_size - 1) { in fpm_stdio_child_said()
171 memmove(buf, buf + out_buf, in_buf - out_buf); in fpm_stdio_child_said()
172 in_buf -= out_buf; in fpm_stdio_child_said()
174 in_buf = 0; in fpm_stdio_child_said()
/PHP-5.5/ext/zlib/
H A Dzlib.c317 static int php_zlib_encode(const char *in_buf, size_t in_len, char **out_buf, size_t *out_len, int … in php_zlib_encode() argument
330 Z.next_in = (Bytef *) in_buf; in php_zlib_encode()
406 static int php_zlib_decode(const char *in_buf, size_t in_len, char **out_buf, size_t *out_len, int … in php_zlib_decode() argument
419 Z.next_in = (Bytef *) in_buf; in php_zlib_decode()
646 char *in_buf, *out_buf; \
652 …if (SUCCESS != zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "s|ll", &in_buf, &in_len, &level, …
656 …if (SUCCESS != zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "sl|l", &in_buf, &in_len, &encodin…
673 if (SUCCESS != php_zlib_encode(in_buf, in_len, &out_buf, &out_len, encoding, level TSRMLS_CC)) { \
682 char *in_buf, *out_buf; \
686 …if (SUCCESS != zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "s|l", &in_buf, &in_len, &max_len)…
[all …]
/PHP-5.5/ext/xmlrpc/libxmlrpc/
H A Dxml_element.c687 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
697 if(in_buf) { in xml_elem_parse_buf()
715 len = strlen(in_buf); in xml_elem_parse_buf()
719 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.h373 XMLRPC_REQUEST XMLRPC_REQUEST_FromXML(const char* in_buf, int len, XMLRPC_REQUEST_INPUT_OPTIONS in_…
374 XMLRPC_VALUE XMLRPC_VALUE_FromXML(const char* in_buf, int len, XMLRPC_REQUEST_INPUT_OPTIONS in_opti…
H A Dxmlrpc.c745 XMLRPC_VALUE XMLRPC_VALUE_FromXML (const char *in_buf, int len, XMLRPC_REQUEST_INPUT_OPTIONS in_opt… in XMLRPC_VALUE_FromXML() argument
747 XMLRPC_REQUEST req = XMLRPC_REQUEST_FromXML(in_buf, len, in_options); in XMLRPC_VALUE_FromXML()
804 XMLRPC_REQUEST XMLRPC_REQUEST_FromXML (const char *in_buf, int len, in XMLRPC_REQUEST_FromXML() argument
811 xml_elem_parse_buf (in_buf, len, in XMLRPC_REQUEST_FromXML()

Completed in 33 milliseconds