Searched refs:in_buf (Results 1 – 5 of 5) sorted by relevance
/PHP-5.3/sapi/fpm/fpm/ |
H A D | fpm_stdio.c | 96 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.3/ext/xmlrpc/libxmlrpc/ |
H A D | xml_element.c | 687 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 D | xml_element.h | 164 xml_element* xml_elem_parse_buf(const char* in_buf, int len, XML_ELEM_INPUT_OPTIONS options, XML_EL…
|
H A D | xmlrpc.h | 373 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 D | xmlrpc.c | 738 XMLRPC_VALUE XMLRPC_VALUE_FromXML (const char *in_buf, int len, XMLRPC_REQUEST_INPUT_OPTIONS in_opt… in XMLRPC_VALUE_FromXML() argument 740 XMLRPC_REQUEST req = XMLRPC_REQUEST_FromXML(in_buf, len, in_options); in XMLRPC_VALUE_FromXML() 797 XMLRPC_REQUEST XMLRPC_REQUEST_FromXML (const char *in_buf, int len, in XMLRPC_REQUEST_FromXML() argument 804 xml_elem_parse_buf (in_buf, len, in XMLRPC_REQUEST_FromXML()
|
Completed in 27 milliseconds