Lines Matching refs:http

9  * or http://www.opensolaris.org/os/licensing.
924 http_t *http = arg;
926 kmem_cache_free(http_kmc, http);
1183 * http_t *http with the results.
1190 http_t *http = kmem_cache_alloc(http_kmc, KM_SLEEP);
1206 uri->scheme = (void *)http;
1214 http->parsed = B_FALSE;
1215 http->accept.cp = NULL;
1216 http->acceptchar.cp = NULL;
1217 http->acceptenco.cp = NULL;
1218 http->acceptlang.cp = NULL;
1219 http->etag.cp = NULL;
1220 http->uagent.cp = NULL;
1221 http->date = -1;
1222 http->expire = -1;
1223 http->lastmod = -1;
1229 http->major = 0;
1230 http->minor = 9;
1256 http->major = *cp++ - '0';
1265 http->minor = *cp++ - '0';
1280 if (http->major == 1) {
1281 if (http->minor >= 1) {
1288 } else if (http->major == 0) {
1308 * optionally convert and store *http.
1330 http->acceptchar.cp = hp;
1331 http->acceptchar.ep = ep;
1335 http->acceptenco.cp = hp;
1336 http->acceptenco.ep = ep;
1340 http->acceptlang.cp = hp;
1341 http->acceptlang.ep = ep;
1345 http->accept.cp = hp;
1346 http->accept.ep = ep;
1361 http->date = secs;
1365 http->etag.cp = hp;
1366 http->etag.ep = ep;
1376 http->moddate = secs;
1377 http->modtokid = match->tokid;
1386 http->uagent.cp = hp;
1387 http->uagent.ep = ep;
1436 if (http->major == 1) {
1438 if (http->minor >= 1) {
1468 http_t *http = uri->scheme;
1481 ASSERT(http != NULL);
1483 if (http->parsed) {
1591 if (http->major == 1) {
1592 if (http->minor >= 1) {
1599 } else if (http->major == 0) {
1620 * optionally convert and store *http.
1678 http->date = secs;
1682 http->etag.cp = hp;
1683 http->etag.ep = ep;
1687 http->expire = secs;
1695 http->lastmod = secs;
1743 http->parsed = B_TRUE;
1745 http->headlen = (cp - *cpp);
1753 uri->resplen += http->headlen;
1761 if (http->major == 1) {
1763 if (http->minor >= 1) {
1793 if (http->expire != -1 && http->date != -1) {
1794 if (http->expire <= http->date) {
1800 uri->expire = ddi_get_lbolt() + SEC_TO_TICK(http->expire -
1801 http->date);