Lines Matching defs:req
44 HttpClientError req;
46 int errorCode = req.GetErrorCode();
52 HttpClientError req;
54 req.SetErrorCode(HttpErrorCode::HTTP_PERMISSION_DENIED_CODE);
55 int errorCode = req.GetErrorCode();
61 HttpClientError req;
63 string errorMsg = req.GetErrorMessage();
69 HttpClientError req;
71 req.SetErrorCode(HttpErrorCode::HTTP_PERMISSION_DENIED_CODE);
72 string errorMsg = req.GetErrorMessage();
78 HttpClientError req;
80 req.SetCURLResult(CURLE_OK);
81 int errorCode = req.GetErrorCode();
87 HttpClientError req;
89 req.SetCURLResult(CURLE_UNSUPPORTED_PROTOCOL);
90 int errorCode = req.GetErrorCode();