Home
last modified time | relevance | path

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

/external/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.c66 struct curl_slist *hhl = NULL; in test() local
81 hhl = curl_slist_append(hhl, "Trailer: my-super-awesome-trailer," in test()
83 if(!hhl) { in test()
88 test_setopt(curl, CURLOPT_HTTPHEADER, hhl); in test()
100 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()
/external/python/cpython2/Doc/library/
Dstruct.rst303 >>> pack('hhl', 1, 2, 3)
305 >>> unpack('hhl', '\x00\x01\x00\x02\x00\x00\x00\x03')
307 >>> calcsize('hhl')
/external/python/cpython3/Doc/library/
Dstruct.rst355 >>> pack('hhl', 1, 2, 3)
357 >>> unpack('hhl', b'\x00\x01\x00\x02\x00\x00\x00\x03')
359 >>> calcsize('hhl')
/external/python/cpython2/Doc/faq/
Dlibrary.rst494 x, y, z = struct.unpack(">hhl", s)
/external/python/cpython3/Doc/faq/
Dlibrary.rst510 x, y, z = struct.unpack(">hhl", s)