/third_party/node/test/parallel/ |
D | test-http-client-defaults.js | 5 const ClientRequest = require('http').ClientRequest; constant 8 const req = new ClientRequest({ createConnection: () => {} }); 14 const req = new ClientRequest({ method: '', createConnection: () => {} }); 20 const req = new ClientRequest({ path: '', createConnection: () => {} });
|
D | test-http-outgoing-proto.js | 7 const ClientRequest = http.ClientRequest; constant 11 typeof ClientRequest.prototype._implicitHeader, 'function');
|
D | test-client-request-destroy.js | 8 const clientRequest = new http.ClientRequest({ createConnection: () => {} });
|
D | test-http-agent-uninitialized.js | 15 const req = new http.ClientRequest(`http://localhost:${server.address().port}/`);
|
D | test-http-agent-uninitialized-with-handle.js | 20 const req = new http.ClientRequest(`http://localhost:${server.address().port}/`);
|
D | test-http-client-timeout.js | 51 assert.ok(s instanceof http.ClientRequest);
|
/third_party/node/benchmark/http/ |
D | create-clientrequest.js | 4 const { ClientRequest } = require('http'); 32 result = new ClientRequest(options[i]); 41 result = new ClientRequest(options[i], { createConnection: noop }); 49 result = new ClientRequest(data[i], { createConnection: noop });
|
/third_party/node/lib/ |
D | http.js | 29 const { ClientRequest } = require('_http_client'); 94 return new ClientRequest(url, options, cb); 115 ClientRequest, property
|
D | _http_client.js | 93 function ClientRequest(input, options, cb) { class 333 ObjectSetPrototypeOf(ClientRequest.prototype, OutgoingMessage.prototype); 334 ObjectSetPrototypeOf(ClientRequest, OutgoingMessage); 336 ClientRequest.prototype._finish = function _finish() { 341 ClientRequest.prototype._implicitHeader = function _implicitHeader() { 349 ClientRequest.prototype.abort = function abort() { 358 ClientRequest.prototype.destroy = function destroy(err) { 810 ClientRequest.prototype.onSocket = function onSocket(socket, err) { 828 ClientRequest.prototype._deferToConnect = _deferToConnect; 859 ClientRequest.prototype.setTimeout = function setTimeout(msecs, callback) { [all …]
|
D | https.js | 47 const { ClientRequest } = require('_http_client'); 370 return ReflectConstruct(ClientRequest, args);
|
/third_party/node/deps/npm/node_modules/timed-out/ |
D | readme.md | 5 Emit Error object with `code` property equal `ETIMEDOUT` or `ESOCKETTIMEDOUT` when ClientRequest is… 24 Type: [`ClientRequest`](http://nodejs.org/api/http.html#http_class_http_clientrequest)
|
/third_party/mingw-w64/mingw-w64-headers/include/ |
D | ntsecpkg.h | 46 …typedef NTSTATUS (NTAPI LSA_ALLOCATE_CLIENT_BUFFER)(PLSA_CLIENT_REQUEST ClientRequest,ULONG Length… 47 …typedef NTSTATUS (NTAPI LSA_FREE_CLIENT_BUFFER)(PLSA_CLIENT_REQUEST ClientRequest,PVOID ClientBase… 48 …typedef NTSTATUS (NTAPI LSA_COPY_TO_CLIENT_BUFFER)(PLSA_CLIENT_REQUEST ClientRequest,ULONG Length,… 49 …typedef NTSTATUS (NTAPI LSA_COPY_FROM_CLIENT_BUFFER)(PLSA_CLIENT_REQUEST ClientRequest,ULONG Lengt… 88 …typedef NTSTATUS (NTAPI LSA_AP_LOGON_USER)(PLSA_CLIENT_REQUEST ClientRequest,SECURITY_LOGON_TYPE L… 89 …typedef NTSTATUS (NTAPI LSA_AP_LOGON_USER_EX)(PLSA_CLIENT_REQUEST ClientRequest,SECURITY_LOGON_TYP… 90 …typedef NTSTATUS (NTAPI LSA_AP_CALL_PACKAGE)(PLSA_CLIENT_REQUEST ClientRequest,PVOID ProtocolSubmi… 91 …typedef NTSTATUS (NTAPI LSA_AP_CALL_PACKAGE_PASSTHROUGH)(PLSA_CLIENT_REQUEST ClientRequest,PVOID P… 559 …typedef NTSTATUS (LSA_AP_LOGON_USER_EX2)(PLSA_CLIENT_REQUEST ClientRequest,SECURITY_LOGON_TYPE Log…
|
/third_party/node/doc/api/ |
D | https.md | 280 * Returns: {http.ClientRequest} 294 `https.request()` returns an instance of the [`http.ClientRequest`][] 295 class. The `ClientRequest` instance is a writable stream. If one needs to 296 upload a file with a POST request, then write to the `ClientRequest` object. 468 [`http.ClientRequest`]: http.md#http_class_http_clientrequest
|
D | http.md | 240 * `request` {http.ClientRequest} 351 ## Class: `http.ClientRequest` 656 description: This method now returns a reference to `ClientRequest`. 939 * Returns: {http.ClientRequest} 1921 [`http.ClientRequest`][] and passed as the first argument to the [`'request'`][] 2123 **Only valid for response obtained from [`http.ClientRequest`][].** 2134 **Only valid for response obtained from [`http.ClientRequest`][].** 2200 This class serves as the parent class of [`http.ClientRequest`][] 2679 * Returns: {http.ClientRequest} 2685 data for reasons stated in [`http.ClientRequest`][] section. [all …]
|
D | http2.md | 2197 [`http.ClientRequest#maxHeadersCount`][]. The minimum value is `4`. 2346 [`http.ClientRequest#maxHeadersCount`][]. The minimum value is `4`. 2469 [`http.ClientRequest#maxHeadersCount`][]. The minimum value is `1`. 3824 [`http.ClientRequest#maxHeadersCount`]: http.md#http_request_maxheaderscount
|
/third_party/node/deps/npm/node_modules/agent-base/ |
D | README.md | 101 ### callback(http.ClientRequest req, Object options, Function cb) → undefined 103 The ClientRequest `req` can be accessed to read request headers and
|
/third_party/node/deps/npm/node_modules/socks-proxy-agent/node_modules/agent-base/ |
D | README.md | 101 ### callback(http.ClientRequest req, Object options, Function cb) → undefined 103 The ClientRequest `req` can be accessed to read request headers and
|
/third_party/node/deps/npm/node_modules/socks-proxy-agent/ |
D | History.md | 46 * test: catch http.ClientRequest errors
|
/third_party/node/deps/npm/node_modules/http-proxy-agent/ |
D | History.md | 52 * http-proxy-agent: fix using the agent after the first tick of creating the ClientRequest
|
/third_party/node/tools/doc/ |
D | type-parser.mjs | 99 'http.ClientRequest': 'http.html#http_class_http_clientrequest',
|
/third_party/node/deps/npm/node_modules/form-data/ |
D | README.md.bak | 76 For more advanced request manipulations ```submit()``` method returns ```http.ClientRequest``` obje…
|
D | README.md | 76 For more advanced request manipulations ```submit()``` method returns ```http.ClientRequest``` obje…
|
/third_party/node/doc/changelogs/ |
D | CHANGELOG_ARCHIVE.md | 891 * http: bubble up parser errors to ClientRequest (Brian White) 1027 * http: bubble up parser errors to ClientRequest (Brian White) 1641 * [#3236](https://github.com/joyent/node/issues/3236): http: Refactor ClientRequest.onSocket (isaac… 2217 * [#1223](https://github.com/joyent/node/issues/1223) Fix http.ClientRequest crashes if end() was c… 2329 * [#1417](https://github.com/joyent/node/issues/1417) Fix http.ClientRequest crashes if end() was c…
|
D | CHANGELOG_IOJS.md | 1781 * **http**: the `http.ClientRequest#flush()` method has been deprecated and replaced with `http.Cli… 2088 * **http**: A new `'abort'` event emitted when a `http.ClientRequest` is aborted by the client. [#9… 2130 …/commit/2ca22aacbd)] - **(SEMVER-MINOR) http**: emit abort event from ClientRequest (Evan Lucas) […
|
/third_party/node/deps/npm/node_modules/request/ |
D | README.md | 855 1. An `error` when applicable (usually from [`http.ClientRequest`](http://nodejs.org/api/http.html#…
|