Home
last modified time | relevance | path

Searched refs:buf_len (Results 26 – 37 of 37) sorted by relevance

12

/PHP-5.5/ext/standard/
H A Dfilters.c1543 const char *ps, size_t buf_len, size_t *consumed, in strfilter_convert_append_bucket() argument
1559 initial_out_buf_size = buf_len; in strfilter_convert_append_bucket()
1560 icnt = buf_len; in strfilter_convert_append_bucket()
1731 *consumed += buf_len - icnt; in strfilter_convert_append_bucket()
/PHP-5.5/ext/iconv/
H A Diconv.c2558 const char *ps, size_t buf_len, size_t *consumed, in php_iconv_stream_filter_append_bucket() argument
2572 initial_out_buf_size = buf_len; in php_iconv_stream_filter_append_bucket()
2573 icnt = buf_len; in php_iconv_stream_filter_append_bucket()
2751 *consumed += buf_len - icnt; in php_iconv_stream_filter_append_bucket()
/PHP-5.5/ext/soap/
H A Dphp_encoding.c2987 size_t buf_len=64, real_len; in to_xml_datetime_ex() local
3005 buf = (char *) emalloc(buf_len); in to_xml_datetime_ex()
3006 while ((real_len = strftime(buf, buf_len, format, ta)) == buf_len || real_len == 0) { in to_xml_datetime_ex()
3007 buf_len *= 2; in to_xml_datetime_ex()
3008 buf = (char *) erealloc(buf, buf_len); in to_xml_datetime_ex()
3028 if (real_len >= buf_len) { in to_xml_datetime_ex()
/PHP-5.5/ext/date/
H A Dphp_date.c1636 size_t buf_len = 256, real_len; in php_strftime() local
1692 buf = (char *) emalloc(buf_len); in php_strftime()
1693 while ((real_len=strftime(buf, buf_len, format, &ta))==buf_len || real_len==0) { in php_strftime()
1694 buf_len *= 2; in php_strftime()
1695 buf = (char *) erealloc(buf, buf_len); in php_strftime()
1713 if (real_len && real_len != buf_len) { in php_strftime()
/PHP-5.5/main/
H A Dphp_streams.h553 PHPAPI char *php_stream_locate_eol(php_stream *stream, char *buf, size_t buf_len TSRMLS_DC);
/PHP-5.5/ext/phar/
H A Dphar.c1528 static inline char *phar_strnstr(const char *buf, int buf_len, const char *search, int search_len) … argument
1533 if (buf_len < search_len) {
1540 if (!(c = memchr(c + 1, search[0], buf_len - search_len - so_far))) {
1546 if (so_far >= (buf_len - search_len)) {
/PHP-5.5/ext/curl/
H A Dinterface.c1678 static int curl_debug(CURL *cp, curl_infotype type, char *buf, size_t buf_len, void *ctx) /* {{{ */ in curl_debug() argument
1686 if (buf_len > 0) { in curl_debug()
1687 ch->header.str = estrndup(buf, buf_len); in curl_debug()
1688 ch->header.str_len = buf_len; in curl_debug()
/PHP-5.5/main/streams/
H A Dstreams.c842 PHPAPI char *php_stream_locate_eol(php_stream *stream, char *buf, size_t buf_len TSRMLS_DC) in php_stream_locate_eol()
853 avail = buf_len; in php_stream_locate_eol()
/PHP-5.5/ext/spl/
H A Dspl_directory.c2168 size_t buf_len = intern->u.file.current_line_len; in spl_filesystem_file_read_csv() local
2169 char *buf = estrndup(intern->u.file.current_line, buf_len); in spl_filesystem_file_read_csv()
2176 …php_fgetcsv(intern->u.file.stream, delimiter, enclosure, escape, buf_len, buf, intern->u.file.curr… in spl_filesystem_file_read_csv()
/PHP-5.5/ext/mysqlnd/
H A Dmysqlnd_structs.h153 int (*local_infile_read)(void *ptr, zend_uchar * buf, unsigned int buf_len TSRMLS_DC);
/PHP-5.5/ext/pdo/
H A Dpdo_stmt.c2333 static int pdo_row_serialize(zval *object, unsigned char **buffer, zend_uint *buf_len, zend_seriali…
2799 static int pdo_row_serialize(zval *object, unsigned char **buffer, zend_uint *buf_len, zend_seriali… in pdo_row_serialize() argument
/PHP-5.5/ext/pgsql/
H A Dpgsql.c3371 int buf_len = PGSQL_LO_READ_BUF_SIZE, nbytes, argc = ZEND_NUM_ARGS(); local
3382 buf_len = len;
3385 buf = (char *) safe_emalloc(sizeof(char), (buf_len+1), 0);
3386 if ((nbytes = lo_read((PGconn *)pgsql->conn, pgsql->lofd, buf, buf_len))<0) {

Completed in 134 milliseconds

12