Home | History | Annotate | Download | only in win

Lines Matching refs:code

8  * 1.  Redistributions of source code must retain the above copyright
121 return L"<NSURLResponse " + url + L", http status code " + wstringFromInt(statusCode) + L">";
135 int code;
136 if (FAILED(error->code(&code)))
143 if (code == -998)
144 code = -1;
148 // Convert the winsock error code to an NSURLError code.
149 if (code == WSAEADDRNOTAVAIL)
150 code = -1004; // NSURLErrorCannotConnectToHose;
154 result += L", code " + wstringFromInt(code);