Home
last modified time | relevance | path

Searched refs:bufsize (Results 1 – 9 of 9) sorted by path

/PHP-7.3/
H A DREADME.STREAMS268 size_t bufsize, int persistent, const char * mode)
273 bufsize is the size of the buffer to use - if 0, then buffering at the stream
/PHP-7.3/ext/mbstring/oniguruma/src/
H A Dregerror.c340 void onig_snprintf_with_pattern(UChar buf[], int bufsize, OnigEncoding enc, in onig_snprintf_with_pattern() argument
349 n = xvsnprintf((char* )buf, bufsize, (const char* )fmt, args); in onig_snprintf_with_pattern()
354 if (n + need < bufsize) { in onig_snprintf_with_pattern()
355 xstrcat((char* )buf, ": /", bufsize); in onig_snprintf_with_pattern()
H A Dregint.h917 extern void onig_snprintf_with_pattern PV_((UChar buf[], int bufsize, OnigEncoding enc, UChar* pa…
/PHP-7.3/ext/mysqlnd/
H A Dmysqlnd_loaddata.c149 int bufsize; in mysqlnd_handle_local_infile() local
187 …while ((bufsize = infile.local_infile_read (info, buf + MYSQLND_HEADER_SIZE, buflen - MYSQLND_HEAD… in mysqlnd_handle_local_infile()
188 if ((ret = net->data->m.send(net, vio, buf, bufsize, conn->stats, conn->error_info)) == 0) { in mysqlnd_handle_local_infile()
202 if (bufsize < 0) { in mysqlnd_handle_local_infile()
/PHP-7.3/ext/standard/
H A Dinfo.c621 void php_get_windows_cpu(char *buf, int bufsize) in php_get_windows_cpu() argument
627 snprintf(buf, bufsize, "i%d", SysInfo.dwProcessorType); in php_get_windows_cpu()
630 snprintf(buf, bufsize, "MIPS R%d000", SysInfo.wProcessorLevel); in php_get_windows_cpu()
633 snprintf(buf, bufsize, "Alpha %d", SysInfo.wProcessorLevel); in php_get_windows_cpu()
636 snprintf(buf, bufsize, "PPC 6%02d", SysInfo.wProcessorLevel); in php_get_windows_cpu()
639 snprintf(buf, bufsize, "IA64"); in php_get_windows_cpu()
643 snprintf(buf, bufsize, "IA32"); in php_get_windows_cpu()
648 snprintf(buf, bufsize, "AMD64"); in php_get_windows_cpu()
653 snprintf(buf, bufsize, "Unknown"); in php_get_windows_cpu()
/PHP-7.3/main/
H A Dnetwork.c1025 PHPAPI char *php_socket_strerror(long err, char *buf, size_t bufsize) argument
1034 strncpy(buf, errstr, bufsize);
1035 buf[bufsize?(bufsize-1):0] = 0;
1059 strncpy(buf, sysbuf, bufsize);
1060 buf[bufsize?(bufsize-1):0] = 0;
H A Dphp_network.h64 PHPAPI char *php_socket_strerror(long err, char *buf, size_t bufsize);
H A Drfc1867.c224 int bufsize; member
258 bytes_to_read = self->bufsize - self->bytes_in_buffer; in fill_buffer()
300 self->bufsize = minsize; in multipart_buffer_new()
354 if (self->bytes_in_buffer < self->bufsize) { in next_line()
358 line[self->bufsize] = 0; in next_line()
/PHP-7.3/sapi/fpm/fpm/
H A Dfpm_conf.c1522 int bufsize = 0; in fpm_conf_load_ini_file() local
1552 if (n == bufsize) { in fpm_conf_load_ini_file()
1553 bufsize += 1024; in fpm_conf_load_ini_file()
1554 newbuf = (char*) realloc(buf, sizeof(char) * (bufsize + 2)); in fpm_conf_load_ini_file()

Completed in 37 milliseconds