/third_party/node/benchmark/fixtures/ |
D | simple-http-server.js | 83 res.writeHead(200, { 'Transfer-Encoding': 'chunked' }); 86 res.writeHead(200, { 113 res.writeHead(status, { 'Transfer-Encoding': 'chunked' }); 115 res.writeHead(status, { 'Content-Length': len.toString() }); 119 res.writeHead(status, { 124 res.writeHead(status, {
|
D | simple-https-server.js | 53 res.writeHead(status, { 58 res.writeHead(status, {
|
/third_party/node/test/parallel/ |
D | test-http-status-reason-invalid-chars.js | 10 res.writeHead(200, 'OK\r\nContent-Type: text/html\r\n'); 14 res.writeHead(200, 'OK\u010D\u010AContent-Type: gotcha\r\n'); 24 res.writeHead(200);
|
D | test-http2-compat-serverresponse-writehead.js | 18 const returnVal = response.writeHead(418, { 'foo-bar': 'abc123' }); 22 assert.throws(() => { response.writeHead(300); }, { 31 response.writeHead(300);
|
D | test-http-write-head-2.js | 11 res.writeHead(200, [ 'test', '2', 'test2', '2' ]); 28 res.writeHead(200, [ 'test', '1', 'test2', '2' ]); 47 res.writeHead(200, [ 'test', '1', 'test2', '2', 'asd' ]);
|
D | test-http-1.0.js | 64 res.writeHead(200, { 'Content-Type': 'text/plain' }); 93 res.writeHead(200, { 'Content-Type': 'text/plain' }); 129 res.writeHead(200, { 'Content-Type': 'text/plain' });
|
D | test-http-response-close.js | 29 res.writeHead(200); 54 res.writeHead(200);
|
D | test-http-write-head.js | 54 res.writeHead(200, { Test: '2' }); 57 res.writeHead(100, {});
|
D | test-http-set-cookies.js | 31 res.writeHead(200, [['set-cookie', 'A'], 35 res.writeHead(200, [['set-cookie', 'A'],
|
D | test-https-socket-options.js | 43 res.writeHead(200, { 'content-type': 'text/plain' }); 68 res.writeHead(200, { 'content-type': 'text/plain' });
|
D | test-debugger-websocket-secret-mismatch.js | 14 res.writeHead(200); 29 res.writeHead(101);
|
D | test-http-client-agent.js | 34 res.writeHead(200); 38 res.writeHead(200);
|
D | test-http-response-statuscode.js | 12 res.writeHead(header); 59 assert.throws(() => { res.writeHead(); },
|
D | test-http-proxy.js | 39 res.writeHead(200, headers); 57 res.writeHead(proxy_res.statusCode, proxy_res.headers);
|
D | test-http2-compat-serverresponse-end.js | 154 response.writeHead(HTTP_STATUS_OK, { foo: 'bar' }); 220 response.writeHead(HTTP_STATUS_OK, { foo: 'bar' }); 256 response.writeHead(HTTP_STATUS_OK, { foo: 'bar' }); 291 response.writeHead(HTTP_STATUS_OK, { foo: 'bar' });
|
D | test-domain-http-server.js | 47 res.writeHead(500, { 'content-type': 'text/plain' }); 59 res.writeHead(200);
|
D | test-http-contentLength0.js | 32 res.writeHead(200, { 'Content-Length': '0 ' });
|
D | test-http-request-large-payload.js | 11 res.writeHead(200);
|
D | test-http-request-end-twice.js | 28 res.writeHead(200, { 'Content-Type': 'text/plain' });
|
D | test-http-url.parse-path.js | 36 response.writeHead(200, {});
|
D | test-http-response-readable.js | 28 res.writeHead(200);
|
D | test-http-url.parse-search.js | 36 response.writeHead(200, {});
|
/third_party/node/deps/npm/test/tap/ |
D | bearer-token-check.js | 27 res.writeHead(403, 'this token should not be sent') 30 res.writeHead(200, 'ok') 34 res.writeHead(500)
|
D | shrinkwrap-_auth.js | 58 res.writeHead(200, 'ok') 61 res.writeHead(403, 'unauthorized') 66 res.writeHead(500)
|
/third_party/node/lib/ |
D | _http_server.js | 250 this.writeHead(this.statusCode); 253 ServerResponse.prototype.writeHead = writeHead; method in ServerResponse 254 function writeHead(statusCode, reason, obj) { function 338 ServerResponse.prototype.writeHeader = ServerResponse.prototype.writeHead; 894 res.writeHead(417);
|