Home
last modified time | relevance | path

Searched refs:writeHead (Results 1 – 19 of 19) sorted by relevance

/unit/test/node/loader/unit_http/
H A Dapp.js2 res.writeHead(200, {'Content-Length': 12, 'Content-Type': 'text/plain'})
/unit/test/node/basic/
H A Dapp.js3 res.writeHead(200, {'Content-Length': 12, 'Content-Type': 'text/plain'})
/unit/test/node/status_message/
H A Dapp.js3 res.writeHead(200, 'blah', {'Content-Type': 'text/plain'}).end();
/unit/test/node/options/
H A Dapp.js2 res.writeHead(200, {'Content-Length': 12, 'Content-Type': 'text/plain'})
/unit/test/node/write_before_write_head/
H A Dapp.js4 res.writeHead(200, {'Content-Type': 'text/plain'}).end();
/unit/test/node/write_buffer/
H A Dapp.js3 res.writeHead(200, {'Content-Type': 'text/plain'})
/unit/test/node/write_array/
H A Dapp.js2 res.writeHead(200, {'Content-Length': 5, 'Content-Type': 'text/plain'})
/unit/test/node/write_return/
H A Dapp.js3 res.writeHead(200, {'Content-Type': 'text/plain'})
/unit/test/node/header_name_valid/
H A Dapp.js3 res.writeHead(200, {});
/unit/test/node/404/
H A Dapp.js5 res.writeHead(404, {}).end(fs.readFileSync('404.html'));
/unit/test/node/loader/transitive_dependency/
H A Dtransitive_http.js4 res.writeHead(200, {'Content-Length': 12, 'Content-Type': 'text/plain'})
/unit/test/node/write_multiple/
H A Dapp.js3 res.writeHead(200, {'Content-Type': 'text/plain', 'Content-Length': 14});
/unit/test/node/write_callback/
H A Dapp.js5 res.writeHead(200, {'Content-Type': 'text/plain'});
/unit/test/node/mirror/
H A Dapp.js8 res.writeHead(200, {'Content-Length': Buffer.byteLength(body)})
/unit/test/node/loader/es_modules_http/
H A Dapp.mjs4 res.writeHead(200, {'Content-Length': 12, 'Content-Type': 'text/plain'})
/unit/test/node/loader/es_modules_http_indirect/
H A Dmodule.mjs4 res.writeHead(200, {'Content-Length': 12, 'Content-Type': 'text/plain'})
/unit/test/node/promise_handler/
H A Dapp.js8 res.writeHead(200, {'Content-Type': 'text/plain'}).write('blah');
/unit/test/node/variables/
H A Dapp.js16 res.writeHead(200, {}).end(body);
/unit/src/nodejs/unit-http/
H A Dhttp_server.js181 ServerResponse.prototype.writeHead = writeHead; method in ServerResponse
182 ServerResponse.prototype.writeHeader = ServerResponse.prototype.writeHead;
184 function writeHead(statusCode, reason, obj) { class
227 this.writeHead(this.statusCode);