| /f-stack/app/redis-5.0.5/src/ |
| H A D | multi.c | 235 list *clients = NULL; in watchForKey() local 249 if (!clients) { in watchForKey() 250 clients = listCreate(); in watchForKey() 254 listAddNodeTail(clients,c); in watchForKey() 272 list *clients; in unwatchAllKeys() local 280 listDelNode(clients,listSearchKey(clients,c)); in unwatchAllKeys() 282 if (listLength(clients) == 0) in unwatchAllKeys() 294 list *clients; in touchWatchedKey() local 300 if (!clients) return; in touchWatchedKey() 304 listRewind(clients,&li); in touchWatchedKey() [all …]
|
| H A D | blocked.c | 211 listRewind(server.clients,&li); in disconnectAllBlockedClients() 274 list *clients = dictGetVal(de); in handleClientsBlockedOnKeys() local 275 int numclients = listLength(clients); in handleClientsBlockedOnKeys() 284 listDelNode(clients,clientnode); in handleClientsBlockedOnKeys() 285 listAddNodeTail(clients,receiver); in handleClientsBlockedOnKeys() 335 list *clients = dictGetVal(de); in handleClientsBlockedOnKeys() local 336 int numclients = listLength(clients); in handleClientsBlockedOnKeys() 346 listDelNode(clients,clientnode); in handleClientsBlockedOnKeys() 347 listAddNodeTail(clients,receiver); in handleClientsBlockedOnKeys() 383 list *clients = dictGetVal(de); in handleClientsBlockedOnKeys() local [all …]
|
| H A D | pubsub.c | 60 list *clients = NULL; in pubsubSubscribeChannel() local 70 clients = listCreate(); in pubsubSubscribeChannel() 71 dictAdd(server.pubsub_channels,channel,clients); in pubsubSubscribeChannel() 74 clients = dictGetVal(de); in pubsubSubscribeChannel() 76 listAddNodeTail(clients,c); in pubsubSubscribeChannel() 90 list *clients; in pubsubUnsubscribeChannel() local 102 clients = dictGetVal(de); in pubsubUnsubscribeChannel() 103 ln = listSearchKey(clients,c); in pubsubUnsubscribeChannel() 105 listDelNode(clients,ln); in pubsubUnsubscribeChannel() 106 if (listLength(clients) == 0) { in pubsubUnsubscribeChannel()
|
| H A D | redis-benchmark.c | 73 list *clients; member 134 ln = listSearchKey(config.clients,c); in freeClient() 136 listDelNode(config.clients,ln); in freeClient() 140 listNode *ln = config.clients->head, *next; in freeAllClients() 408 listAddNodeTail(config.clients,c); in createClient() 675 config.clients = listCreate(); in main()
|
| /f-stack/app/redis-5.0.5/tests/unit/ |
| H A D | obuf-limits.tcl | 13 set clients [split [r client list] "\r\n"] 14 set c [split [lindex $clients 1] " "] 35 set clients [split [r client list] "\r\n"] 36 set c [split [lindex $clients 1] " "] 61 set clients [split [r client list] "\r\n"] 62 set c [split [lindex $clients 1] " "]
|
| /f-stack/dpdk/drivers/net/qede/base/ |
| H A D | ecore_cxt.c | 821 if (!clients[pos].active) { \ 926 struct ecore_ilt_client_cfg *clients = p_mngr->clients; in ecore_ilt_shadow_alloc() local 931 size = ecore_cxt_ilt_shadow_size(clients); in ecore_ilt_shadow_alloc() 945 for_each_ilt_valid_client(i, clients) { in ecore_ilt_shadow_alloc() 947 p_blk = &clients[i].pf_blks[j]; in ecore_ilt_shadow_alloc() 956 p_blk = &clients[i].vf_blks[j]; in ecore_ilt_shadow_alloc() 1076 struct ecore_ilt_client_cfg *clients; in ecore_cxt_mngr_alloc() local 1087 clients = p_mngr->clients; in ecore_cxt_mngr_alloc() 1568 struct ecore_ilt_client_cfg *clients; in ecore_ilt_init_pf() local 1578 clients = p_hwfn->p_cxt_mngr->clients; in ecore_ilt_init_pf() [all …]
|
| /f-stack/dpdk/examples/multi_process/client_server_mp/mp_server/ |
| H A D | args.c | 83 parse_num_clients(const char *clients) in parse_num_clients() argument 88 if (clients == NULL || *clients == '\0') in parse_num_clients() 91 temp = strtoul(clients, &end, 10); in parse_num_clients()
|
| H A D | init.c | 52 struct client *clients = NULL; variable 160 clients = rte_malloc("client details", in init_shm_rings() 161 sizeof(*clients) * num_clients, 0); in init_shm_rings() 162 if (clients == NULL) in init_shm_rings() 169 clients[i].rx_q = rte_ring_create(q_name, in init_shm_rings() 172 if (clients[i].rx_q == NULL) in init_shm_rings()
|
| H A D | main.c | 141 const unsigned long long rx = clients[i].stats.rx; in do_stats_display() 142 const unsigned long long rx_drop = clients[i].stats.rx_drop; in do_stats_display() 188 clients[i].stats.rx = clients[i].stats.rx_drop = 0; in clear_stats() 204 cl = &clients[client]; in flush_rx_queue()
|
| H A D | init.h | 31 extern struct client *clients;
|
| /f-stack/freebsd/contrib/vchiq/interface/vchiq_arm/ |
| H A D | vchiq_debugfs.c | 62 struct dentry *clients; member 277 struct dentry *clients = vchiq_clients_top(); in vchiq_debugfs_add_instance() local 282 top = debugfs_create_dir(pidstr, clients); in vchiq_debugfs_add_instance() 327 debugfs_info.clients = debugfs_create_dir("clients", in vchiq_debugfs_init() 329 if (!debugfs_info.clients) in vchiq_debugfs_init() 354 return debugfs_info.clients; in vchiq_clients_top()
|
| /f-stack/freebsd/contrib/device-tree/Bindings/arm/msm/ |
| H A D | qcom,llcc.yaml | 15 that can be shared by multiple clients. Clients here are different cores in the 16 SoC, the idea is to minimize the local caches at the clients and migrate to 18 which are assigned to clients. Clients can query the slice details, activate
|
| /f-stack/freebsd/arm/nvidia/drm2/ |
| H A D | tegra_host1x.c | 110 client_list_t clients; member 138 TAILQ_FOREACH(entry, &sc->clients, list_e) { in host1x_drm_init() 169 TAILQ_FOREACH_REVERSE(entry, &sc->clients, client_list, list_e) { in host1x_drm_exit() 391 TAILQ_INSERT_TAIL(&sc->clients, entry, list_e); in host1x_register_client() 406 TAILQ_FOREACH(entry, &sc->clients, list_e) { in host1x_deregister_client() 411 TAILQ_REMOVE(&sc->clients, entry, list_e); in host1x_deregister_client() 563 TAILQ_INIT(&sc->clients); in host1x_attach()
|
| /f-stack/freebsd/contrib/device-tree/Bindings/dma/ |
| H A D | atmel-xdma.txt | 27 * DMA clients 28 DMA clients connected to the Atmel XDMA controller must use the format
|
| H A D | moxa,moxart-dma.txt | 25 DMA clients connected to the MOXA ART DMA controller must use the format
|
| H A D | mtk-hsdma.txt | 33 DMA clients must use the format described in dma/dma.txt file.
|
| H A D | mpc512x-dma.txt | 29 DMA clients must use the format described in dma/dma.txt file.
|
| H A D | socionext,uniphier-xdmac.yaml | 33 DMA request from clients consists of 2 cells:
|
| H A D | sprd-dma.txt | 30 DMA clients connected to the Spreadtrum DMA controller must use the format
|
| /f-stack/freebsd/contrib/openzfs/config/ |
| H A D | kernel-automount.m4 | 4 dnl # solution to handling automounts. Prior to this cifs/nfs clients
|
| /f-stack/freebsd/contrib/device-tree/Bindings/memory-controllers/ |
| H A D | nvidia,tegra186-mc.yaml | 16 handles memory requests for 40-bit virtual addresses from internal clients 115 * Memory clients have access to all 40 bits that the memory
|
| H A D | nvidia,tegra30-mc.yaml | 18 clock from a group of clients. Typically, a system has a single Arbitration 33 The Tegra30 Memory Controller handles memory requests from internal clients
|
| /f-stack/freebsd/contrib/device-tree/Bindings/iio/adc/ |
| H A D | ingenic,adc.txt | 15 ADC clients must use the format described in iio-bindings.txt, giving
|
| /f-stack/freebsd/contrib/device-tree/Bindings/soc/ti/ |
| H A D | keystone-navigator-dma.txt | 6 the actual data movements across clients using destination queues. Every 53 - ti,enable-all: Enable all DMA channels vs clients opening specific channels
|
| /f-stack/freebsd/contrib/device-tree/Bindings/arm/tegra/ |
| H A D | nvidia,tegra30-actmon.txt | 6 from the monitored clients.
|