Home
last modified time | relevance | path

Searched full:listen (Results 1 – 25 of 622) sorted by relevance

12345678910>>...25

/openbmc/linux/net/ax25/
H A Dax25_iface.c103 struct listen_struct *listen; in ax25_listen_register() local
108 if ((listen = kmalloc(sizeof(*listen), GFP_ATOMIC)) == NULL) in ax25_listen_register()
111 listen->callsign = *callsign; in ax25_listen_register()
112 listen->dev = dev; in ax25_listen_register()
115 listen->next = listen_list; in ax25_listen_register()
116 listen_list = listen; in ax25_listen_register()
126 struct listen_struct *s, *listen; in ax25_listen_release() local
129 listen = listen_list; in ax25_listen_release()
130 if (listen == NULL) { in ax25_listen_release()
135 if (ax25cmp(&listen->callsign, callsign) == 0 && listen->dev == dev) { in ax25_listen_release()
[all …]
/openbmc/openbmc/meta-openembedded/meta-networking/recipes-support/lowpan-tools/lowpan-tools/
H A D0001-Fix-potential-string-truncation-in-strncpy.patch14 tests/listen-packet.c | 3 ++-
15 tests/listen.c | 3 ++-
24 diff --git a/tests/listen-packet.c b/tests/listen-packet.c
26 --- a/tests/listen-packet.c
27 +++ b/tests/listen-packet.c
38 diff --git a/tests/listen.c b/tests/listen.c
40 --- a/tests/listen.c
41 +++ b/tests/listen.c
/openbmc/linux/tools/testing/selftests/bpf/prog_tests/
H A Dmigrate_reuseport.c5 * 1. call listen() for 4 server sockets.
7 * 3. call listen() for 1 server socket. (migration target)
13 * 6. call listen() for the second server socket.
17 * 8. call listen() for the last server.
269 err = listen(test_case->servers[i], qlen); in start_servers()
270 if (!ASSERT_OK(err, "listen")) in start_servers()
373 * calling listen() again will bind() the first listener in migrate_dance()
378 * and SOCK_BINDPORT_LOCK is set. Thus, re-listen() will in migrate_dance()
381 err = listen(test_case->servers[1], QLEN); in migrate_dance()
382 if (!ASSERT_OK(err, "listen")) in migrate_dance()
[all …]
H A Dsockopt_inherit.c75 err = listen(fd, 1); in server_thread()
84 err += verify_sockopt(fd, CUSTOM_INHERIT1, "listen", 1); in server_thread()
85 err += verify_sockopt(fd, CUSTOM_INHERIT2, "listen", 1); in server_thread()
86 err += verify_sockopt(fd, CUSTOM_LISTENER, "listen", 1); in server_thread()
/openbmc/openbmc/meta-openembedded/meta-oe/recipes-devtools/php/php/
H A Dphp-fpm.conf127 ; - 'listen' (unixsocket)
145 ; 'ip.add.re.ss:port' - to listen on a TCP socket to a specific address on
147 ; 'port' - to listen on a TCP socket to all addresses on a
149 ; '/path/to/unix/socket' - to listen on a unix socket.
151 listen = 127.0.0.1:9000
153 ; Set listen(2) backlog. A value of '-1' means unlimited.
155 ;listen.backlog = -1
162 ;listen.owner = nobody
163 ;listen.group = nobody
164 ;listen.mode = 0666
[all …]
/openbmc/qemu/docs/devel/migration/
H A Dpostcopy.rst62 ADVISE->DISCARD->LISTEN->RUNNING->END
82 - Listen
85 the destination state to Listen, and starts a new thread
86 (the 'listen thread') which takes over the job of receiving
104 The listen thread can now quit, and perform the cleanup of migration
126 - Command: 'postcopy listen'
156 main -----DISCARD-CMD_PACKAGED ( LISTEN DEVICE DEVICE DEVICE RUN )
161 listen thread: --- page -- page -- page -- page -- page --
173 - On receipt of 'postcopy listen' - 3 -(i.e. the 1st command in the package)
178 the returned page (c) is loaded by the listen thread allowing the main
[all …]
/openbmc/qemu/python/qemu/qmp/
H A Devents.py4 Asynchronous QMP uses `EventListener` objects to listen for events. An
5 `EventListener` is a FIFO event queue that can be pre-filtered to listen
54 By omitting names entirely, you can listen to ALL events.
300 Activating an existing listener with `listen()`
304 and activated temporarily by using `listen()` instead of `listener()`:
312 with qmp.listen(listener):
325 Activating multiple existing listeners with `listen()`
329 `listen()` is capable of activating multiple listeners simultaneously:
341 with qmp.listen(jobA, jobB):
468 One or more names of events to listen for.
[all …]
/openbmc/linux/tools/testing/selftests/net/mptcp/
H A Ddiag.sh146 __chk_nr "ss -N $ns -Ml '$filter' | grep -c LISTEN" "$expected" "$msg" 0
154 __chk_listen "dport $lport" 0 "listen match for dport $lport"
156 # should return 'our' mptcp listen socket
157 __chk_listen "sport $lport" 1 "listen match for sport $lport"
159 __chk_listen "src inet:0.0.0.0:$lport" 1 "listen match for saddr and sport"
161 __chk_listen "" 1 "all listen sockets"
176 listen_nr=$(ss -N "${ns}" -Ml | grep -c LISTEN)
/openbmc/linux/drivers/staging/vt6655/
H A Dpower.c68 /* clear always listen beacon */ in PSvEnablePowerSaving()
70 /* first time set listen next beacon */ in PSvEnablePowerSaving()
73 /* always listen beacon */ in PSvEnablePowerSaving()
106 /* set always listen beacon */ in PSvDisablePowerSaving()
137 /* Turn on wake up to listen next beacon */ in PSbIsNextTBTTWakeUp()
H A Dpower.h20 #define PS_FAST_INTERVAL 1 /* Fast power saving listen interval */
21 #define PS_MAX_INTERVAL 4 /* MAX power saving listen interval */
/openbmc/openbmc-build-scripts/scripts/
H A Ddbus-unit-test.py49 "<listen>.*</listen>",
50 "<listen>unix:path=%s</listen>" % dbus_socket,
/openbmc/openbmc/meta-openembedded/meta-oe/recipes-kernel/trace-cmd/files/
H A D0002-Drop-using-_LARGEFILE64_SOURCE.patch15 tracecmd/trace-listen.c | 1 -
71 diff --git a/tracecmd/trace-listen.c b/tracecmd/trace-listen.c
73 --- a/tracecmd/trace-listen.c
74 +++ b/tracecmd/trace-listen.c
/openbmc/linux/include/xen/interface/io/
H A Dpvcalls.h10 /* "1" means socket, connect, release, bind, listen, accept and poll */
69 } listen; member
107 } listen; member
/openbmc/openbmc/meta-openembedded/meta-webserver/recipes-httpd/nginx/files/
H A Ddefault_server.site3 listen 80 default_server;
4 listen [::]:80 default_server;
/openbmc/linux/drivers/staging/vt6656/
H A Dpower.c64 /* always listen beacon */ in vnt_enable_power_saving()
83 /* set always listen beacon */ in vnt_disable_power_saving()
106 /* Turn on wake up to listen next beacon */ in vnt_next_tbtt_wakeup()
/openbmc/linux/drivers/net/wireless/broadcom/brcm80211/brcmfmac/
H A Dp2p.h51 * @BRCMF_P2P_STATUS_DISCOVER_LISTEN: P2P listen, remaining on channel.
53 * @BRCMF_P2P_STATUS_WAITING_NEXT_AF_LISTEN: extra listen time for af tx.
82 * @my_listen_chan: this peers listen channel.
83 * @peer_listen_chan: remote peers listen channel.
/openbmc/linux/tools/testing/selftests/net/
H A Dstress_reuseport_listen.sh22 # 300 different vips listen on port 443
23 # Each vip:443 sockaddr has 80 LISTEN sock by using SO_REUSEPORT
H A Dstress_reuseport_listen.c87 err = listen(lfds[i], 0); in main()
89 error(1, errno, "listen(lfds[%d])", i); in main()
96 printf("listen %d socks took %lu.%lu\n", nr_lsocks, in main()
H A Dreuseaddr_conflict.c76 if (listen(fd, 1) < 0) { in open_port()
77 perror("listen"); in open_port()
94 error(1, errno, "Couldn't open listen socket"); in main()
H A Dreuseaddr_ports_exhausted.c149 ret = listen(fd[0], 5); in TEST()
150 ASSERT_EQ(0, ret) TH_LOG("failed to listen."); in TEST()
152 ret = listen(fd[1], 5); in TEST()
153 …EXPECT_EQ(-1, ret) TH_LOG("should fail to listen because only one uid reserves the port in TCP_LIS… in TEST()
/openbmc/qemu/io/
H A Dtrace-events23 qio_channel_socket_listen_sync(void *ioc, void *addr, int num) "Socket listen sync ioc=%p addr=%p n…
24 qio_channel_socket_listen_async(void *ioc, void *addr, int num) "Socket listen async ioc=%p addr=%p…
25 qio_channel_socket_listen_fail(void *ioc) "Socket listen fail ioc=%p"
26 qio_channel_socket_listen_complete(void *ioc, int fd) "Socket listen complete ioc=%p fd=%d"
/openbmc/linux/drivers/net/wireless/ath/ath5k/
H A Dani.c377 int listen; in ath5k_hw_ani_get_listen_time() local
385 listen = ath_hw_get_listen_time(common); in ath5k_hw_ani_get_listen_time()
389 return listen; in ath5k_hw_ani_get_listen_time()
467 * receive ("listen" time) and raise or lower immunity accordingly.
478 int listen, ofdm_high, ofdm_low, cck_high, cck_low; in ath5k_ani_calibration() local
480 /* get listen time since last call and add it to the counter because we in ath5k_ani_calibration()
483 listen = ath5k_hw_ani_get_listen_time(ah, as); in ath5k_ani_calibration()
484 as->listen_time += listen; in ath5k_ani_calibration()
497 "listen %d (now %d)", as->listen_time, listen); in ath5k_ani_calibration()
/openbmc/linux/net/nfc/nci/
H A Dntf.c437 struct activation_params_listen_nfc_dep *listen; in nci_extract_activation_params_nfc_dep() local
452 listen = &ntf->activation_params.listen_nfc_dep; in nci_extract_activation_params_nfc_dep()
453 listen->atr_req_len = min_t(__u8, *data++, in nci_extract_activation_params_nfc_dep()
455 pr_debug("atr_req_len %d\n", listen->atr_req_len); in nci_extract_activation_params_nfc_dep()
456 if (listen->atr_req_len > 0) in nci_extract_activation_params_nfc_dep()
457 memcpy(listen->atr_req, data, listen->atr_req_len); in nci_extract_activation_params_nfc_dep()
567 goto listen; in nci_rf_intf_activated_ntf_packet()
680 listen: in nci_rf_intf_activated_ntf_packet()
681 /* Listen mode */ in nci_rf_intf_activated_ntf_packet()
/openbmc/openbmc/meta-openembedded/meta-oe/recipes-extended/etcd/etcd/
H A Detcd-existing.conf16 # List of comma separated URLs to listen on for peer traffic.
19 # List of comma separated URLs to listen on for client traffic.
/openbmc/qemu/tests/unit/
H A Dcheck-block-qdict.c423 QDict *src, *dst, *rule, *vnc, *acl, *listen; in qdict_crumple_test_recursive() local
428 qdict_put_str(src, "vnc.listen.addr", "127.0.0.1"); in qdict_crumple_test_recursive()
429 qdict_put_str(src, "vnc.listen.port", "5901"); in qdict_crumple_test_recursive()
448 listen = qdict_get_qdict(vnc, "listen"); in qdict_crumple_test_recursive()
449 g_assert(listen); in qdict_crumple_test_recursive()
450 g_assert_cmpint(qdict_size(listen), ==, 2); in qdict_crumple_test_recursive()
451 g_assert_cmpstr("127.0.0.1", ==, qdict_get_str(listen, "addr")); in qdict_crumple_test_recursive()
452 g_assert_cmpstr("5901", ==, qdict_get_str(listen, "port")); in qdict_crumple_test_recursive()

12345678910>>...25