Lines Matching defs:OutgoingMessage

107 function OutgoingMessage(options) {
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.prototype, 'writableCorked', {
215 ObjectDefineProperty(OutgoingMessage.prototype, '_headers', {
219 }, 'OutgoingMessage.prototype._headers is deprecated', 'DEP0066'),
233 }, 'OutgoingMessage.prototype._headers is deprecated', 'DEP0066'),
236 ObjectDefineProperty(OutgoingMessage.prototype, 'connection', {
246 ObjectDefineProperty(OutgoingMessage.prototype, '_headerNames', {
263 }, 'OutgoingMessage.prototype._headerNames is deprecated', 'DEP0066'),
278 }, 'OutgoingMessage.prototype._headerNames is deprecated', 'DEP0066'),
282 OutgoingMessage.prototype._renderHeaders = function _renderHeaders() {
302 OutgoingMessage.prototype.cork = function() {
310 OutgoingMessage.prototype.uncork = function() {
318 OutgoingMessage.prototype.setTimeout = function setTimeout(msecs, callback) {
338 OutgoingMessage.prototype.destroy = function destroy(error) {
359 OutgoingMessage.prototype._send = function _send(data, encoding, callback, byteLength) {
364 // `this._header` can be null if OutgoingMessage is used without a proper Socket
384 OutgoingMessage.prototype._writeRaw = _writeRaw;
414 OutgoingMessage.prototype._storeHeader = _storeHeader;
646 OutgoingMessage.prototype.setHeader = function setHeader(name, value) {
661 OutgoingMessage.prototype.setHeaders = function setHeaders(headers) {
683 OutgoingMessage.prototype.appendHeader = function appendHeader(name, value) {
714 OutgoingMessage.prototype.getHeader = function getHeader(name) {
727 OutgoingMessage.prototype.getHeaderNames = function getHeaderNames() {
733 OutgoingMessage.prototype.getRawHeaderNames = function getRawHeaderNames() {
750 OutgoingMessage.prototype.getHeaders = function getHeaders() {
767 OutgoingMessage.prototype.hasHeader = function hasHeader(name) {
774 OutgoingMessage.prototype.removeHeader = function removeHeader(name) {
804 OutgoingMessage.prototype._implicitHeader = function _implicitHeader() {
808 ObjectDefineProperty(OutgoingMessage.prototype, 'headersSent', {
815 ObjectDefineProperty(OutgoingMessage.prototype, 'writableEnded', {
820 ObjectDefineProperty(OutgoingMessage.prototype, 'writableNeedDrain', {
828 OutgoingMessage.prototype.write = function write(chunk, encoding, callback) {
954 OutgoingMessage.prototype.addTrailers = function addTrailers(headers) {
1004 OutgoingMessage.prototype.end = function end(chunk, encoding, callback) {
1086 OutgoingMessage.prototype._finish = function _finish() {
1111 OutgoingMessage.prototype._flush = function _flush() {
1128 OutgoingMessage.prototype._flushOutput = function _flushOutput(socket) {
1157 OutgoingMessage.prototype.flushHeaders = function flushHeaders() {
1166 OutgoingMessage.prototype.pipe = function pipe() {
1167 // OutgoingMessage should be write-only. Piping from it is disabled.
1171 OutgoingMessage.prototype[EE.captureRejectionSymbol] =
1182 OutgoingMessage,