Home
last modified time | relevance | path

Searched refs:Connect (Results 1 - 25 of 40) sorted by relevance

12

/third_party/skia/third_party/externals/dawn/src/dawn_native/
H A DInstance.cpp30 // Forward definitions of each backend's "Connect" function that creates new BackendConnection.
34 BackendConnection* Connect(InstanceBase* instance);
39 BackendConnection* Connect(InstanceBase* instance);
44 BackendConnection* Connect(InstanceBase* instance);
49 BackendConnection* Connect(InstanceBase* instance, wgpu::BackendType backendType);
54 BackendConnection* Connect(InstanceBase* instance);
172 Register(null::Connect(this), wgpu::BackendType::Null); in EnsureBackendConnection()
178 Register(d3d12::Connect(this), wgpu::BackendType::D3D12); in EnsureBackendConnection()
184 Register(metal::Connect(this), wgpu::BackendType::Metal); in EnsureBackendConnection()
190 Register(vulkan::Connect(thi in EnsureBackendConnection()
[all...]
/third_party/node/test/cctest/
H A Dtest_inspector_socket_server.cc98 void Connect(const std::string& host, int port, bool v6 = false) { in Connect() function in __anon15477::SocketWrapper
373 socket.Connect(HOST, port); in TestHttpRequest()
395 well_behaved_socket.Connect(HOST, server.port()); in TEST_F()
416 bogus_target_socket.Connect(HOST, server.port()); in TEST_F()
425 dropped_connection_socket.Connect(HOST, server.port()); in TEST_F()
439 stays_till_termination_socket.Connect(HOST, server.port()); in TEST_F()
481 socket.Connect(HOST, server.port()); in TEST_F()
507 socket1.Connect(HOST, server.port()); in TEST_F()
520 socket1.Connect(HOST, server.port()); in TEST_F()
533 socket1.Connect(HOS in TEST_F()
[all...]
/third_party/typescript/tests/baselines/reference/
H A DcircularlySimplifyingConditionalTypesNoCrash.js21 interface Connect { // Then strictly compared with another signature in its context
34 declare var connect: Connect;
36 const myStoreConnect: Connect = function(
/third_party/node/deps/v8/src/maglev/
H A Dmaglev-graph-printer.cc57 void Connect(ConnectionLocation loc) { connected |= loc; } in Connect() function
60 Connect(kLeft); in AddHorizontal()
61 Connect(kRight); in AddHorizontal()
65 Connect(kTop); in AddVertical()
66 Connect(kBottom); in AddVertical()
130 c.Connect(kRight);
131 c.Connect(is_loop ? kTop : kBottom);
278 c.Connect(kRight); in PreProcessBasicBlock()
282 c.Connect(kBottom); in PreProcessBasicBlock()
284 c.Connect(kTo in PreProcessBasicBlock()
[all...]
/third_party/node/src/
H A Dtcp_wrap.cc93 SetProtoMethod(isolate, t, "connect", Connect); in Initialize()
136 registry->Register(Connect); in RegisterExternalReferences()
295 void TCPWrap::Connect(const FunctionCallbackInfo<Value>& args) { in Connect() function in node::TCPWrap
299 Connect<sockaddr_in>(args, in Connect()
311 Connect<sockaddr_in6>(args, in Connect6()
318 void TCPWrap::Connect(const FunctionCallbackInfo<Value>& args, in Connect() function in node::TCPWrap
H A Dtcp_wrap.h80 static void Connect(const v8::FunctionCallbackInfo<v8::Value>& args);
83 static void Connect(const v8::FunctionCallbackInfo<v8::Value>& args,
H A Dpipe_wrap.cc81 SetProtoMethod(isolate, t, "connect", Connect); in Initialize()
114 registry->Register(Connect); in RegisterExternalReferences()
226 void PipeWrap::Connect(const FunctionCallbackInfo<Value>& args) { in Connect() function in node::PipeWrap
H A Dinspector_js_api.cc41 static std::unique_ptr<InspectorSession> Connect( in Connect() function
43 return inspector->Connect(std::move(delegate), false); in Connect()
52 static std::unique_ptr<InspectorSession> Connect( in Connect() function
96 session_ = ConnectionType::Connect( in JSBindingsConnection()
H A Dinspector_profiler.cc35 : session_(env->inspector_agent()->Connect( in V8ProfilerConnection()
H A Djs_native_api_v8_inspector.cc85 std::unique_ptr<InspectorSession> Connect(
261 void Connect(std::unique_ptr<InspectorSessionDelegate> delegate) { in Connect() function in v8impl::__anon15371::MainThreadSessionState
264 session_ = agent->Connect(std::move(delegate), prevent_shutdown_); in Connect()
287 state_.Call(&MainThreadSessionState::Connect, std::move(delegate)); in CrossThreadInspectorSession()
405 std::unique_ptr<InspectorSession> MainThreadHandle::Connect( in Connect() function in v8impl::__anon15371::MainThreadHandle
664 auto session = main_thread_->Connect( in StartSession()
1338 std::unique_ptr<InspectorSession> Agent::Connect( in Connect() function in v8impl::Agent
H A Dpipe_wrap.h65 static void Connect(const v8::FunctionCallbackInfo<v8::Value>& args);
H A Dinspector_agent.h89 std::unique_ptr<InspectorSession> Connect(
H A Djs_native_api_v8_inspector.h103 std::unique_ptr<InspectorSession> Connect(
/third_party/node/src/inspector/
H A Dmain_thread_interface.cc142 void Connect(std::unique_ptr<InspectorSessionDelegate> delegate) { in Connect() function in node::inspector::__anon15350::MainThreadSessionState
145 session_ = agent->Connect(std::move(delegate), prevent_shutdown_); in Connect()
168 state_.Call(&MainThreadSessionState::Connect, std::move(delegate)); in CrossThreadInspectorSession()
298 std::unique_ptr<InspectorSession> MainThreadHandle::Connect( in Connect() function in node::inspector::MainThreadHandle
H A Dworker_inspector.cc82 std::unique_ptr<inspector::InspectorSession> ParentInspectorHandle::Connect( in Connect() function in node::inspector::ParentInspectorHandle
85 return parent_thread_->Connect(std::move(delegate), prevent_shutdown); in Connect()
H A Dmain_thread_interface.h50 std::unique_ptr<InspectorSession> Connect(
H A Dworker_inspector.h73 std::unique_ptr<inspector::InspectorSession> Connect(
H A Dworker_agent.cc134 sessions_[id] = target->Connect(std::move(delegate), true); in WorkerCreated()
/third_party/vulkan-loader/openharmony/bundle_mgr_helper/
H A Dvk_bundle_mgr_helper.cpp88 sptr<AppExecFwk::IBundleMgr> VKBundleMgrHelper::Connect() in Connect() function in OHOS::AppExecFwk::VKBundleMgrHelper
90 VKHILOGD("Call VKBundleMgrHelper::Connect"); in Connect()
141 auto bundleMgr_ = Connect(); in GetBundleInfoForSelf()
H A Dvk_bundle_mgr_helper.h41 sptr<AppExecFwk::IBundleMgr> Connect();
/third_party/skia/third_party/externals/tint/tools/src/cmd/remote-compile/
H A Dsocket.h31 static std::shared_ptr<Socket> Connect(const char* address,
/third_party/node/test/parallel/
H A Dtest-https-localaddress-bind-error.js40 console.log(`Connect from: ${req.connection.remoteAddress}`);
H A Dtest-https-localaddress.js41 console.log(`Connect from: ${req.connection.remoteAddress}`);
/third_party/ltp/testcases/network/rpc/rpc-tirpc/
H A Drpc_test.sh26 Connect to the remote host and start sprog.
/third_party/skia/third_party/externals/dawn/src/dawn_native/d3d12/
H A DBackendD3D12.cpp199 BackendConnection* Connect(InstanceBase* instance) { in Connect() function

Completed in 13 milliseconds

12