2 # file
: src
/util
/event_poll
.c
4 probe
event_poll_add_handle(int watch
, int fd
, int events
, void *cb
, void *opaque
, void *ff
);
5 probe
event_poll_update_handle(int watch
, int events
);
6 probe
event_poll_remove_handle(int watch
);
7 probe
event_poll_dispatch_handle(int watch
, int events
);
8 probe
event_poll_purge_handle(int watch
);
10 probe
event_poll_add_timeout(int timer
, int frequency
, void *cb
, void *opaque
, void *ff
);
11 probe
event_poll_update_timeout(int timer
, int frequency
);
12 probe
event_poll_remove_timeout(int timer
);
13 probe
event_poll_dispatch_timeout(int timer
);
14 probe
event_poll_purge_timeout(int timer
);
16 probe
event_poll_run(int nfds
, int timeout
);
18 # file
: src
/util
/virdbus
.c
20 probe
dbus_method_call(const char *interface, const char *member
, const char *object
, const char *destination
);
21 probe
dbus_method_error(const char *interface, const char *member
, const char *object
, const char *destination
, const char *name
, const char *message
);
22 probe
dbus_method_reply(const char *interface, const char *member
, const char *object
, const char *destination
);
24 # file
: src
/util
/virobject
.c
26 probe
object_new(void *obj
, const char *klassname
);
27 probe
object_ref(void *obj
);
28 probe
object_unref(void *obj
);
29 probe
object_dispose(void *obj
);
31 # file
: src
/rpc
/virnetsocket
.c
33 probe
rpc_socket_new(void *sock
, int fd
, int errfd
, pid_t pid
, const char *localAddr
, const char *remoteAddr
);
34 probe
rpc_socket_dispose(void *sock
);
35 probe
rpc_socket_send_fd(void *sock
, int fd
);
36 probe
rpc_socket_recv_fd(void *sock
, int fd
);
39 # file
: src
/rpc
/virnetserverclient
.c
41 probe
rpc_server_client_new(void *client
, void *sock
);
42 probe
rpc_server_client_dispose(void *client
);
43 probe
rpc_server_client_msg_tx_queue(void *client
, int len
, int prog
, int vers
, int proc
, int type
, int status
, int serial
);
44 probe
rpc_server_client_msg_rx(void *client
, int len
, int prog
, int vers
, int proc
, int type
, int status
, int serial
);
47 # file
: src
/rpc
/virnetclient
.c
49 probe
rpc_client_new(void *client
, void *sock
);
50 probe
rpc_client_dispose(void *client
);
51 probe
rpc_client_msg_tx_queue(void *client
, int len
, int prog
, int vers
, int proc
, int type
, int status
, int serial
);
52 probe
rpc_client_msg_rx(void *client
, int len
, int prog
, int vers
, int proc
, int type
, int status
, int serial
);
55 # file
: src
/remote
/remote_daemon
.c
57 probe
rpc_server_client_auth_allow(void *client
, int authtype
, const char *identity
);
58 probe
rpc_server_client_auth_deny(void *client
, int authtype
, const char *identity
);
59 probe
rpc_server_client_auth_fail(void *client
, int authtype
);
62 # file
: src
/rpc
/virnettlscontext
.c
64 probe
rpc_tls_context_new(void *ctxt
, const char *cacert
, const char *cacrl
,
65 const char *cert
, const char *key
, int sanityCheckCert
, int requireValidCert
, int isServer
);
66 probe
rpc_tls_context_dispose(void *ctxt
);
67 probe
rpc_tls_context_session_allow(void *ctxt
, void *sess
, const char *dname
);
68 probe
rpc_tls_context_session_deny(void *ctxt
, void *sess
, const char *dname
);
69 probe
rpc_tls_context_session_fail(void *ctxt
, void *sess
);
72 probe
rpc_tls_session_new(void *sess
, void *ctxt
, const char *hostname
, int isServer
);
73 probe
rpc_tls_session_dispose(void *sess
);
74 probe
rpc_tls_session_handshake_pass(void *sess
);
75 probe
rpc_tls_session_handshake_fail(void *sess
);
78 # file
: src
/rpc
/virkeepalive
.c
80 probe
rpc_keepalive_new(void *ka
, void *client
);
81 probe
rpc_keepalive_dispose(void *ka
);
82 probe
rpc_keepalive_start(void *ka
, void *client
, int interval
, int count
);
83 probe
rpc_keepalive_stop(void *ka
, void *client
);
84 probe
rpc_keepalive_send(void *ka
, void *client
, int prog
, int vers
, int proc
);
85 probe
rpc_keepalive_received(void *ka
, void *client
, int prog
, int vers
, int proc
);
86 probe
rpc_keepalive_timeout(void *ka
, void *client
, int coundToDeath
, int idle
);