Home
last modified time | relevance | path

Searched refs:clients (Results 1 – 25 of 343) sorted by relevance

12345678910>>...14

/openbmc/phosphor-snmp/test/
H A Dtest_snmp_conf_manager.cpp49 return manager.clients; in getSNMPClients()
54 for (const auto& val : manager.clients) in isClientExist()
67 for (const auto& val : manager.clients) in deleteSNMPClient()
77 if (manager.clients.contains(id)) in deleteSNMPClient()
79 manager.clients.at(id)->delete_(); in deleteSNMPClient()
96 auto& clients = getSNMPClients(); in TEST_F() local
97 EXPECT_EQ(1U, clients.size()); in TEST_F()
114 auto& clients = getSNMPClients(); in TEST_F() local
115 EXPECT_EQ(2U, clients.size()); in TEST_F()
135 auto& clients = getSNMPClients(); in TEST_F() local
[all …]
/openbmc/obmc-console/
H A Dsocket-handler.c54 struct client **clients; member
83 if (sh->clients[idx] == client) { in client_close()
99 memmove(&sh->clients[idx], &sh->clients[idx + 1], in client_close()
100 sizeof(*sh->clients) * (sh->n_clients - idx)); in client_close()
102 free(sh->clients); in client_close()
103 sh->clients = NULL; in client_close()
105 sh->clients = reallocarray(sh->clients, sh->n_clients, in client_close()
106 sizeof(*sh->clients)); in client_close()
344 sh->clients = in socket_poll()
345 reallocarray(sh->clients, sh->n_clients, sizeof(*sh->clients)); in socket_poll()
[all …]
/openbmc/qemu/tests/qemu-iotests/tests/
H A Dnbd-multiconn115 clients = [nbd.NBD() for _ in range(3)]
116 for c in clients:
120 initial_data = clients[0].pread(1024 * 1024, 0)
124 clients[1].pwrite(updated_data, 0)
125 clients[2].flush()
126 current_data = clients[0].pread(1024 * 1024, 0)
131 clients[i].shutdown()
/openbmc/linux/drivers/net/ethernet/qlogic/qed/
H A Dqed_cxt.c284 struct qed_ilt_client_cfg *p_cli = &p_mngr->clients[ilt_client]; in qed_cxt_get_ilt_page_size()
319 u32 page_sz = p_mgr->clients[ILT_CLI_CDUC].p_size.val; in qed_cxt_set_proto_cid_count()
416 p_cli = &p_hwfn->p_cxt_mngr->clients[ILT_CLI_CDUC]; in qed_ilt_get_dynamic_line_cnt()
444 struct qed_ilt_client_cfg *clients = p_hwfn->p_cxt_mngr->clients; in qed_cxt_ilt_blk_reset() local
449 clients[cli_idx].pf_blks[blk_idx].total_size = 0; in qed_cxt_ilt_blk_reset()
452 clients[cli_idx].vf_blks[blk_idx].total_size = 0; in qed_cxt_ilt_blk_reset()
485 p_cli = qed_cxt_set_cli(&p_mngr->clients[ILT_CLI_CDUC]); in qed_cxt_cfg_ilt_compute()
523 p_cli = qed_cxt_set_cli(&p_mngr->clients[ILT_CLI_CDUT]); in qed_cxt_cfg_ilt_compute()
631 p_cli = qed_cxt_set_cli(&p_mngr->clients[ILT_CLI_QM]); in qed_cxt_cfg_ilt_compute()
656 p_cli = qed_cxt_set_cli(&p_mngr->clients[ILT_CLI_SRC]); in qed_cxt_cfg_ilt_compute()
[all …]
/openbmc/linux/drivers/gpu/vga/
H A Dvga_switcheroo.c157 struct list_head clients; member
175 .clients = LIST_HEAD_INIT(vgasr_priv.clients),
195 list_for_each_entry(client, &vgasr_priv.clients, list) { in vga_switcheroo_enable()
207 list_for_each_entry(client, &vgasr_priv.clients, list) { in vga_switcheroo_enable()
313 list_add_tail(&client->list, &vgasr_priv.clients); in register_client()
482 client = find_client_from_pci(&vgasr_priv.clients, pdev); in vga_switcheroo_get_client_state()
503 client = find_client_from_pci(&vgasr_priv.clients, pdev); in vga_switcheroo_unregister_client()
533 client = find_client_from_pci(&vgasr_priv.clients, pdev); in vga_switcheroo_client_fb_set()
652 list_for_each_entry(client, &vgasr_priv.clients, list) { in vga_switcheroo_show()
701 client = find_client_from_id(&vgasr_priv.clients, id | ID_BIT_AUDIO); in set_audio_state()
[all …]
/openbmc/openbmc/meta-openembedded/meta-networking/recipes-support/libmemcached/files/
H A D0001-Fix-comparison-types.patch13 clients/memflush.cc | 4 ++--
16 diff --git a/clients/memflush.cc b/clients/memflush.cc
18 --- a/clients/memflush.cc
19 +++ b/clients/memflush.cc
/openbmc/phosphor-snmp/
H A Dsnmp_conf_manager.cpp63 this->clients.emplace(lastClientId, std::move(client)); in client()
77 for (const auto& val : clients) in checkClientConfigured()
94 auto it = clients.find(id); in deleteSNMPClient()
95 if (it == clients.end()) in deleteSNMPClient()
119 this->clients.erase(it); in deleteSNMPClient()
148 this->clients.emplace(idNum, std::move(manager)); in restoreClients()
/openbmc/qemu/net/can/
H A Dcan_core.c75 QTAILQ_HEAD(, CanBusClientState) clients;
82 QTAILQ_INIT(&bus->clients); in can_bus_instance_init()
88 QTAILQ_INSERT_TAIL(&bus->clients, client, next); in can_bus_insert_client()
99 QTAILQ_REMOVE(&bus->clients, client, next); in can_bus_remove_client()
114 QTAILQ_FOREACH(peer, &bus->clients, next) { in can_bus_client_send()
/openbmc/libmctp/utils/
H A Dmctp-demux-daemon.c75 struct client *clients; member
98 struct client *client = &ctx->clients[i]; in client_remove_inactive()
104 memmove(&ctx->clients[i], &ctx->clients[i + 1], in client_remove_inactive()
105 (ctx->n_clients - i) * sizeof(*ctx->clients)); in client_remove_inactive()
106 ctx->clients = realloc(ctx->clients, in client_remove_inactive()
107 ctx->n_clients * sizeof(*ctx->clients)); in client_remove_inactive()
140 struct client *client = &ctx->clients[i]; in rx_message()
336 ctx->clients = in socket_process()
337 realloc(ctx->clients, ctx->n_clients * sizeof(struct client)); in socket_process()
339 client = &ctx->clients[ctx->n_clients - 1]; in socket_process()
[all …]
/openbmc/linux/drivers/char/agp/
H A Dfrontend.c340 client = controller->clients; in agp_remove_all_clients()
406 struct agp_client *clients; in agp_controller_make_current() local
408 clients = controller->clients; in agp_controller_make_current()
410 while (clients != NULL) { in agp_controller_make_current()
413 priv = agp_find_private(clients->pid); in agp_controller_make_current()
419 clients = clients->next; in agp_controller_make_current()
428 struct agp_client *clients; in agp_controller_release_current() local
431 clients = controller->clients; in agp_controller_release_current()
433 while (clients != NULL) { in agp_controller_release_current()
436 priv = agp_find_private(clients->pid); in agp_controller_release_current()
[all …]
/openbmc/linux/fs/nfsd/
H A DKconfig29 available to clients mounting the NFS server on this system.
41 Unless you are hosting ancient (1990's era) NFS clients, you don't
56 This protocol extension allows applications on NFS clients to
62 NFSv3 ACL protocol extension allowing NFS clients to manipulate
64 clients which support the Solaris NFSv3 ACL protocol can then
103 clients to directly perform I/O to block devices accessible to both
104 the server and the clients. See RFC 5663 for more details.
116 clients to directly perform I/O to SCSI devices accessible to both
117 the server and the clients. See draft-ietf-nfsv4-scsi-layout for
129 enables NFS clients to directly perform I/O to NFSv3 devices
[all …]
/openbmc/linux/drivers/gpu/host1x/
H A Dbus.c19 static LIST_HEAD(clients);
123 list_move_tail(&client->list, &device->clients); in host1x_subdev_register()
200 list_for_each_entry(client, &device->clients, list) { in host1x_device_init()
211 list_for_each_entry(client, &device->clients, list) { in host1x_device_init()
228 list_for_each_entry_continue_reverse(client, &device->clients, list) in host1x_device_init()
233 client = list_entry(&device->clients, struct host1x_client, list); in host1x_device_init()
236 list_for_each_entry_continue_reverse(client, &device->clients, list) in host1x_device_init()
261 list_for_each_entry_reverse(client, &device->clients, list) { in host1x_device_exit()
274 list_for_each_entry_reverse(client, &device->clients, list) { in host1x_device_exit()
394 list_add_tail(&client->list, &clients); in __host1x_device_del()
[all …]
/openbmc/linux/include/linux/
H A Dpci-p2pdma.h22 int pci_p2pdma_distance_many(struct pci_dev *provider, struct device **clients,
25 struct pci_dev *pci_p2pmem_find_many(struct device **clients, int num_clients);
44 struct device **clients, int num_clients, bool verbose) in pci_p2pdma_distance_many() argument
52 static inline struct pci_dev *pci_p2pmem_find_many(struct device **clients, in pci_p2pmem_find_many() argument
/openbmc/linux/tools/testing/selftests/bpf/prog_tests/
H A Dmigrate_reuseport.c52 __s64 clients[NR_CLIENTS]; member
284 test_case->clients[i] = socket(test_case->family, SOCK_STREAM, in start_clients()
286 if (!ASSERT_NEQ(test_case->clients[i], -1, "socket")) in start_clients()
292 err = settimeo(test_case->clients[i], 100); in start_clients()
299 err = setsockopt(test_case->clients[i], IPPROTO_TCP, in start_clients()
307 err = connect(test_case->clients[i], in start_clients()
313 err = write(test_case->clients[i], buf, MSGLEN); in start_clients()
468 init_fds(test_case->clients, NR_CLIENTS); in run_test()
528 close_fds(test_case->clients, NR_CLIENTS); in run_test()
/openbmc/linux/Documentation/virt/acrn/
H A Dio-request.rst23 2. I/O clients
27 GPA falls in a certain range. Multiple I/O clients can be associated with each
30 any other clients. The ACRN userspace acts as the default client for each User
34 I/O requests and I/O clients.
54 || | | | I/O clients | | | |
93 registered clients based on the address of the I/O accesses, updates
/openbmc/openbmc/meta-raspberrypi/recipes-graphics/wayland/
H A Dweston_%.bbappend1 …:remove:rpi = "${@bb.utils.contains('MACHINE_FEATURES', 'vc4graphics', 'fbdev', 'egl clients', d)}"
5 --disable-simple-egl-clients \
/openbmc/linux/Documentation/admin-guide/nfs/
H A Dpnfs-scsi-server.rst9 also hands out layouts to the clients so that they can directly access the
14 file system must sit on a SCSI LUN that is accessible to the clients in
16 exported LUN, striping or concatenation of LUNs on the MDS and clients
/openbmc/openbmc/poky/meta/recipes-graphics/xorg-lib/
H A Dlibxres_1.2.2.bb5 for X clients to see and monitor the X resource usage of various clients \
/openbmc/linux/Documentation/filesystems/nfs/
H A Dclient-identifier.rst41 leases. When the server restarts and clients attempt to recover
43 clients that held state before the server restarted and clients
92 circumstances where clients can interfere with each other. This is
95 If distinct clients present the same "co_ownerid" string and use
97 unable to tell that the clients are not the same. Each distinct
102 If distinct clients present the same "co_ownerid" string and use
104 to operate normally but reject subsequent clients with the same
117 to other clients in the meantime. This is referred to as "lock
134 - NFS-root (diskless) clients, where the local DHCP server (or
/openbmc/qemu/docs/specs/
H A Divshmem-spec.rst145 - sends connect notifications for the new client to the other clients
147 - sends connect notifications for the other clients to the new client,
155 notifications to the other clients.
160 its connected clients, the clients can elect to continue. They can
162 notification on disconnect, and no new clients can connect. There is
163 no way for the clients to connect to a restarted server. The device
167 production. It assumes all clients use the same number of interrupt
192 2. The client's ID. This is unique among all clients of this server.
199 4. Connect notifications for existing other clients, if any. This is
/openbmc/qemu/docs/system/
H A Dtls.rst29 clients on a private intranet, there is no need to use a commercial
35 server and exposing it directly to remote browser clients. In such a
75 should be copied to all servers and clients wishing to utilize TLS
89 clients when connecting. The hostname / IP address that the client
96 permanently assigned IP address(es), and clients are likely to use them
100 for validation is now deprecated. Instead modern TLS clients will
185 The subject alt name extension data is not required for clients, so
189 clients are not in fact HTTP clients, setting this key purpose is still
246 used for network services and clients. It requires specifying the
270 should be performed. This defaults to enabled, meaning clients will
[all …]
/openbmc/linux/Documentation/gpu/
H A Dtegra.rst7 buffer provided directly by the CPU, to its clients via channels. Software,
30 The various host1x clients need to be bound together into a logical device in
35 tree for matching device nodes, adding the required clients to a list. Drivers
36 for individual clients register with the infrastructure as well and are added
39 Once all clients are available, the infrastructure will initialize the logical
41 the subsystem and in turn initialize each of its clients.
43 Similarly, when one of the clients is unregistered, the infrastructure will
45 the subsystem specific bits are torn down and the clients destroyed in turn.
/openbmc/linux/drivers/memory/tegra/
H A Dtegra20.c421 if (mc->soc->clients[i].id == idx) in tegra20_mc_of_icc_xlate_extended()
519 client0 = &mc->soc->clients[i]; in tegra20_mc_collect_stats()
520 client1 = &mc->soc->clients[i + 1]; in tegra20_mc_collect_stats()
539 client0 = &mc->soc->clients[i]; in tegra20_mc_collect_stats()
547 client1 = &mc->soc->clients[i]; in tegra20_mc_collect_stats()
632 seq_printf(s, "%-14s ", mc->soc->clients[i].name); in tegra20_mc_stats_show()
776 client = mc->soc->clients[id].name; in tegra20_mc_handle_irq()
798 .clients = tegra20_mc_clients,
/openbmc/openbmc/poky/meta/recipes-graphics/wayland/
H A Dweston_14.0.1.bb36 PACKAGECONFIG ??= "${@bb.utils.contains('DISTRO_FEATURES', 'wayland', 'kms wayland egl clients', ''…
77 PACKAGECONFIG[clients] = "-Dsimple-clients=${SIMPLECLIENTS} -Ddemo-clients=true,-Dsimple-clients= -…
/openbmc/openbmc/meta-openembedded/meta-oe/dynamic-layers/meta-python/recipes-extended/lcdproc/
H A Dlcdproc_git.bb42 install -D -m 0755 clients/lcdproc/lcdproc ${D}${bindir}/lcdproc
56 install -m 0644 ${S}/clients/lcdproc/lcdproc.conf ${D}${sysconfdir}/lcdproc.conf
64 install -D -m 0755 clients/lcdvc/lcdvc ${D}${sbindir}/lcdvc
67 install -D -m 0644 ${S}/clients/lcdvc/lcdvc.conf ${D}${sysconfdir}/lcdvc.conf

12345678910>>...14