Searched refs:bufsize (Results 1 – 7 of 7) sorted by relevance
/PHP-8.0/ext/mysqlnd/ |
H A D | mysqlnd_loaddata.c | 147 int bufsize; in mysqlnd_handle_local_infile() local 185 …while ((bufsize = infile.local_infile_read (info, buf + MYSQLND_HEADER_SIZE, buflen - MYSQLND_HEAD… in mysqlnd_handle_local_infile() 186 if ((ret = net->data->m.send(net, vio, buf, bufsize, conn->stats, conn->error_info)) == 0) { in mysqlnd_handle_local_infile() 200 if (bufsize < 0) { in mysqlnd_handle_local_infile()
|
/PHP-8.0/ext/standard/ |
H A D | info.c | 597 void php_get_windows_cpu(char *buf, int bufsize) in php_get_windows_cpu() argument 603 snprintf(buf, bufsize, "i%d", SysInfo.dwProcessorType); in php_get_windows_cpu() 606 snprintf(buf, bufsize, "MIPS R%d000", SysInfo.wProcessorLevel); in php_get_windows_cpu() 609 snprintf(buf, bufsize, "Alpha %d", SysInfo.wProcessorLevel); in php_get_windows_cpu() 612 snprintf(buf, bufsize, "PPC 6%02d", SysInfo.wProcessorLevel); in php_get_windows_cpu() 615 snprintf(buf, bufsize, "IA64"); in php_get_windows_cpu() 619 snprintf(buf, bufsize, "IA32"); in php_get_windows_cpu() 624 snprintf(buf, bufsize, "AMD64"); in php_get_windows_cpu() 629 snprintf(buf, bufsize, "Unknown"); in php_get_windows_cpu()
|
/PHP-8.0/main/ |
H A D | network.c | 1022 PHPAPI char *php_socket_strerror(long err, char *buf, size_t bufsize) argument 1031 strncpy(buf, errstr, bufsize); 1032 buf[bufsize?(bufsize-1):0] = 0; 1044 strncpy(buf, sysbuf, bufsize); 1045 buf[bufsize?(bufsize-1):0] = 0;
|
H A D | rfc1867.c | 213 int bufsize; member 247 bytes_to_read = self->bufsize - self->bytes_in_buffer; in fill_buffer() 285 self->bufsize = minsize; in multipart_buffer_new() 339 if (self->bytes_in_buffer < self->bufsize) { in next_line() 343 line[self->bufsize] = 0; in next_line()
|
H A D | php_network.h | 62 PHPAPI char *php_socket_strerror(long err, char *buf, size_t bufsize);
|
/PHP-8.0/sapi/fpm/fpm/ |
H A D | fpm_conf.c | 1572 int bufsize = 0; in fpm_conf_load_ini_file() local 1602 if (n == bufsize) { in fpm_conf_load_ini_file() 1603 bufsize += 1024; in fpm_conf_load_ini_file() 1604 newbuf = (char*) realloc(buf, sizeof(char) * (bufsize + 2)); in fpm_conf_load_ini_file()
|
/PHP-8.0/docs/ |
H A D | streams.md | 291 size_t bufsize, int persistent, const char * mode) 297 * `bufsize` is the size of the buffer to use - if 0, then buffering at the
|
Completed in 22 milliseconds