/external/libwebsockets/minimal-examples/ws-client/minimal-ws-client-spam/ |
D | minimal-ws-client-spam.c | 31 static struct client clients[200]; variable 62 i.pwsi = &clients[idx].wsi; in connect_client() 64 clients[idx].state = CLIENT_CONNECTING; in connect_client() 68 clients[idx].wsi = NULL; in connect_client() 69 clients[idx].state = CLIENT_IDLE; in connect_client() 89 clients[n].index = n; in callback_minimal_spam() 99 if (clients[n].wsi == wsi) { in callback_minimal_spam() 100 clients[n].wsi = NULL; in callback_minimal_spam() 101 clients[n].state = CLIENT_IDLE; in callback_minimal_spam() 131 if (clients[n].wsi == wsi) { in callback_minimal_spam() [all …]
|
/external/mdnsresponder/Clients/ |
D | ReadMe.txt | 1 This directory contains a variety of clients that use the 4 Some of the clients are command-line oriented; some are graphical. 6 Some of the clients, like the "dns-sd" command-line tool, can be built 7 for a variety of platforms. Some of the clients only build for one 11 Some of the clients can be built more than one way. For example, the 15 What all clients have in common is that they all demonstrate how you 18 The table below gives a summary of which clients build for which platforms.
|
/external/webrtc/test/scenario/ |
D | scenario.cc | 152 void Scenario::ChangeRoute(std::pair<CallClient*, CallClient*> clients, in ChangeRoute() argument 154 ChangeRoute(clients, over_nodes, DataSize::Bytes(PacketOverhead::kDefault)); in ChangeRoute() 157 void Scenario::ChangeRoute(std::pair<CallClient*, CallClient*> clients, in ChangeRoute() argument 161 uint16_t port = clients.second->Bind(route->to); in ChangeRoute() 163 clients.first->transport_->Connect(route->from, addr, overhead); in ChangeRoute() 214 std::pair<CallClient*, CallClient*> clients, in CreateVideoStream() argument 218 return CreateVideoStream(clients, config); in CreateVideoStream() 222 std::pair<CallClient*, CallClient*> clients, in CreateVideoStream() argument 225 new VideoStreamPair(clients.first, clients.second, config)); in CreateVideoStream() 230 std::pair<CallClient*, CallClient*> clients, in CreateAudioStream() argument [all …]
|
D | scenario.h | 79 void ChangeRoute(std::pair<CallClient*, CallClient*> clients, 82 void ChangeRoute(std::pair<CallClient*, CallClient*> clients, 87 std::pair<CallClient*, CallClient*> clients, 90 std::pair<CallClient*, CallClient*> clients, 94 std::pair<CallClient*, CallClient*> clients, 97 std::pair<CallClient*, CallClient*> clients,
|
/external/adhd/cras/src/server/ |
D | cras_observer.c | 44 struct cras_observer_client *clients; member 115 DL_FOREACH (g_observer->clients, client) { in output_volume_alert() 128 DL_FOREACH (g_observer->clients, client) { in output_mute_alert() 143 DL_FOREACH (g_observer->clients, client) { in capture_gain_alert() 156 DL_FOREACH (g_observer->clients, client) { in capture_mute_alert() 173 DL_FOREACH (g_observer->clients, client) { in nodes_alert() 185 DL_FOREACH (g_observer->clients, client) { in active_node_alert() 199 DL_FOREACH (g_observer->clients, client) { in output_node_volume_alert() 213 DL_FOREACH (g_observer->clients, client) { in node_left_right_swapped_alert() 227 DL_FOREACH (g_observer->clients, client) { in input_node_gain_alert() [all …]
|
/external/wpa_supplicant_8/wpa_supplicant/hidl/1.4/ |
D | p2p_network.cpp | 108 const hidl_vec<hidl_array<uint8_t, 6>> &clients, setClientList_cb _hidl_cb) in setClientList() argument 112 &P2pNetwork::setClientListInternal, _hidl_cb, clients); in setClientList() 188 const std::vector<hidl_array<uint8_t, 6>> &clients) in setClientListInternal() argument 197 (u8 *)os_malloc(ETH_ALEN * 2 * clients.size()); in setClientListInternal() 202 for (const auto &client : clients) { in setClientListInternal() 208 wpa_ssid->num_p2p_clients = clients.size(); in setClientListInternal() 219 std::vector<hidl_array<uint8_t, 6>> clients; in getClientListInternal() local 222 clients.emplace_back(list); in getClientListInternal() 225 return {{SupplicantStatusCode::SUCCESS, ""}, clients}; in getClientListInternal()
|
/external/strace/ |
D | mmap_notify.c | 35 static struct mmap_notify_client *clients; variable 43 client->next = clients; in mmap_notify_register_client() 44 clients = client; in mmap_notify_register_client() 52 for (client = clients; client; client = client->next) in mmap_notify_report()
|
/external/webrtc/examples/peerconnection/server/ |
D | main.cc | 98 PeerChannel clients; in main() local 122 ChannelMember* member = clients.Lookup(s); in main() 126 clients.AddMember(s); in main() 136 ChannelMember* target = clients.IsTargetedRequest(s); in main() 154 clients.CloseAll(); in main() 164 clients.OnClosing(s); in main() 174 clients.CheckForTimeout(); in main()
|
/external/tensorflow/tensorflow/compiler/xla/python/ |
D | outfeed_receiver_test.cc | 110 std::vector<PjRtClient*> clients{cpu_client.get()}; in TEST() local 119 std::make_shared<OutfeedReceiver>(callback, clients, 128); in TEST() 143 std::vector<PjRtClient*> clients{cpu_client.get()}; in TEST() local 152 std::make_shared<OutfeedReceiver>(callback, clients, 128); in TEST() 188 std::vector<PjRtClient*> clients{cpu_client.get()}; in TEST() local 197 std::make_shared<OutfeedReceiver>(callback, clients, 128); in TEST() 231 std::vector<PjRtClient*> clients{cpu_client.get()}; in TEST() local 240 std::make_shared<OutfeedReceiver>(callback, clients, 128); in TEST() 265 std::vector<PjRtClient*> clients{cpu_client.get()}; in TEST() local 274 std::make_shared<OutfeedReceiver>(callback, clients, 128); in TEST() [all …]
|
D | outfeed_receiver_py.cc | 46 std::vector<std::shared_ptr<PyClient>> clients, in OutfeedReceiverForPython() argument 49 clients_(std::move(clients)) { in OutfeedReceiverForPython() 129 std::vector<std::shared_ptr<PyClient>> clients, in BuildOutfeedReceiverSubmodule() 133 callback_to_python, clients, max_callback_queue_size_bytes); in BuildOutfeedReceiverSubmodule()
|
/external/rust/crates/quiche/examples/ |
D | server.rs | 111 let mut clients = ClientMap::new(); in main() localVariable 118 clients.values().filter_map(|(_, c)| c.conn.timeout()).min(); in main() 131 clients.values_mut().for_each(|(_, c)| c.conn.on_timeout()); in main() 175 let (_, client) = if !clients.contains_key(&hdr.dcid) && in main() 176 !clients.contains_key(conn_id) in main() 269 clients.insert(scid.to_vec(), (src, client)); in main() 271 clients.get_mut(&scid[..]).unwrap() in main() 273 match clients.get_mut(&hdr.dcid) { in main() 276 None => clients.get_mut(conn_id).unwrap(), in main() 328 for (peer, client) in clients.values_mut() { in main() [all …]
|
D | http3-server.rs | 119 let mut clients = ClientMap::new(); in main() localVariable 126 clients.values().filter_map(|(_, c)| c.conn.timeout()).min(); in main() 139 clients.values_mut().for_each(|(_, c)| c.conn.on_timeout()); in main() 183 let (_, client) = if !clients.contains_key(&hdr.dcid) && in main() 184 !clients.contains_key(conn_id) in main() 278 clients.insert(scid.to_vec(), (src, client)); in main() 280 clients.get_mut(&scid[..]).unwrap() in main() 282 match clients.get_mut(&hdr.dcid) { in main() 285 None => clients.get_mut(conn_id).unwrap(), in main() 385 for (peer, client) in clients.values_mut() { in main() [all …]
|
/external/ltp/testcases/network/nfsv4/locks/ |
D | README | 26 ./locktests -n <number of concurent processes> -f <test file> -c <number of clients> 28 Test clients: 32 Multiple clients options 36 clients try to use the same file. It uses a test server and several test 37 clients. 61 -c <num> : Number of clients to connect before starting the tests. 75 Multiple clients: 78 (Server waiting for 3 clients to be connected) 80 -test clients: 132 Note that the testing locks with thread on multiple clients is disabled [all …]
|
D | locktests.py | 126 for i in clients: 141 nbreClients=len(clients) 148 for i in clients: 153 for i in clients: 170 clients=[] variable 197 clients.append(args[i])
|
D | deploy_info | 2 clients accessing the same server. 11 -c <machine> [...] : Setup test on these clients 26 -c <machine> [...] : Clients. run tests from this clients
|
/external/grpc-grpc/test/cpp/qps/ |
D | driver.cc | 331 std::vector<ClientData> clients(num_clients); in RunScenario() local 338 clients[i].stub = WorkerService::NewStub( in RunScenario() 342 clients[i].stub = WorkerService::NewStub( in RunScenario() 363 clients[i].stream = clients[i].stub->RunClient(alloc_context(&contexts)); in RunScenario() 364 if (!clients[i].stream->Write(args)) { in RunScenario() 371 if (!clients[i].stream->Read(&init_status)) { in RunScenario() 386 auto client = &clients[i]; in RunScenario() 392 auto client = &clients[i]; in RunScenario() 413 auto client = &clients[i]; in RunScenario() 425 auto client = &clients[i]; in RunScenario() [all …]
|
/external/wayland/ |
D | README | 4 its clients as well as a library implementation of the protocol. The 7 client itself. The clients can be traditional applications, X servers 12 them to the relevant client. The clients creates buffers and renders 17 makes wayland so simple. All clients are expected to handle rendering 22 clients.
|
D | METADATA | 3 "Wayland is a protocol for a compositor to talk to its clients as well as a " 6 "input devices, an X application, or a wayland client itself. The clients "
|
/external/bcc/examples/networking/tunnel_monitor/ |
D | README.md | 12 clients in different segments of the overlay network. The script `traffic.sh` 13 can be used to simulate a subset of clients on host0 talking to various other 14 clients+hosts at different traffic rates. 59 pings between various clients and hosts. Check back on the chord diagram to 63 As an exercise, try modifying the traffic.sh script to cause one of the clients
|
/external/autotest/utils/ |
D | compile_gwt_clients.py | 125 for project,clients in enumerate_projects().iteritems(): 126 for client in clients: 136 for project,clients in enumerate_projects().iteritems(): 137 for client in clients:
|
/external/libwebsockets/plugins/ |
D | protocol_lws_server_status.c | 53 int clients; member 118 if (!v->clients++) { in callback_lws_server_status() 128 if (!--v->clients) in callback_lws_server_status() 135 if (v->clients) in callback_lws_server_status()
|
/external/libxkbcommon/ |
D | PACKAGING | 2 library), libxkbcommon-x11 (an addon library for XCB clients) and libxkbregistry 72 transitive dependency of Wayland clients on X libraries. 75 clients that require libxkbcommon do not require libxkbregistry and clients
|
/external/ltp/testcases/network/stress/ftp/ |
D | 00_Descriptions.txt | 7 clients request data over IPv4/IPv6 asynchronously for a long time 14 Verify the ftp server or the kernel is not down after many ftp clients
|
/external/iputils/doc/ |
D | rarpd.sgml | 27 requests from clients. Provided MAC address of client 48 However, some clients really still need this to boot. 69 Listen not only RARP but also ARP messages, some rare clients 131 but some (most of, to be more exact) clients are so badly broken that 133 not wonderful taking into account that clients using RARPD in 2002
|
/external/llvm/docs/ |
D | MarkedUpDisassembly.rst | 16 instruction text. This is intended for clients like disassemblers, list file 44 Annoated assembly display will supply contextual markup to help clients more 46 independent, so clients can effectively provide good display without any target 68 clients.
|