Home
last modified time | relevance | path

Searched refs:buffer (Results 1 – 25 of 291) sorted by path

12345678910>>...12

/PHP-5.5/
H A DNEWS11 . Fixed bug #70480 (php_url_parse_ex() buffer overflow read). (Stas)
12 . Fixed bug #72513 (Stack-based buffer overflow vulnerability in
47 . Fixed bug #72520 (Stack-based buffer overflow vulnerability in
190 . Fixed bug #70755 (fpm_log.c memory leak and buffer overflow).
402 . Fixed bug #69522 (heap buffer overflow in unpack()). (Stas)
628 buffer overflow). (Stas)
2560 . Fixed bug #63235 (buffer overflow in use of SQLGetDiagRec).
2642 . Fixed bug #63235 (buffer overflow in use of SQLGetDiagRec).
3298 buffer is empty). (Pierrick)
3505 . Fixed bug #45893 (Snmp buffer limited to 2048 char)
[all …]
H A DREADME.NEW-OUTPUT-API36 Flushing one output buffer:
44 Cleaning one output buffer:
52 Discarding one output buffer:
60 Stopping (and dropping) one output buffer:
H A DREADME.STREAMS115 If you want to read the contents of a stream into an allocated memory buffer,
121 This function will set buf to the address of the buffer that it allocated,
124 The buffer is allocated using pemalloc(); you need to call pefree() to
228 itself, which holds some state information (and possibly a buffer) and a
274 bufsize is the size of the buffer to use - if 0, then buffering at the stream
355 such as coping with a buffer size too small to hold the data,
H A Dacinclude.m41782 __ssize_t reader(void *cookie, char *buffer, size_t size)
1784 __ssize_t writer(void *cookie, const char *buffer, size_t size)
2831 CRYPTD buffer;
2832 crypt_r("passwd", "hash", &buffer);
2841 struct crypt_data buffer;
2842 crypt_r("passwd", "hash", &buffer);
2853 struct crypt_data buffer;
2854 crypt_r("passwd", "hash", &buffer);
H A Dconfigure.in63 int zend_sprintf(char *buffer, const char *format, ...);
/PHP-5.5/TSRM/
H A Dtsrm_win32.c716 TSRM_API char *realpath(char *orig_path, char *buffer) in realpath() argument
718 int ret = GetFullPathName(orig_path, _MAX_PATH, buffer, NULL); in realpath()
722 return buffer; in realpath()
H A Dtsrm_win32.h109 TSRM_API char *realpath(char *orig_path, char *buffer);
/PHP-5.5/Zend/
H A DZEND_CHANGES1107 buffer. Header information (header(), content type, cookies) are
H A Dconfigure.in58 int zend_sprintf(char *buffer, const char *format, ...);
H A Dzend.h515 …int (*serialize)(zval *object, unsigned char **buffer, zend_uint *buf_len, zend_serialize_data *da…
H A Dzend_interfaces.c400 ZEND_API int zend_user_serialize(zval *object, unsigned char **buffer, zend_uint *buf_len, zend_ser… in zend_user_serialize() argument
418 *buffer = (unsigned char*)estrndup(Z_STRVAL_P(retval), Z_STRLEN_P(retval)); in zend_user_serialize()
458 ZEND_API int zend_class_serialize_deny(zval *object, unsigned char **buffer, zend_uint *buf_len, ze… in zend_class_serialize_deny() argument
H A Dzend_interfaces.h64 ZEND_API int zend_user_serialize(zval *object, unsigned char **buffer, zend_uint *buf_len, zend_ser…
67 ZEND_API int zend_class_serialize_deny(zval *object, unsigned char **buffer, zend_uint *buf_len, ze…
H A Dzend_language_parser.y1232 char buffer[120]; variable
1263 snprintf(buffer, sizeof(buffer), "'%.*s' %.*s", len, str, toklen, tok1);
1265 snprintf(buffer, sizeof(buffer), "'%.*s'", len, str);
1267 yystpcpy(yyres, buffer);
H A Dzend_sprintf.c31 int zend_sprintf(char *buffer, const char *format, ...) in zend_sprintf() argument
36 vsprintf(buffer, format, args); in zend_sprintf()
39 return strlen(buffer); in zend_sprintf()
/PHP-5.5/Zend/tests/
H A Dbug64960.phpt32 Notice: ob_end_flush(): failed to delete and flush buffer. No buffer to delete or flush in %sbug649…
H A Dgc_023.phpt2 GC 023: Root buffer overflow (automatic collection)
/PHP-5.5/build/
H A Dlibtool.m4816 # (any single argument exceeding 2000 bytes causes a buffer overrun
/PHP-5.5/ext/bcmath/libbcmath/src/
H A Dint2num.c49 char buffer[30]; local
62 bptr = buffer;
/PHP-5.5/ext/date/lib/
H A Dparse_tz.c79 memcpy(&buffer, *tzf, sizeof(buffer)); in read_header()
105 if (!buffer) { in read_transistions()
111 buffer[i] = timelib_conv_int(buffer[i]); in read_transistions()
116 free(buffer); in read_transistions()
149 if (!buffer) { in read_types()
157 free(buffer); in read_types()
163 …tz->type[i].offset = (buffer[j] * 16777216) + (buffer[j + 1] * 65536) + (buffer[j + 2] * 256) + bu… in read_types()
167 free(buffer); in read_types()
207 free(buffer); in read_types()
242 memcpy(&buffer, *tzf, sizeof(buffer)); in read_location()
[all …]
/PHP-5.5/ext/date/
H A Dphp_date.c1063 char buffer[97]; in date_format() local
1137 length = slprintf(buffer, 32, "%03d", retval); in date_format()
1151 case 'O': length = slprintf(buffer, 32, "%c%02d%s%02d", in date_format()
1160 length = slprintf(buffer, 32, "%s", "UTC"); in date_format()
1170 length = slprintf(buffer, 32, "%c%02d:%02d", in date_format()
1203 default: buffer[0] = format[i]; buffer[1] = '\0'; length = 1; break; in date_format()
1205 smart_str_appendl(&string, buffer, length); in date_format()
4275 char buffer[33]; in date_interval_format() local
4306 length = slprintf(buffer, 32, "(unknown)"); in date_interval_format()
4313 default: buffer[0] = '%'; buffer[1] = format[i]; buffer[2] = '\0'; length = 2; break; in date_interval_format()
[all …]
/PHP-5.5/ext/date/tests/
H A Dbug49585.phpt2 Bug #49585 (date_format buffer not long enough for >4 digit years)
/PHP-5.5/ext/dba/
H A Dinstall_cdb.sh41 ar x ../buffer.a
/PHP-5.5/ext/dom/
H A Ddocumenttype.c216 smart_str_appendl(&ret_buf, buff->buffer->content, buff->buffer->use); in dom_documenttype_internal_subset_read()
H A Dnode.c1901 ret = buf->buffer->use; in dom_canonicalization()
1907 RETVAL_STRINGL((char *) buf->buffer->content, ret, 1); in dom_canonicalization()
/PHP-5.5/ext/ereg/tests/
H A D007.phpt2 Test empty result buffer in reg_replace

Completed in 122 milliseconds

12345678910>>...12