/third_party/skia/third_party/externals/dawn/src/dawn_wire/server/ |
H A D | ServerDevice.cpp | 15 #include "dawn_wire/server/Server.h" 53 void Server::OnUncapturedError(ObjectHandle device, WGPUErrorType type, const char* message) { in OnUncapturedError() 62 void Server::OnDeviceLost(ObjectHandle device, in OnDeviceLost() 73 void Server::OnLogging(ObjectHandle device, WGPULoggingType type, const char* message) { in OnLogging() 82 bool Server::DoDevicePopErrorScope(ObjectId deviceId, uint64_t requestSerial) { in DoDevicePopErrorScope() 96 &Server::OnDevicePopErrorScope)>::Func<&Server::OnDevicePopErrorScope>(), in DoDevicePopErrorScope() 104 void Server::OnDevicePopErrorScope(WGPUErrorType type, in OnDevicePopErrorScope() 116 bool Server::DoDeviceCreateComputePipelineAsync( in DoDeviceCreateComputePipelineAsync() 142 ForwardToServer<decltype(&Server in DoDeviceCreateComputePipelineAsync() [all...] |
H A D | Server.cpp | 15 #include "dawn_wire/server/Server.h" 20 Server::Server(const DawnProcTable& procs, in Server() function in dawn_wire::server::Server 34 Server::~Server() { in ~Server() 43 bool Server::InjectTexture(WGPUTexture texture, in InjectTexture() 75 bool Server::InjectSwapChain(WGPUSwapChain swapchain, in InjectSwapChain() 107 bool Server::InjectDevice(WGPUDevice device, uint32_t id, uint32_t generation) { in InjectDevice() 156 WGPUDevice Server::GetDevice(uint32_t id, uint32_t generation) { in GetDevice() 164 void Server [all...] |
H A D | ServerQueue.cpp | 16 #include "dawn_wire/server/Server.h" 20 void Server::OnQueueWorkDone(WGPUQueueWorkDoneStatus status, QueueWorkDoneUserdata* data) { in OnQueueWorkDone() 29 bool Server::DoQueueOnSubmittedWorkDone(ObjectId queueId, in DoQueueOnSubmittedWorkDone() 43 ForwardToServer<decltype(&Server::OnQueueWorkDone)>::Func<&Server::OnQueueWorkDone>(), in DoQueueOnSubmittedWorkDone() 48 bool Server::DoQueueWriteBuffer(ObjectId queueId, in DoQueueWriteBuffer() 76 bool Server::DoQueueWriteTexture(ObjectId queueId, in DoQueueWriteTexture()
|
H A D | Server.h | 23 class Server; 27 // Server::MakeUserdata<T> and then passed as the userdata argument for Dawn 29 // It contains a pointer back to the Server so that the callback can call the 30 // Server to perform operations like serialization, and it contains a weak pointer 32 // been destroyed and the callback must not use the Server pointer. 47 // ForwardToServer<decltype(&Server::MyCallbackHandler)>::Func< 48 // &Server::MyCallbackHandler>(), 51 // void Server::MyCallbackHandler(MyUserdata* userdata) { } 53 Server* const server; 57 CallbackUserdata(Server* serve 149 class Server : public ServerBase { global() class [all...] |
H A D | ServerBuffer.cpp | 18 #include "dawn_wire/server/Server.h" 24 bool Server::PreHandleBufferUnmap(const BufferUnmapCmd& cmd) { in PreHandleBufferUnmap() 40 bool Server::PreHandleBufferDestroy(const BufferDestroyCmd& cmd) { in PreHandleBufferDestroy() 53 bool Server::DoBufferMapAsync(ObjectId bufferId, in DoBufferMapAsync() 96 &Server::OnBufferMapAsyncCallback)>::Func<&Server::OnBufferMapAsyncCallback>(), in DoBufferMapAsync() 102 bool Server::DoDeviceCreateBuffer(ObjectId deviceId, in DoDeviceCreateBuffer() 187 bool Server::DoBufferUpdateMappedData(ObjectId bufferId, in DoBufferUpdateMappedData() 230 void Server::OnBufferMapAsyncCallback(WGPUBufferMapAsyncStatus status, MapUserdata* data) { in OnBufferMapAsyncCallback()
|
H A D | ServerShaderModule.cpp | 15 #include "dawn_wire/server/Server.h" 21 bool Server::DoShaderModuleGetCompilationInfo(ObjectId shaderModuleId, uint64_t requestSerial) { in DoShaderModuleGetCompilationInfo() 33 ForwardToServer<decltype(&Server::OnShaderModuleGetCompilationInfo)>::Func< in DoShaderModuleGetCompilationInfo() 34 &Server::OnShaderModuleGetCompilationInfo>(), in DoShaderModuleGetCompilationInfo() 39 void Server::OnShaderModuleGetCompilationInfo(WGPUCompilationInfoRequestStatus status, in OnShaderModuleGetCompilationInfo()
|
/third_party/node/lib/ |
H A D | https.js | 48 Server: HttpServer, 59 function Server(opts, requestListener) { class 60 if (!(this instanceof Server)) return new Server(opts, requestListener); 76 FunctionPrototypeCall(tls.Server, this, opts, _connectionListener); 94 ObjectSetPrototypeOf(Server.prototype, tls.Server.prototype); 95 ObjectSetPrototypeOf(Server, tls.Server); 97 Server [all...] |
H A D | _http_server.js | 164 500: 'Internal Server Error', // RFC 7231 6.6.1 513 function Server(options, requestListener) { class 514 if (!(this instanceof Server)) return new Server(options, requestListener); 526 net.Server.call( 551 ObjectSetPrototypeOf(Server.prototype, net.Server.prototype); 552 ObjectSetPrototypeOf(Server, net.Server); 554 Server 592 Server.prototype[EE.captureRejectionSymbol] = function(err, event, ...args) { global() function [all...] |
H A D | http.js | 43 Server, 49 * Returns a new instance of `http.Server`. 60 * @returns {Server} 63 return new Server(opts, requestListener); 124 Server,
|
H A D | _tls_wrap.js | 125 // Server side times how long a handshake is taking to protect against slow 288 // TLS socket is using a `net.Server` instead of a tls.TLSServer. 1212 debug('net.Server.on(connection): new TLSSocket'); 1304 function Server(options, listener) { class 1305 if (!(this instanceof Server)) 1306 return new Server(options, listener); 1357 ReflectApply(net.Server, this, [options, tlsConnectionListener]); 1366 ObjectSetPrototypeOf(Server.prototype, net.Server.prototype); 1367 ObjectSetPrototypeOf(Server, ne 1582 Server.prototype[EE.captureRejectionSymbol] = function( global() function [all...] |
/third_party/vk-gl-cts/external/vulkancts/vkscserver/ |
H A D | vksClient.hpp | 34 class Server class 42 Server(const string& address) in Server() function in vksc_server::Server 70 inline std::unique_ptr<Server>& StandardOutputServerSingleton() in StandardOutputServerSingleton() 72 static std::unique_ptr<Server> server; in StandardOutputServerSingleton() 78 StandardOutputServerSingleton() = std::unique_ptr<Server>( new Server(address) ); in OpenRemoteStandardOutput()
|
H A D | tests.cpp | 49 void RunTests (Server& server); 71 Server server(address); in main() 99 void RunStoreContentTests (Server& server) in RunStoreContentTests() 122 void RunGetContentTests (Server& server) in RunGetContentTests() 146 void RunCompileShaderTests (Server& server) in RunCompileShaderTests() 175 void RunTests (Server& server) in RunTests()
|
/third_party/rust/crates/rust-openssl/openssl/src/ssl/test/ |
H A D | mod.rs | 24 use crate::ssl::test::server::Server; 49 let mut server = Server::builder(); in verify_untrusted() 61 let server = Server::builder().build(); in verify_trusted() 72 let server = Server::builder().build(); in verify_trusted_with_set_cert() 89 let server = Server::builder().build(); in verify_untrusted_callback_override_ok() 106 let mut server = Server::builder(); in verify_untrusted_callback_override_bad() 122 let server = Server::builder().build(); in verify_trusted_callback_override_ok() 140 let mut server = Server::builder(); in verify_trusted_callback_override_bad() 157 let server = Server::builder().build(); in verify_callback_load_certs() 176 let server = Server in verify_trusted_get_error_ok() [all...] |
H A D | server.rs | 7 pub struct Server { structure names 12 impl Drop for Server { 20 impl Server { impls 77 pub fn build(self) -> Server { in build() 99 Server { in build()
|
/third_party/skia/third_party/externals/swiftshader/src/Vulkan/Debug/ |
H A D | Server.cpp | 15 #include "Server.hpp" 46 class Server::Impl : public Server, public ServerEventListener 63 const std::unique_ptr<dap::net::Server> server; 68 Server::Impl::Impl(const std::shared_ptr<Context> &context, int port) in Impl() 70 , server(dap::net::Server::create()) in Impl() 512 Server::Impl::~Impl() in ~Impl() 518 void Server::Impl::onThreadStarted(ID<Thread> id) in onThreadStarted() 526 void Server::Impl::onThreadStepped(ID<Thread> id) in onThreadStepped() 534 void Server [all...] |
H A D | Server.hpp | 25 // Server implements a Debug Adapter Protocol server that listens on a specific 27 class Server class 30 static std::shared_ptr<Server> create(const std::shared_ptr<Context> &, int port); 32 virtual ~Server() = default;
|
/third_party/typescript/tests/baselines/reference/ |
H A D | varianceProblingAndZeroOrderIndexSignatureRelationsAlign.js | 66 class Server<X extends NeededInfo> {} 67 export class MyServer extends Server<MyInfo> {} // not assignable error at `MyInfo`
137 var Server = /** @class */ (function () {
138 function Server() {
140 return Server;
148 }(Server)); // not assignable error at `MyInfo`
|
H A D | varianceProblingAndZeroOrderIndexSignatureRelationsAlign2.js | 66 class Server<X extends NeededInfo> {} 67 export class MyServer extends Server<MyInfo> {} // not assignable error at `MyInfo`
137 var Server = /** @class */ (function () {
138 function Server() {
140 return Server;
148 }(Server)); // not assignable error at `MyInfo`
|
H A D | exportAssignValueAndType.js | 3 export interface Server { openPort: number; } 7 (): http.Server;
|
H A D | exportEqualNamespaces.js | 3 interface Server extends Object { } 7 (): server.Server;
|
/third_party/node/benchmark/diagnostics_channel/ |
H A D | http.js | 41 const { emit } = http.Server.prototype; 60 http.Server.prototype.emit = wrappedEmit; 63 http.Server.prototype.emit = emit;
|
/third_party/node/test/parallel/ |
H A D | test-net-connect-options-allowhalfopen.js | 46 console.log(`Server received FIN sent by client ${this.clientId}`); 58 console.log(`Server has sent ${serverConnections} FIN`); 91 console.log(`Server has been closed: 100 console.log(`Server started listening at ${host}:${port}`);
|
H A D | test-cluster-net-listen-backlog.js | 5 // Monkey-patch `net.Server.listen` 14 // Ensures that the `backlog` is used to create a `net.Server`. 17 const listen = net.Server.prototype.listen; 19 net.Server.prototype.listen = common.mustCall(
|
H A D | test-http-upgrade-server.js | 40 http.Server.call(this, () => {}); 71 Object.setPrototypeOf(testServer.prototype, http.Server.prototype); 72 Object.setPrototypeOf(testServer, http.Server);
|
/third_party/skia/third_party/externals/spirv-tools/utils/vscode/src/lsp/protocol/ |
H A D | protocol.go | 41 server Server 64 func NewClient(ctx context.Context, stream jsonrpc2.Stream, client Client) (context.Context, *jsonrpc2.Conn, Server) { 71 func NewServer(ctx context.Context, stream jsonrpc2.Stream, server Server) (context.Context, *jsonrpc2.Conn, Client) {
|