Home | History | Annotate | Download | only in win

Lines Matching defs:statusCode

50 static String CFHTTPMessageCopyLocalizedShortDescriptionForStatusCode(CFIndex statusCode)
53 if (statusCode < 100 || statusCode >= 600)
55 else if (statusCode >= 100 && statusCode <= 199) {
56 switch (statusCode) {
67 } else if (statusCode >= 200 && statusCode <= 299) {
68 switch (statusCode) {
94 } else if (statusCode >= 300 && statusCode <= 399) {
95 switch (statusCode) {
122 } else if (statusCode >= 400 && statusCode <= 499) {
123 switch (statusCode) {
182 } else if (statusCode >= 500 && statusCode <= 599) {
183 switch (statusCode) {
369 /* [in] */ int statusCode,
375 String statusText = CFHTTPMessageCopyLocalizedShortDescriptionForStatusCode(statusCode);
383 HRESULT STDMETHODCALLTYPE WebURLResponse::statusCode(
384 /* [retval][out] */ int* statusCode)
387 if (statusCode)
388 *statusCode = m_response.httpStatusCode();