Searched refs:vec (Results 1 – 4 of 4) sorted by relevance
/PHP-5.6/sapi/tux/ |
H A D | php_tux.c | 64 vec[n++].iov_len = str_length; in sapi_tux_ub_write() 102 struct iovec *vec; in sapi_tux_send_headers() local 121 vec[0].iov_base = status_line; in sapi_tux_send_headers() 122 vec[0].iov_len = len; in sapi_tux_send_headers() 139 vec[n].iov_base = h->header; in sapi_tux_send_headers() 143 vec = realloc(vec, sizeof(struct iovec) * max_headers); in sapi_tux_send_headers() 145 vec[n].iov_base = "\r\n"; in sapi_tux_send_headers() 146 vec[n++].iov_len = 2; in sapi_tux_send_headers() 151 vec[n].iov_base = "\r\n"; in sapi_tux_send_headers() 152 vec[n++].iov_len = 2; in sapi_tux_send_headers() [all …]
|
/PHP-5.6/sapi/thttpd/ |
H A D | thttpd.c | 113 PHP_SYS_CALL(n = writev(TG(hc)->conn_fd, vec, nvec);); in do_writev() 133 for (i = 0; i < nvec; vec++, i++) { in do_writev() 135 if (n >= vec->iov_len) { in do_writev() 137 n -= vec->iov_len; in do_writev() 143 vec->iov_base = (char *) vec->iov_base + n; in do_writev() 144 vec->iov_len -= n; in do_writev() 148 smart_str_appendl_ex(&TG(sbuf), vec->iov_base, vec->iov_len, 1); in do_writev() 160 # define ADD_VEC(str,l) vec[n].iov_base=str;len += (vec[n].iov_len=l); n++ 161 # define VEC_BASE() struct iovec vec[COMBINE_HEADERS] 214 len = do_writev(vec, n, len TSRMLS_CC); in sapi_thttpd_send_headers() [all …]
|
/PHP-5.6/sapi/litespeed/ |
H A D | lsapilib.c | 1710 sendfilevec_t vec[1]; in gsendfile() local 1712 vec[n].sfv_fd = fdIn; in gsendfile() 1713 vec[n].sfv_flag = 0; in gsendfile() 1714 vec[n].sfv_off = *off; in gsendfile() 1715 vec[n].sfv_len = size; in gsendfile() 1719 ssize_t ret = sendfilev( fdOut, vec, n, &written ); in gsendfile()
|
/PHP-5.6/ext/pcre/pcrelib/doc/ |
H A D | pcre.txt | 3518 whose address is passed in ovector. The number of elements in the vec-
|
Completed in 46 milliseconds