Home
last modified time | relevance | path

Searched refs:Client (Results 1 – 25 of 2079) sorted by relevance

12345678910>>...84

/third_party/node/deps/undici/src/docs/api/
Dapi-lifecycle.md1 # Client Lifecycle
3 …Undici [Client](Client.md) can be best described as a state machine. The following list is a summa…
5 > This diagram is not a perfect representation of the undici Client. Since the Client class is not …
9 * A `Client` begins in the **idle** state with no socket connection and no requests in queue.
10 …* The *connect* event transitions the `Client` to the **pending** state where requests can be queu…
11 …* The *close* and *destroy* events transition the `Client` to the **destroyed** state. Since there…
13 …* The *process* event transitions the `Client` to the **processing** state where requests are proc…
17 …* If the current request requires draining, the *needDrain* event transitions the `Client` into th…
18 …itions the `Client` back to the **pending** state. If no requests are queued during the timeout, t…
19 …* If the *close* event is fired while the `Client` still has queued requests, the `Client` transit…
[all …]
DClient.md1 # Class: Client
9 ## `new Client(url[, options])`
16 Returns: `Client`
32 * **interceptors** `{ Client: DispatchInterceptor[] }` - Default: `[RedirectInterceptor]` - A list …
50 ### Example - Basic Client instantiation
52 This will instantiate the undici Client, but it will not connect to the origin until something is q…
56 import { Client } from 'undici'
58 const client = new Client('http://localhost:3000')
67 import { Client, buildConnector } from 'undici'
70 const client = new Client('https://localhost:3000', {
[all …]
DPool.md5 A pool of [Client](Client.md) instances connected to the same upstream target.
18 Extends: [`ClientOptions`](Client.md#parameter-clientoptions)
20 * **factory** `(origin: URL, opts: Object) => Dispatcher` - Default: `(origin, opts) => new Client(…
21 …ll` - The number of `Client` instances to create. When set to `null`, the `Pool` instance will cre…
28 Implements [Client.closed](Client.md#clientclosed)
32 Implements [Client.destroyed](Client.md#clientdestroyed)
DDispatcher.md26 #### Example - Request resolves before Client closes
30 import { Client } from 'undici'
39 const client = new Client(`http://localhost:${server.address().port}`)
52 console.log('Client closed')
85 import { Client } from 'undici'
107 const client = new Client(`http://localhost:${server.address().port}`)
146 #### Example - Request is aborted when Client is destroyed
150 import { Client } from 'undici'
159 const client = new Client(`http://localhost:${server.address().port}`)
168 console.log('Client destroyed')
[all …]
/third_party/skia/third_party/externals/dawn/src/dawn_wire/client/
DClient.cpp46 Client::Client(CommandSerializer* serializer, MemoryTransferService* memoryTransferService) in Client() function in dawn_wire::client::Client
55 Client::~Client() { in ~Client()
59 void Client::DestroyAllObjects() { in DestroyAllObjects()
87 ReservedTexture Client::ReserveTexture(WGPUDevice device) { in ReserveTexture()
99 ReservedSwapChain Client::ReserveSwapChain(WGPUDevice device) { in ReserveSwapChain()
111 ReservedDevice Client::ReserveDevice() { in ReserveDevice()
121 void Client::ReclaimTextureReservation(const ReservedTexture& reservation) { in ReclaimTextureReservation()
125 void Client::ReclaimSwapChainReservation(const ReservedSwapChain& reservation) { in ReclaimSwapChainReservation()
129 void Client::ReclaimDeviceReservation(const ReservedDevice& reservation) { in ReclaimDeviceReservation()
133 void Client::Disconnect() { in Disconnect()
[all …]
DClientDoers.cpp23 bool Client::DoDeviceUncapturedErrorCallback(Device* device, in DoDeviceUncapturedErrorCallback()
44 bool Client::DoDeviceLoggingCallback(Device* device, in DoDeviceLoggingCallback()
55 bool Client::DoDeviceLostCallback(Device* device, in DoDeviceLostCallback()
66 bool Client::DoDevicePopErrorScopeCallback(Device* device, in DoDevicePopErrorScopeCallback()
77 bool Client::DoBufferMapAsyncCallback(Buffer* buffer, in DoBufferMapAsyncCallback()
90 bool Client::DoQueueWorkDoneCallback(Queue* queue, in DoQueueWorkDoneCallback()
100 bool Client::DoDeviceCreateComputePipelineAsyncCallback(Device* device, in DoDeviceCreateComputePipelineAsyncCallback()
111 bool Client::DoDeviceCreateRenderPipelineAsyncCallback(Device* device, in DoDeviceCreateRenderPipelineAsyncCallback()
122 bool Client::DoShaderModuleGetCompilationInfoCallback(ShaderModule* shaderModule, in DoShaderModuleGetCompilationInfoCallback()
/third_party/nghttp2/src/
Dh2load_quic.cc47 auto c = static_cast<Client *>(user_data); in handshake_completed()
57 int Client::quic_handshake_completed() { return connection_made(); } in quic_handshake_completed()
63 auto c = static_cast<Client *>(user_data); in recv_stream_data()
74 int Client::quic_recv_stream_data(uint32_t flags, int64_t stream_id, in quic_recv_stream_data()
96 auto c = static_cast<Client *>(user_data); in acked_stream_data_offset()
104 int Client::quic_acked_stream_data_offset(int64_t stream_id, size_t datalen) { in quic_acked_stream_data_offset()
116 auto c = static_cast<Client *>(user_data); in stream_close()
129 int Client::quic_stream_close(int64_t stream_id, uint64_t app_error_code) { in quic_stream_close()
141 auto c = static_cast<Client *>(user_data); in stream_reset()
149 int Client::quic_stream_reset(int64_t stream_id, uint64_t app_error_code) { in quic_stream_reset()
[all …]
Dh2load.cc207 auto client = static_cast<Client *>(w->data); in writecb()
210 if (rv == Client::ERR_CONNECT_FAIL) { in writecb()
233 auto client = static_cast<Client *>(w->data); in readcb()
262 std::make_unique<Client>(worker->next_client_id++, worker, req_todo); in rate_period_timeout_w_cb()
337 auto client = static_cast<Client *>(w->data); in rps_cb()
387 auto client = static_cast<Client *>(w->data); in conn_timeout_cb()
399 bool check_stop_client_request_timeout(Client *client, ev_timer *w) { in check_stop_client_request_timeout()
412 auto client = static_cast<Client *>(w->data); in client_request_timeout_cb()
453 Client::Client(uint32_t id, Worker *worker, size_t req_todo) in Client() function in h2load::Client
514 Client::~Client() { in ~Client()
[all …]
Dh2load_http1_session.h36 struct Client;
40 Http1Session(Client *client);
48 Client *get_client();
53 Client *client_;
Dh2load_http2_session.cc39 Http2Session::Http2Session(Client *client) in Http2Session()
49 auto client = static_cast<Client *>(user_data); in on_header_callback()
72 auto client = static_cast<Client *>(user_data); in on_frame_recv_callback()
91 auto client = static_cast<Client *>(user_data); in on_data_chunk_recv_callback()
101 auto client = static_cast<Client *>(user_data); in on_stream_close_callback()
116 auto client = static_cast<Client *>(user_data); in before_frame_send_callback()
129 auto client = static_cast<Client *>(user_data); in file_read_callback()
162 auto client = static_cast<Client *>(user_data); in send_callback()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/ExecutionEngine/Orc/
DOrcRemoteTargetClient.h64 Client.destroyRemoteAllocator(Id); in ~RemoteRTDyldMemoryManager()
118 Client.reserveMem(Id, CodeSize, CodeAlign); in reserveAllocationSpace()
129 Client.reserveMem(Id, RODataSize, RODataAlign); in reserveAllocationSpace()
140 Client.reserveMem(Id, RWDataSize, RWDataAlign); in reserveAllocationSpace()
160 Client.deregisterEHFrames(Frame.Addr, Frame.Size); in deregisterEHFrames()
198 if (auto Err = Client.registerEHFrames(EHFrame.Addr, EHFrame.Size)) {
262 RemoteRTDyldMemoryManager(OrcRemoteTargetClient &Client, in RemoteRTDyldMemoryManager() argument
264 : Client(Client), Id(Id) { in RemoteRTDyldMemoryManager()
301 if (Client.writeMem(Alloc.getRemoteAddress(), Alloc.getLocalAddress(), in copyAndProtect()
313 if (Client.setProtections(Id, RemoteSegmentAddr, Permissions)) in copyAndProtect()
[all …]
/third_party/typescript/tests/baselines/reference/
DdeclarationEmitShadowingInferNotRenamed.types3 type Client = string
4 >Client : string
12 …ent : <D extends Record<string, new (...args: any[]) => Client> | (new (...args: any[]) => Client)…
13Client) // accept class | Record<string, new (...args: any[]) => Client> // or map of classes>(…
16 | (new (...args: any[]) => Client) // accept class
19 | Record<string, new (...args: any[]) => Client> // or map of classes
DdeclarationEmitShadowingInferNotRenamed.symbols3 type Client = string
4 >Client : Symbol(Client, Decl(declarationEmitShadowingInferNotRenamed.ts, 0, 0))
19 | (new (...args: any[]) => Client) // accept class
21 >Client : Symbol(Client, Decl(declarationEmitShadowingInferNotRenamed.ts, 0, 0))
23 | Record<string, new (...args: any[]) => Client> // or map of classes
26 >Client : Symbol(Client, Decl(declarationEmitShadowingInferNotRenamed.ts, 0, 0))
DdeclarationEmitShadowingInferNotRenamed.js3 type Client = string
10 | (new (...args: any[]) => Client) // accept class
11 | Record<string, new (...args: any[]) => Client> // or map of classes
35 type Client = string;
39 …ient: <D extends Record<string, new (...args: any[]) => Client> | (new (...args: any[]) => Client)…
/third_party/mesa3d/src/amd/addrlib/src/core/
Daddrobject.h48 struct Client struct
62 Object(const Client* pClient); argument
77 const Client* GetClient() const {return &m_client;} in GetClient()
80 Client m_client;
82 static VOID* ClientAlloc(size_t size, const Client* pClient);
83 static VOID ClientFree(VOID* pObj, const Client* pClient);
Daddrlib.h292 Lib(const Client* pClient);
406 Lib* SiHwlInit (const Client* pClient);
407 Lib* CiHwlInit (const Client* pClient);
408 Lib* Gfx9HwlInit (const Client* pClient);
409 Lib* Gfx10HwlInit(const Client* pClient);
410 Lib* Gfx11HwlInit(const Client* pClient);
/third_party/node/deps/undici/src/types/
Dclient.d.ts9 export class Client extends Dispatcher { class
10 constructor(url: string | URL, options?: Client.Options);
19 export declare namespace Client {
21 Client: readonly Dispatcher.DispatchInterceptor[];
97 export default Client; property in Client
/third_party/vk-gl-cts/execserver/tools/
DxsClient.cpp148 class Client class
151 Client (const CommandLine& cmdLine);
152 ~Client (void);
161 Client::Client (const CommandLine& cmdLine) in Client() function in xs::Client
166 Client::~Client (void) in ~Client()
170 void Client::run (void) in run()
339 Client client(cmdLine); in runClient()
/third_party/node/deps/undici/src/docs/best-practices/
Dclient-certificate.md1 # Client certificate
3 Client certificate authentication can be configured with the `Client`, the required options are pas…
11 ### Client Certificate Authentication
17 const { Client } = require('undici')
49 const client = new Client(`https://localhost:${server.address().port}`, {
Dproxy.md6 - Configuring `Client` or `Pool` constructor.
8 The proxy url should be passed to the `Client` or `Pool` constructor, while the upstream server url
18 import { Client } from 'undici'
34 const client = new Client(proxyUrl)
71 import { Client } from 'undici'
91 const client = new Client(proxyUrl)
/third_party/skia/third_party/externals/dawn/generator/templates/dawn_wire/client/
DApiProcs.cpp46 {{as_cType(method.return_type.name)}} Client{{Suffix}}(
86 void Client{{as_MethodSuffix(type.name, Name("release"))}}({{cType}} cObj) {
102 void Client{{as_MethodSuffix(type.name, Name("reference"))}}({{cType}} cObj) {
120 …{ reinterpret_cast<WGPUProc>(Client{{as_MethodSuffix(type.name, method.name)}}), "{{as_cMethod(typ…
165 Client{{as_cppType(function.name)}},
169 Client{{as_MethodSuffix(type.name, method.name)}},
/third_party/openssl/test/ssl-tests/
D20-cert-select.cnf24 test-19 = 19-TLS 1.2 Ed25519 Client Auth
25 test-20 = 20-TLS 1.2 Ed448 Client Auth
48 test-43 = 43-TLS 1.3 RSA Client Auth Signature Algorithm Selection
49 test-44 = 44-TLS 1.3 RSA Client Auth Signature Algorithm Selection non-empty CA Names
50 test-45 = 45-TLS 1.3 ECDSA Client Auth Signature Algorithm Selection
55 test-50 = 50-TLS 1.3 Ed25519 Client Auth
56 test-51 = 51-TLS 1.3 Ed448 Client Auth
60 test-55 = 55-TLS 1.3 Client Auth No TLS 1.3 Signature Algorithms
675 [19-TLS 1.2 Ed25519 Client Auth]
676 ssl_conf = 19-TLS 1.2 Ed25519 Client Auth-ssl
[all …]
/third_party/vk-gl-cts/external/vulkancts/vkscserver/
Dserver.cpp82 struct Client struct
92 std::future<void> CreateClientThread (Client client); argument
128 Client client{ ++id, std::unique_ptr<de::Socket>(listener.accept()), appActive, vector<u8>{}, in main()
147 void SendResponse (Client& c, T& data) in SendResponse()
152 void ProcessPacketsOnServer (Client& client, u32 type, vector<u8> packet) in ProcessPacketsOnServer()
237 Client client;
261 std::future<void> CreateClientThread (Client client) in CreateClientThread()
/third_party/node/test/sequential/
Dtest-tls-session-timeout.js79 function Client(cb) { class
121 Client((connectionType) => {
123 Client((connectionType) => {
126 Client((connectionType) => {
/third_party/typescript/tests/cases/compiler/
DdeclarationEmitShadowingInferNotRenamed.ts3 type Client = string alias
10 | (new (...args: any[]) => Client) // accept class constant
11 | Record<string, new (...args: any[]) => Client> // or map of classes

12345678910>>...84