Home
last modified time | relevance | path

Searched refs:buffer (Results 226 – 250 of 300) sorted by relevance

12345678910>>...12

/PHP-5.4/sapi/apache/
H A Dmod_php5.c36 static int sapi_apache_read_post(char *buffer, uint count_bytes TSRMLS_DC);
125 static int sapi_apache_read_post(char *buffer, uint count_bytes TSRMLS_DC) in sapi_apache_read_post() argument
144 read_bytes = get_client_block(r, buffer+total_read_bytes, count_bytes-total_read_bytes); in sapi_apache_read_post()
/PHP-5.4/ext/libxml/
H A Dlibxml.c354 static int php_libxml_streams_IO_read(void *context, char *buffer, int len) in php_libxml_streams_IO_read() argument
357 return php_stream_read((php_stream*)context, buffer, len); in php_libxml_streams_IO_read()
360 static int php_libxml_streams_IO_write(void *context, const char *buffer, int len) in php_libxml_streams_IO_write() argument
363 return php_stream_write((php_stream*)context, buffer, len); in php_libxml_streams_IO_write()
/PHP-5.4/ext/mysqlnd/
H A Dmysqlnd_wireprotocol.h289 PHPAPI void php_mysqlnd_scramble(zend_uchar * const buffer, const zend_uchar * const scramble, cons…
H A Dmysqlnd_structs.h65 zend_uchar *buffer; member
277 …ysqlnd_net__network_read_ex)(MYSQLND_NET * const net, zend_uchar * const buffer, const size_t coun…
279 typedef size_t (*func_mysqlnd_net__send_ex)(MYSQLND_NET * const net, zend_uchar * const buffer, …
280 …unc_mysqlnd_net__receive_ex)(MYSQLND_NET * const net, zend_uchar * const buffer, const size_t coun…
H A Dmysqlnd_ps_codec.c976 zend_uchar *p = stmt->execute_cmd_buffer.buffer, in mysqlnd_stmt_execute_generate_request()
977 *cmd_buffer = stmt->execute_cmd_buffer.buffer; in mysqlnd_stmt_execute_generate_request()
998 *free_buffer = (cmd_buffer != stmt->execute_cmd_buffer.buffer); in mysqlnd_stmt_execute_generate_request()
/PHP-5.4/ext/oci8/tests/
H A Dbug27303_1.phpt7 // The bind buffer size edge cases seem to change each DB version.
H A Dbug27303_2.phpt7 // The bind buffer size edge cases seem to change each DB version.
H A Dbug27303_4.phpt7 // The bind buffer size edge cases seem to change each DB version.
/PHP-5.4/ext/standard/tests/strings/
H A Dwordwrap_variation4.phpt6 * Description: Wraps buffer to selected number of characters using string break char
/PHP-5.4/Zend/
H A Dconfigure.in58 int zend_sprintf(char *buffer, const char *format, ...);
H A Dzend_language_parser.y1188 char buffer[120]; variable
1219 snprintf(buffer, sizeof(buffer), "'%.*s' %.*s", len, str, toklen, tok1);
1221 snprintf(buffer, sizeof(buffer), "'%.*s'", len, str);
1223 yystpcpy(yyres, buffer);
/PHP-5.4/ext/soap/
H A Dsoap.c2158 char buffer[1024]; local
2171 buffer_len = vslprintf(buffer, sizeof(buffer)-1, format, argcopy);
2174 buffer_len = vslprintf(buffer, sizeof(buffer)-1, format, args);
2176 buffer[sizeof(buffer)-1]=0;
2178 buffer_len = sizeof(buffer) - 1;
2229 char buffer[1024]; local
2243 strcpy(buffer, "Internal Error");
2252 buffer_len = vslprintf(buffer, sizeof(buffer)-1, format, argcopy);
2255 buffer_len = vslprintf(buffer, sizeof(buffer)-1, format, args);
2257 buffer[sizeof(buffer)-1]=0;
[all …]
/PHP-5.4/sapi/isapi/
H A Dphp5isapi.c327 static int sapi_isapi_read_post(char *buffer, uint count_bytes TSRMLS_DC) in sapi_isapi_read_post() argument
336 memcpy(buffer, lpECB->lpbData+SG(read_post_bytes), read_from_buf); in sapi_isapi_read_post()
346 if (!lpECB->ReadClient(lpECB->ConnID, buffer+read_from_buf+cbRead, &cbSize) || cbSize==0) { in sapi_isapi_read_post()
/PHP-5.4/ext/standard/tests/file/
H A Duserstreams.phpt8 * user streams and also gives the seek/gets/buffer
185 /* some default seeks that will cause buffer/cache misses */
/PHP-5.4/ext/phar/tests/tar/files/
H A Dmake.dangerous.tar.php.inc3 // this tarmaker makes a malicious tar with a header designed to overflow the buffer
/PHP-5.4/ext/gd/libgd/
H A Dgd.h268 int (*source) (void *context, char *buffer, int len);
508 int (*sink) (void *context, const char *buffer, int len);
/PHP-5.4/main/
H A Dphp_output.h135 php_output_buffer buffer; member
H A DSAPI.h238 int (*read_post)(char *buffer, uint count_bytes TSRMLS_DC);
/PHP-5.4/sapi/thttpd/
H A Dthttpd.c248 static int sapi_thttpd_read_post(char *buffer, uint count_bytes TSRMLS_DC) in sapi_thttpd_read_post() argument
254 memcpy(buffer, TG(hc)->read_buf + TG(hc)->checked_idx, read_bytes); in sapi_thttpd_read_post()
/PHP-5.4/ext/simplexml/
H A Dsimplexml.c411 xmlChar *buffer; in change_node_zval() local
432 buffer = xmlEncodeEntitiesReentrant(node->doc, (xmlChar *)Z_STRVAL_P(value)); in change_node_zval()
433 buffer_len = xmlStrlen(buffer); in change_node_zval()
435 if (buffer) { in change_node_zval()
436 xmlNodeSetContentLen(node, buffer, buffer_len); in change_node_zval()
437 xmlFree(buffer); in change_node_zval()
1430 RETVAL_STRINGL((char *)outbuf->buffer->content, outbuf->buffer->use, 1); in SXE_METHOD()
/PHP-5.4/main/streams/
H A Dstreams.c252 char *buffer = NULL; in php_stream_wrapper_log_error() local
255 vspprintf(&buffer, 0, fmt, args); in php_stream_wrapper_log_error()
259 php_error_docref(NULL TSRMLS_CC, E_WARNING, "%s", buffer); in php_stream_wrapper_log_error()
260 efree(buffer); in php_stream_wrapper_log_error()
274 zend_llist_init(&new_list, sizeof buffer, wrapper_error_dtor, 0); in php_stream_wrapper_log_error()
280 zend_llist_add_element(list, &buffer); in php_stream_wrapper_log_error()
/PHP-5.4/ext/mbstring/libmbfl/mbfl/
H A Dmbfilter.c320 if (convd != NULL && result != NULL && convd->device.buffer != NULL) { in mbfl_buffer_converter_getbuffer()
322 result->val = convd->device.buffer; in mbfl_buffer_converter_getbuffer()
890 if (c == (int)pc->needle.buffer[pc->needle_pos]) { in collector_strpos()
902 h = (int *)pc->needle.buffer; in collector_strpos()
907 m = (int *)pc->needle.buffer; in collector_strpos()
1226 if (pc.needle.buffer == NULL) { in mbfl_substr_count()
2433 encoding = mbfl_name2encoding((const char *)&pd->tmpdev.buffer[pd->cspos]); in mime_header_decoder_collector()
H A Dmbfl_convert.c441 p = src->buffer; in mbfl_convert_filter_devcat()
/PHP-5.4/ext/standard/
H A Dfile.c1178 char *buffer = NULL; in PHP_FUNCTION() local
1197 ret = php_stream_write(stream, buffer ? buffer : arg2, num_bytes); in PHP_FUNCTION()
1198 if (buffer) { in PHP_FUNCTION()
1199 efree(buffer); in PHP_FUNCTION()
H A Dbasic_functions.c2109 ZEND_ARG_INFO(0, buffer)
2114 ZEND_ARG_INFO(0, buffer)
2622 ZEND_ARG_INFO(0, buffer)
3823 char buffer[40]; in PHP_NAMED_FUNCTION() local
3839 if (!inet_ntop(af, address, buffer, sizeof(buffer))) { in PHP_NAMED_FUNCTION()
3844 RETURN_STRING(buffer, 1); in PHP_NAMED_FUNCTION()
3857 char buffer[17]; in PHP_NAMED_FUNCTION() local
3863 memset(buffer, 0, sizeof(buffer)); in PHP_NAMED_FUNCTION()
3875 ret = inet_pton(af, address, buffer); in PHP_NAMED_FUNCTION()
3882 RETURN_STRINGL(buffer, af == AF_INET ? 4 : 16, 1); in PHP_NAMED_FUNCTION()

Completed in 108 milliseconds

12345678910>>...12