Home
last modified time | relevance | path

Searched refs:OutgoingMessage (Results 1 - 13 of 13) sorted by relevance

/third_party/node/lib/
H A D_http_outgoing.js107 function OutgoingMessage(options) { class
158 ObjectSetPrototypeOf(OutgoingMessage.prototype, Stream.prototype);
159 ObjectSetPrototypeOf(OutgoingMessage, Stream);
161 ObjectDefineProperty(OutgoingMessage.prototype, 'errored', {
168 ObjectDefineProperty(OutgoingMessage.prototype, 'closed', {
175 ObjectDefineProperty(OutgoingMessage.prototype, 'writableFinished', {
186 ObjectDefineProperty(OutgoingMessage.prototype, 'writableObjectMode', {
193 ObjectDefineProperty(OutgoingMessage.prototype, 'writableLength', {
200 ObjectDefineProperty(OutgoingMessage.prototype, 'writableHighWaterMark', {
207 ObjectDefineProperty(OutgoingMessage
[all...]
H A Dhttp.js38 OutgoingMessage,
123 OutgoingMessage,
H A D_http_client.js61 OutgoingMessage,
136 FunctionPrototypeCall(OutgoingMessage, this);
371 ObjectSetPrototypeOf(ClientRequest.prototype, OutgoingMessage.prototype);
372 ObjectSetPrototypeOf(ClientRequest, OutgoingMessage);
376 FunctionPrototypeCall(OutgoingMessage.prototype._finish, this);
H A D_http_server.js54 OutgoingMessage,
195 OutgoingMessage.call(this, options);
228 ObjectSetPrototypeOf(ServerResponse.prototype, OutgoingMessage.prototype);
229 ObjectSetPrototypeOf(ServerResponse, OutgoingMessage);
244 OutgoingMessage.prototype._finish.call(this);
243 OutgoingMessage.prototype._finish.call(this); global() class
/third_party/node/test/parallel/
H A Dtest-http-outgoing-renderHeaders.js9 const OutgoingMessage = http.OutgoingMessage;
12 const outgoingMessage = new OutgoingMessage();
25 const outgoingMessage = new OutgoingMessage();
33 const outgoingMessage = new OutgoingMessage();
40 const outgoingMessage = new OutgoingMessage();
H A Dtest-http-outgoing-internal-headers.js7 const { OutgoingMessage } = require('http');
9 const warn = 'OutgoingMessage.prototype._headers is deprecated';
14 const outgoingMessage = new OutgoingMessage();
21 const outgoingMessage = new OutgoingMessage();
37 const outgoingMessage = new OutgoingMessage();
H A Dtest-http-outgoing-properties.js6 const OutgoingMessage = http.OutgoingMessage;
9 const msg = new OutgoingMessage();
14 const msg = new OutgoingMessage();
48 const msg = new OutgoingMessage();
H A Dtest-http-outgoing-buffer.js8 const OutgoingMessage = http.OutgoingMessage;
10 const msg = new OutgoingMessage();
H A Dtest-http-outgoing-settimeout.js5 const { OutgoingMessage } = require('http');
10 const outgoingMessage = new OutgoingMessage();
22 const outgoingMessage = new OutgoingMessage();
H A Dtest-http-outgoing-internal-headernames-setter.js4 const { OutgoingMessage } = require('http');
6 const warn = 'OutgoingMessage.prototype._headerNames is deprecated';
11 const outgoingMessage = new OutgoingMessage();
H A Dtest-http-set-timeout-server.js88 assert.ok(s instanceof http.OutgoingMessage);
132 assert.ok(s instanceof http.OutgoingMessage);
H A Dtest-https-set-timeout-server.js104 assert.ok(s instanceof http.OutgoingMessage);
152 assert.ok(s instanceof http.OutgoingMessage);
/third_party/node/benchmark/http/
H A Dset_header.js4 const { OutgoingMessage } = require('_http_outgoing');
20 const og = new OutgoingMessage();

Completed in 5 milliseconds