Home
last modified time | relevance | path

Searched refs:listen_sock (Results 1 – 2 of 2) sorted by relevance

/openbmc/linux/fs/dlm/
H A Dlowcomms.c177 } listen_sock; variable
625 listen_sock.sk_error_report(sk); in lowcomms_error_report()
635 sk->sk_data_ready = listen_sock.sk_data_ready; in restore_callbacks()
636 sk->sk_state_change = listen_sock.sk_state_change; in restore_callbacks()
637 sk->sk_write_space = listen_sock.sk_write_space; in restore_callbacks()
638 sk->sk_error_report = listen_sock.sk_error_report; in restore_callbacks()
1717 listen_con.sock->sk->sk_data_ready = listen_sock.sk_data_ready; in dlm_lowcomms_shutdown()
1773 listen_sock.sk_data_ready = sock->sk->sk_data_ready; in dlm_listen_for_all()
1774 listen_sock.sk_write_space = sock->sk->sk_write_space; in dlm_listen_for_all()
1775 listen_sock.sk_error_report = sock->sk->sk_error_report; in dlm_listen_for_all()
[all …]
/openbmc/qemu/docs/tools/
H A Dqemu-storage-daemon.rst205 with socket.socket(socket.AF_UNIX, socket.SOCK_STREAM) as listen_sock:
206 listen_sock.bind(sock_path)
207 listen_sock.listen()
209 fd = listen_sock.fileno()
218 # listen_sock was automatically closed when leaving the 'with' statement