Searched refs:hHttp (Results 1 - 4 of 4) sorted by relevance

/vbox/include/iprt/
H A Dhttp.h60 * @param hHttp Handle to the HTTP interface.
62 RTR3DECL(void) RTHttpDestroy(RTHTTP hHttp); variable
68 * @param hHttp Handle to the HTTP interface.
72 RTR3DECL(int) RTHttpGetRedirLocation(RTHTTP hHttp, char **ppszRedirLocation);
79 * @param hHttp HTTP interface handle.
84 RTR3DECL(int) RTHttpGetText(RTHTTP hHttp, const char *pcszUrl, char **ppszResponse);
91 * @param hHttp HTTP interface handle.
96 RTR3DECL(int) RTHttpGetBinary(RTHTTP hHttp, const char *pcszUrl, void **ppvResponse, size_t *pcb);
103 * @param hHttp HTTP interface handle.
107 RTR3DECL(int) RTHttpGetFile(RTHTTP hHttp, cons
118 RTR3DECL(int) RTHttpAbort(RTHTTP hHttp); variable
126 RTR3DECL(int) RTHttpUseSystemProxySettings(RTHTTP hHttp); variable
[all...]
/vbox/src/VBox/Runtime/common/misc/
H A Dhttp.cpp82 #define RTHTTP_VALID_RETURN_RC(hHttp, rcCurl) \
84 AssertPtrReturn((hHttp), (rcCurl)); \
85 AssertReturn((hHttp)->u32Magic == RTHTTP_MAGIC, (rcCurl)); \
89 #define RTHTTP_VALID_RETURN(hHTTP) RTHTTP_VALID_RETURN_RC((hHttp), VERR_INVALID_HANDLE)
92 #define RTHTTP_VALID_RETURN_VOID(hHttp) \
94 AssertPtrReturnVoid(hHttp); \
95 AssertReturnVoid((hHttp)->u32Magic == RTHTTP_MAGIC); \
123 RTR3DECL(void) RTHttpDestroy(RTHTTP hHttp) argument
125 if (!hHttp)
128 PRTHTTPINTERNAL pHttpInt = hHttp;
173 RTHttpAbort(RTHTTP hHttp) argument
183 RTHttpGetRedirLocation(RTHTTP hHttp, char **ppszRedirLocation) argument
195 RTHttpUseSystemProxySettings(RTHTTP hHttp) argument
230 RTHttpSetProxy(RTHTTP hHttp, const char *pcszProxy, uint32_t uPort, const char *pcszProxyUser, const char *pcszProxyPwd) argument
262 RTHttpSetHeaders(RTHTTP hHttp, size_t cHeaders, const char * const *papszHeaders) argument
287 RTHttpCertDigest(RTHTTP hHttp, char *pcszCert, size_t cbCert, uint8_t **pabSha1, size_t *pcbSha1, uint8_t **pabSha512, size_t *pcbSha512) argument
346 RTHttpSetCAFile(RTHTTP hHttp, const char *pcszCAFile) argument
447 rtHttpGet(RTHTTP hHttp, const char *pcszUrl, uint8_t **ppvResponse, size_t *pcb) argument
503 RTHttpGetText(RTHTTP hHttp, const char *pcszUrl, char **ppszResponse) argument
513 RTHttpGetBinary(RTHTTP hHttp, const char *pcszUrl, void **ppvResponse, size_t *pcb) argument
532 RTHttpGetFile(RTHTTP hHttp, const char *pszUrl, const char *pszDstFile) argument
[all...]
/vbox/src/VBox/Runtime/testcase/
H A DtstRTHttp.cpp42 static int extractPCA3G5(RTHTTP hHttp, PRTSTREAM CAFile, uint8_t *pu8Buf, size_t cbBuf) argument
66 int rc = RTHttpCertDigest(hHttp, pszBuf, cbBuf,
106 static int extractPCA3(RTHTTP hHttp, PRTSTREAM CAFile, uint8_t *pu8Buf, size_t cbBuf) argument
130 int rc = RTHttpCertDigest(hHttp, pszBuf, cbBuf,
174 static void checkError(RTHTTP hHttp, int rc, const char *pszFile) argument
179 int rc2 = RTHttpGetRedirLocation(hHttp, &pszRedirLocation);
213 RTHTTP hHttp; local
217 int rc = RTHttpCreate(&hHttp);
236 rc = RTHttpGetText(hHttp,
240 rc = extractPCA3G5(hHttp, CAFil
[all...]
/vbox/src/VBox/Runtime/common/dbg/
H A Ddbgcfg.cpp795 RTHTTP hHttp;
796 rc = RTHttpCreate(&hHttp);
799 RTHttpUseSystemProxySettings(hHttp);
807 rc = RTHttpSetHeaders(hHttp, RT_ELEMENTS(s_apszHeaders), s_apszHeaders);
817 rc = RTHttpGetFile(hHttp, szUrl, pszPath);
829 rc = RTHttpGetFile(hHttp, szUrl, pszPath);
840 RTHttpDestroy(hHttp);

Completed in 69 milliseconds