Lines Matching refs:res
15 function send(res, code, content, type) {
16 res.writeHead(code, { 'Content-Type': type });
17 res.end(content);
20 function sendResponse(res, filepath, delay) {
25 send(res, 200, DEFAULT_JS_CONTENT, EXT_TO_TYPE["js"]);
38 send(res, 200, content, contentType);
40 send(res, 500, "Error", "text/html");
44 send(res, 404, "File Not Found", "text/html");
50 http.createServer(function (req, res) {
57 res.writeHead(404);
58 res.end("");
65 sendResponse(res, parts.pathname, delay);