Home
last modified time | relevance | path

Searched refs:buf (Results 326 – 340 of 340) sorted by relevance

1...<<11121314

/PHP-7.0/ext/pdo/
H A Dpdo_stmt.c596 zend_string *buf; in fetch_value() local
597 buf = php_stream_copy_to_mem((php_stream*)value, PHP_STREAM_COPY_ALL, 0); in fetch_value()
598 if (buf == NULL) { in fetch_value()
601 ZVAL_STR(dest, buf); in fetch_value()
H A Dpdo_dbh.c181 static char *dsn_from_uri(char *uri, char *buf, size_t buflen) /* {{{ */ in dsn_from_uri() argument
188 dsn = php_stream_get_line(stream, buf, buflen, NULL); in dsn_from_uri()
/PHP-7.0/ext/zip/lib/
H A Dzipint.h475 zip_buffer_t *_zip_buffer_new_from_source(zip_source_t *src, zip_uint64_t size, zip_uint8_t *buf, z…
/PHP-7.0/ext/phar/
H A Dphar_internal.h582 int phar_is_tar(char *buf, char *fname);
H A Dphar.c1544 static inline char *phar_strnstr(const char *buf, int buf_len, const char *search, int search_len) … argument
1553 c = buf - 1;
1560 so_far = c - buf;
3267 static size_t phar_zend_stream_reader(void *handle, char *buf, size_t len) /* {{{ */ argument
3269 return php_stream_read(phar_get_pharfp((phar_archive_data*)handle), buf, len);
/PHP-7.0/ext/mysqlnd/
H A Dmysqlnd_structs.h152 int (*local_infile_read)(void *ptr, zend_uchar * buf, unsigned int buf_len);
295 …d_net__network_write_ex)(MYSQLND_NET * const net, const zend_uchar * const buf, const size_t count…
/PHP-7.0/ext/pcre/pcrelib/sljit/
H A DsljitLir.h311 struct sljit_memory_fragment *buf; member
/PHP-7.0/ext/sqlite3/
H A Dsqlite3.c1078 static size_t php_sqlite3_stream_write(php_stream *stream, const char *buf, size_t count) argument
1085 static size_t php_sqlite3_stream_read(php_stream *stream, char *buf, size_t count) argument
1094 if (sqlite3_blob_read(sqlite3_stream->blob, buf, count, sqlite3_stream->position) != SQLITE_OK) {
/PHP-7.0/ext/xmlwriter/
H A Dphp_xmlwriter.c638 zend_stat_t buf; in _xmlwriter_get_valid_file_path() local
639 if (php_sys_stat(file_dirname, &buf) != 0) { in _xmlwriter_get_valid_file_path()
/PHP-7.0/Zend/
H A Dzend_ini_scanner.c280 char *buf; in zend_ini_open_file_for_scanning() local
283 if (zend_stream_fixup(fh, &buf, &size) == FAILURE) { in zend_ini_open_file_for_scanning()
292 yy_scan_buffer(buf, (unsigned int)size); in zend_ini_open_file_for_scanning()
H A Dzend_alloc.c406 LPSTR buf = NULL; in stderr_last_error() local
416 (LPSTR)&buf, in stderr_last_error()
421 fprintf(stderr, "\n%s: [0x%08lx] %s\n", msg, err, buf); in stderr_last_error()
/PHP-7.0/ext/mbstring/oniguruma/
H A Dregexec.c1296 UChar *q, *bp, buf[50]; in match_at() local
1299 bp = buf; in match_at()
1307 fputs((char* )buf, stderr); in match_at()
1308 for (i = 0; i < 20 - (bp - buf); i++) fputc(' ', stderr); in match_at()
H A DHISTORY127 2007/03/02: [bug] invalid optimization for semi-end-buf in onig_search().
1880 2003/01/10: [bug] local variable name was wrong. buf -> tbuf (regerror())
1988 2002/03/08: [spec] allow use of "\A"(begin-buf) in look-behind.
/PHP-7.0/ext/gd/
H A Dgd.c2612 char buf[4096]; in _php_image_output() local
2667 while ((b = fread(buf, 1, sizeof(buf), tmp)) > 0) { in _php_image_output()
2668 php_write(buf, b); in _php_image_output()
/PHP-7.0/ext/date/lib/
H A Dparse_date.c327 uchar *buf = (uchar*) timelib_malloc(((s->lim - s->bot) + BSIZE)*sizeof(uchar));
328 memcpy(buf, s->tok, s->lim - s->tok);
329 s->tok = buf;
330 s->ptr = &buf[s->ptr - s->bot];
331 cursor = &buf[cursor - s->bot];
332 s->pos = &buf[s->pos - s->bot];
333 s->lim = &buf[s->lim - s->bot];
336 s->bot = buf;

Completed in 188 milliseconds

1...<<11121314