Home
last modified time | relevance | path

Searched refs:buf (Results 301 – 313 of 313) sorted by relevance

1...<<111213

/PHP-7.4/ext/pdo/
H A Dpdo_stmt.c590 zend_string *buf; in fetch_value() local
591 buf = php_stream_copy_to_mem((php_stream*)value, PHP_STREAM_COPY_ALL, 0); in fetch_value()
592 if (buf == NULL) { in fetch_value()
595 ZVAL_STR(dest, buf); in fetch_value()
H A Dpdo_dbh.c207 static char *dsn_from_uri(char *uri, char *buf, size_t buflen) /* {{{ */ in dsn_from_uri() argument
214 dsn = php_stream_get_line(stream, buf, buflen, NULL); in dsn_from_uri()
/PHP-7.4/ext/phar/
H A Dphar_internal.h560 int phar_is_tar(char *buf, char *fname);
H A Dphar.c1547 static inline char *phar_strnstr(const char *buf, int buf_len, const char *search, int search_len) … in phar_strnstr() argument
1556 c = buf - 1; in phar_strnstr()
1563 so_far = c - buf; in phar_strnstr()
3252 static ssize_t phar_zend_stream_reader(void *handle, char *buf, size_t len) /* {{{ */ in phar_zend_stream_reader() argument
3254 return php_stream_read(phar_get_pharfp((phar_archive_data*)handle), buf, len); in phar_zend_stream_reader()
/PHP-7.4/ext/pcre/pcre2lib/sljit/
H A DsljitLir.h388 struct sljit_memory_fragment *buf; member
/PHP-7.4/Zend/
H A Dzend_alloc.c401 char *buf = php_win32_error_to_msg(err); in stderr_last_error() local
403 if (!buf[0]) { in stderr_last_error()
407 fprintf(stderr, "\n%s: [0x%08lx] %s\n", msg, err, buf); in stderr_last_error()
410 php_win32_error_msg_free(buf); in stderr_last_error()
/PHP-7.4/ext/mysqlnd/
H A Dmysqlnd_structs.h178 typedef int (*func_mysqlnd_local_infile__read)(void * ptr, zend_uchar * buf, unsigned int buf_len);
385 …qlnd_vio__network_write)(MYSQLND_VIO * const vio, const zend_uchar * const buf, const size_t count…
/PHP-7.4/ext/xmlwriter/
H A Dphp_xmlwriter.c620 zend_stat_t buf; in _xmlwriter_get_valid_file_path() local
621 if (php_sys_stat(file_dirname, &buf) != 0) { in _xmlwriter_get_valid_file_path()
/PHP-7.4/ext/gd/
H A Dgd.c2739 char buf[4096]; in _php_image_output() local
2773 while ((b = fread(buf, 1, sizeof(buf), tmp)) > 0) { in _php_image_output()
2774 php_write(buf, b); in _php_image_output()
/PHP-7.4/ext/ffi/
H A Dffi.g62 #define yy_buf FFI_G(buf)
H A Dffi_parser.c30 #define yy_buf FFI_G(buf)
/PHP-7.4/ext/sodium/
H A Dlibsodium.c685 char *buf = Z_STRVAL(*buf_zv); in PHP_FUNCTION() local
688 sodium_memzero(buf, (size_t) buf_len); in PHP_FUNCTION()
/PHP-7.4/ext/date/lib/
H A Dparse_date.c316 uchar *buf = (uchar*) timelib_malloc(((s->lim - s->bot) + BSIZE)*sizeof(uchar));
317 memcpy(buf, s->tok, s->lim - s->tok);
318 s->tok = buf;
319 s->ptr = &buf[s->ptr - s->bot];
320 cursor = &buf[cursor - s->bot];
321 s->pos = &buf[s->pos - s->bot];
322 s->lim = &buf[s->lim - s->bot];
325 s->bot = buf;

Completed in 149 milliseconds

1...<<111213