Home
last modified time | relevance | path

Searched refs:ClientRequest (Results 1 – 25 of 34) sorted by relevance

12

/third_party/node/test/parallel/
Dtest-http-client-defaults.js5 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: () => {} });
Dtest-http-outgoing-proto.js7 const ClientRequest = http.ClientRequest; constant
11 typeof ClientRequest.prototype._implicitHeader, 'function');
Dtest-client-request-destroy.js8 const clientRequest = new http.ClientRequest({ createConnection: () => {} });
Dtest-http-agent-uninitialized.js15 const req = new http.ClientRequest(`http://localhost:${server.address().port}/`);
Dtest-http-agent-uninitialized-with-handle.js20 const req = new http.ClientRequest(`http://localhost:${server.address().port}/`);
Dtest-http-client-timeout.js51 assert.ok(s instanceof http.ClientRequest);
/third_party/node/benchmark/http/
Dcreate-clientrequest.js4 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/
Dhttp.js29 const { ClientRequest } = require('_http_client');
94 return new ClientRequest(url, options, cb);
115 ClientRequest, property
D_http_client.js93 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 …]
Dhttps.js47 const { ClientRequest } = require('_http_client');
370 return ReflectConstruct(ClientRequest, args);
/third_party/node/deps/npm/node_modules/timed-out/
Dreadme.md5 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/
Dntsecpkg.h46 …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/
Dhttps.md280 * 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
Dhttp.md240 * `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 …]
Dhttp2.md2197 [`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/
DREADME.md101 ### 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/
DREADME.md101 ### 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/
DHistory.md46 * test: catch http.ClientRequest errors
/third_party/node/deps/npm/node_modules/http-proxy-agent/
DHistory.md52 * http-proxy-agent: fix using the agent after the first tick of creating the ClientRequest
/third_party/node/tools/doc/
Dtype-parser.mjs99 'http.ClientRequest': 'http.html#http_class_http_clientrequest',
/third_party/node/deps/npm/node_modules/form-data/
DREADME.md.bak76 For more advanced request manipulations ```submit()``` method returns ```http.ClientRequest``` obje…
DREADME.md76 For more advanced request manipulations ```submit()``` method returns ```http.ClientRequest``` obje…
/third_party/node/doc/changelogs/
DCHANGELOG_ARCHIVE.md891 * 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…
DCHANGELOG_IOJS.md1781 * **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/
DREADME.md855 1. An `error` when applicable (usually from [`http.ClientRequest`](http://nodejs.org/api/http.html#…

12