Home
last modified time | relevance | path

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

/PHP-7.4/sapi/fpm/fpm/
H A Dfpm_stdio.c125 int in_buf = 0, cmd_pos = 0, pos, start; local
167 in_buf = read(fd, buf, max_buf_size - 1);
168 if (in_buf <= 0) { /* no data */
169 if (in_buf == 0 || (errno != EAGAIN && errno != EWOULDBLOCK)) {
171 read_fail = (in_buf < 0) ? in_buf : 1;
177 if ((sizeof(FPM_STDIO_CMD_FLUSH) - cmd_pos) <= in_buf &&
186 for (pos = start; pos < in_buf; pos++) {
194 if (pos + sizeof(FPM_STDIO_CMD_FLUSH) <= in_buf) {
201 } else if (!memcmp(buf + pos, FPM_STDIO_CMD_FLUSH, in_buf - pos)) {
202 cmd_pos = in_buf - pos;
/PHP-7.4/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)) { \
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.4/ext/xmlrpc/libxmlrpc/
H A Dxml_element.c680 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
690 if(in_buf) { in xml_elem_parse_buf()
708 len = strlen(in_buf); in xml_elem_parse_buf()
712 if(XML_Parse(parser, (const unsigned char *) in_buf, len, 1) == 0) { in xml_elem_parse_buf()
727 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.c739 XMLRPC_VALUE XMLRPC_VALUE_FromXML (const char *in_buf, int len, XMLRPC_REQUEST_INPUT_OPTIONS in_opt… in XMLRPC_VALUE_FromXML() argument
741 XMLRPC_REQUEST req = XMLRPC_REQUEST_FromXML(in_buf, len, in_options); in XMLRPC_VALUE_FromXML()
798 XMLRPC_REQUEST XMLRPC_REQUEST_FromXML (const char *in_buf, int len, in XMLRPC_REQUEST_FromXML() argument
805 xml_elem_parse_buf (in_buf, len, in XMLRPC_REQUEST_FromXML()

Completed in 26 milliseconds