Home
last modified time | relevance | path

Searched refs:hhl (Results 1 – 7 of 7) sorted by relevance

/third_party/curl/tests/libtest/
Dlib1527.c51 struct curl_slist *hhl = NULL, *tmp = NULL; in test() local
65 hhl = curl_slist_append(hhl, "User-Agent: Http Agent"); in test()
66 if(!hhl) { in test()
69 tmp = curl_slist_append(hhl, "Expect: 100-continue"); in test()
73 hhl = tmp; in test()
77 test_setopt(curl, CURLOPT_HTTPHEADER, hhl); in test()
95 curl_slist_free_all(hhl); in test()
Dlib1525.c52 struct curl_slist *hhl = NULL; in test() local
66 hhl = curl_slist_append(hhl, "User-Agent: Http Agent"); in test()
68 if(!hhl) { in test()
74 test_setopt(curl, CURLOPT_HTTPHEADER, hhl); in test()
75 test_setopt(curl, CURLOPT_PROXYHEADER, hhl); in test()
93 curl_slist_free_all(hhl); in test()
Dlib1528.c32 struct curl_slist *hhl = NULL; in test() local
47 hhl = curl_slist_append(hhl, "User-Agent: Http Agent"); in test()
50 if(!hhl) { in test()
56 test_setopt(curl, CURLOPT_HTTPHEADER, hhl); in test()
68 curl_slist_free_all(hhl); in test()
Dlib1591.c79 struct curl_slist *hhl = NULL; in test() local
94 hhl = curl_slist_append(hhl, "Trailer: my-super-awesome-trailer," in test()
96 if(!hhl) { in test()
101 test_setopt(curl, CURLOPT_HTTPHEADER, hhl); in test()
113 curl_slist_free_all(hhl); in test()
Dlib1526.c50 struct curl_slist *hhl = NULL, *phl = NULL, *tmp = NULL; in test() local
64 hhl = curl_slist_append(hhl, "User-Agent: Http Agent"); in test()
66 if(!hhl || !phl) { in test()
77 test_setopt(curl, CURLOPT_HTTPHEADER, hhl); in test()
96 curl_slist_free_all(hhl); in test()
/third_party/python/Doc/library/
Dstruct.rst350 >>> pack('hhl', 1, 2, 3)
352 >>> unpack('hhl', b'\x00\x01\x00\x02\x00\x00\x00\x03')
354 >>> calcsize('hhl')
/third_party/python/Doc/faq/
Dlibrary.rst507 x, y, z = struct.unpack(">hhl", s)