Searched defs:in_buf (Results 1 - 4 of 4) sorted by relevance
| /PHP_TRUNK/ext/xmlrpc/libxmlrpc/ |
| H A D | xml_element.c | 670 * xml_element* xml_elem_parse_buf(const char* in_buf, int len, XML_ELEM_INPUT_OPTIONS options, XML_ELEM_ERROR error) 674 * in_buf - buffer containing XML document 687 xml_element* xml_elem_parse_buf(const char* in_buf, int len, XML_ELEM_INPUT_OPTIONS options, XML_ELEM_ERROR error) argument 697 if(in_buf) { 715 len = strlen(in_buf); 719 if(XML_Parse(parser, in_buf, len, 1) == 0) { 731 in_buf + (byte_idx > 10 ? byte_idx - 10 : byte_idx));
|
| H A D | xmlrpc.c | 722 * XMLRPC_VALUE XMLRPC_VALUE_FromXML(const char* in_buf, int le 727 * in_buf -- character buffer containing XML 738 XMLRPC_VALUE XMLRPC_VALUE_FromXML (const char *in_buf, int len, XMLRPC_REQUEST_INPUT_OPTIONS in_options) { argument 740 XMLRPC_REQUEST req = XMLRPC_REQUEST_FromXML(in_buf, len, in_options); 782 * XMLRPC_REQUEST XMLRPC_REQUEST_FromXML(const char* in_buf, int le 786 * in_buf -- character buffer containing XML 797 XMLRPC_REQUEST XMLRPC_REQUEST_FromXML (const char *in_buf, int len, argument 804 xml_elem_parse_buf (in_buf, len,
|
| /PHP_TRUNK/ext/zlib/ |
| H A D | zlib.c | 305 static int php_zlib_encode(const char *in_buf, size_t in_len, char **out_buf, size_t *out_len, int encoding, int level TSRMLS_DC) argument 318 Z.next_in = (Bytef *) in_buf; 394 static int php_zlib_decode(const char *in_buf, size_t in_len, char **out_buf, size_t *out_len, int encoding, size_t max_len TSRMLS_DC) argument 407 Z.next_in = (Bytef *) in_buf; 634 char *in_buf, *out_buf; \ 640 if (SUCCESS != zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "s|ll", &in_buf, &in_len, &level, &encoding)) { \ 644 if (SUCCESS != zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "sl|l", &in_buf, &in_len, &encoding, &level)) { \ 661 if (SUCCESS != php_zlib_encode(in_buf, in_len, &out_buf, &out_len, encoding, level TSRMLS_CC)) { \ 670 char *in_buf, *out_buf; \ 674 if (SUCCESS != zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "s|l", &in_buf, [all...] |
| /PHP_TRUNK/sapi/fpm/fpm/ |
| H A D | fpm_stdio.c | 96 int in_buf = 0; local 112 res = read(fd, buf + in_buf, max_buf_size - 1 - in_buf); 135 in_buf += res; 140 if (in_buf == 0) { 145 buf[in_buf] = '\0'; 150 if (in_buf == max_buf_size - 1) { 171 memmove(buf, buf + out_buf, in_buf - out_buf); 172 in_buf -= out_buf; 174 in_buf [all...] |
Completed in 10 milliseconds