Home | History | Annotate | Download | only in win

Lines Matching refs:statusCode

52 static LPCTSTR CFHTTPMessageCopyLocalizedShortDescriptionForStatusCode(CFIndex statusCode)
55 if (statusCode < 100 || statusCode >= 600)
57 else if (statusCode >= 100 && statusCode <= 199) {
58 switch (statusCode) {
69 } else if (statusCode >= 200 && statusCode <= 299) {
70 switch (statusCode) {
96 } else if (statusCode >= 300 && statusCode <= 399) {
97 switch (statusCode) {
124 } else if (statusCode >= 400 && statusCode <= 499) {
125 switch (statusCode) {
184 } else if (statusCode >= 500 && statusCode <= 599) {
185 switch (statusCode) {
371 /* [in] */ int statusCode,
377 LPCTSTR statusText = CFHTTPMessageCopyLocalizedShortDescriptionForStatusCode(statusCode);
385 HRESULT STDMETHODCALLTYPE WebURLResponse::statusCode(
386 /* [retval][out] */ int* statusCode)
389 if (statusCode)
390 *statusCode = m_response.httpStatusCode();