/third_party/libsoup/libsoup/ |
D | soup-connection-auth.c | 22 GHashTable *conns; member 32 auth->priv->conns = g_hash_table_new (NULL, NULL); in G_DEFINE_ABSTRACT_TYPE_WITH_PRIVATE() 52 state = g_hash_table_lookup (auth->priv->conns, conn); in connection_disconnected() 53 g_hash_table_remove (auth->priv->conns, conn); in connection_disconnected() 64 g_hash_table_iter_init (&iter, auth->priv->conns); in soup_connection_auth_finalize() 69 g_hash_table_destroy (auth->priv->conns); in soup_connection_auth_finalize() 100 state = g_hash_table_lookup (auth->priv->conns, conn); in soup_connection_auth_get_connection_state_for_message() 110 g_hash_table_insert (auth->priv->conns, conn, state); in soup_connection_auth_get_connection_state_for_message()
|
D | soup-session.c | 125 GHashTable *conns; /* SoupConnection -> SoupSessionHost */ member 232 priv->conns = g_hash_table_new (NULL, NULL); in soup_session_init() 312 g_warn_if_fail (g_hash_table_size (priv->conns) == 0); in soup_session_dispose() 332 g_hash_table_destroy (priv->conns); in soup_session_finalize() 1348 GSList *conns = NULL, *c; in soup_session_cleanup_connections() local 1354 g_hash_table_iter_init (&iter, priv->conns); in soup_session_cleanup_connections() 1359 conns = g_slist_prepend (conns, g_object_ref (conn)); in soup_session_cleanup_connections() 1366 if (!conns) in soup_session_cleanup_connections() 1369 for (c = conns; c; c = c->next) { in soup_session_cleanup_connections() 1374 g_slist_free (conns); in soup_session_cleanup_connections() [all …]
|
/third_party/node/test/parallel/ |
D | test-net-socket-local-address.js | 10 let conns = 0; variable 22 assert.strictEqual(conns, 2); 28 if (conns === 2) { 33 conns++;
|
D | test-http-unix-socket-keep-alive.js | 13 server.getConnections(common.mustSucceed((conns) => { 14 assert.strictEqual(conns, 1);
|
/third_party/libwebsockets/test-apps/ |
D | test.js | 268 for (n = 0; n < jso.conns.length; n++) { 269 var d = new Date(parseInt(jso.conns[n].time, 10) * 1000); 272 "</td><td><b>" + san(jso.conns[n].peer) + 274 "<br>" + san(jso.conns[n].ua) +
|
/third_party/libwebsockets/minimal-examples/http-server/minimal-http-server-eventlib-demos/mount-origin/ |
D | test.js | 268 for (n = 0; n < jso.conns.length; n++) { 269 var d = new Date(parseInt(jso.conns[n].time, 10) * 1000); 272 "</td><td><b>" + san(jso.conns[n].peer) + 274 "<br>" + san(jso.conns[n].ua) +
|
/third_party/mindspore/tests/ut/cpp/dataset/ |
D | cifar_op_test.cc | 45 std::shared_ptr<CifarOp> Cifarop(uint64_t num_works, uint64_t rows, uint64_t conns, std::string pat… in Cifarop() argument 76 …std::make_shared<CifarOp>(cifar_type, usage, num_workers, path, conns, std::move(schema), std::mov… in Cifarop()
|
D | album_op_test.cc | 40 std::shared_ptr<AlbumOp> AlbumSchema(int64_t num_works, int64_t conns, std::string path, std::strin… in AlbumSchema() argument 59 …std::make_shared<AlbumOp>(num_works, path, conns, decode, ext, std::move(schema), std::move(sample…
|
D | manifest_op_test.cc | 40 std::shared_ptr<ManifestOp> Manifest(int32_t num_works, int32_t rows, int32_t conns, const std::str… in Manifest() argument 51 …return std::make_shared<ManifestOp>(num_works, file, conns, decode, map, std::move(schema), std::m…
|
D | image_folder_op_test.cc | 49 std::shared_ptr<ImageFolderOp> ImageFolder(int64_t num_works, int64_t rows, int64_t conns, std::str… in ImageFolder() argument 63 …std::make_shared<ImageFolderOp>(num_works, path, conns, false, decode, ext, map, std::move(schema)…
|
D | map_op_test.cc | 131 std::shared_ptr<ImageFolderOp> ImageFolder(int64_t num_works, int64_t rows, int64_t conns, std::str…
|
/third_party/libwebsockets/minimal-examples/mqtt-client/minimal-mqtt-client-multi/ |
D | README.md | 20 -c <conns>|Count of simultaneous connections (default 8)
|
/third_party/python/Lib/test/ |
D | test_ssl.py | 3780 conns = [] 3786 conns.append(server.accept()[0]) 3787 for sock in conns:
|
/third_party/libwebsockets/READMEs/ |
D | README.coding.md | 113 @section conns Maximum number of connections
|
/third_party/libsoup/ |
D | NEWS | 766 which can be used to bypass SoupSession:max-conns and 767 SoupSession:max-conns-per-host on a per-message basis.
|