Lines Matching refs:incoming
682 incoming: [],
763 const req = this.parser && this.parser.incoming;
776 abortIncoming(state.incoming);
779 function abortIncoming(incoming) {
780 while (incoming.length) {
781 const req = incoming.shift();
913 } else if (parser.incoming && parser.incoming.upgrade) {
915 const req = parser.incoming;
944 } else if (parser.incoming && parser.incoming.method === 'PRI') {
959 // Reset the .incoming property so that the request object can be gc'ed.
960 if (parser && parser.incoming === req) {
962 parser.incoming = null;
979 // Usually the first incoming element should be our request. it may
980 // be that in the case abortIncoming() was called that the incoming
982 assert(state.incoming.length === 0 || state.incoming[0] === req);
984 state.incoming.shift();
1037 state.incoming.push(req);
1148 // `incoming.readStart()`. Stop the socket again here, just to preserve the