Searched refs:buf (Results 301 – 313 of 313) sorted by relevance
1...<<111213
/PHP-7.4/ext/pdo/ |
H A D | pdo_stmt.c | 590 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 D | pdo_dbh.c | 207 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 D | phar_internal.h | 560 int phar_is_tar(char *buf, char *fname);
|
H A D | phar.c | 1547 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 D | sljitLir.h | 388 struct sljit_memory_fragment *buf; member
|
/PHP-7.4/Zend/ |
H A D | zend_alloc.c | 401 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 D | mysqlnd_structs.h | 178 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 D | php_xmlwriter.c | 620 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 D | gd.c | 2739 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 D | ffi.g | 62 #define yy_buf FFI_G(buf)
|
H A D | ffi_parser.c | 30 #define yy_buf FFI_G(buf)
|
/PHP-7.4/ext/sodium/ |
H A D | libsodium.c | 685 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 D | parse_date.c | 316 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 202 milliseconds
1...<<111213