qxl: call qemu_spice_display_init_common for secondary devices
[qemu/ar7.git] / io / trace-events
blob3d233698d0f545416ddef29764a2083d236249c3
1 # See docs/devel/tracing.txt for syntax documentation.
3 # io/task.c
4 qio_task_new(void *task, void *source, void *func, void *opaque) "Task new task=%p source=%p func=%p opaque=%p"
5 qio_task_complete(void *task) "Task complete task=%p"
6 qio_task_thread_start(void *task, void *worker, void *opaque) "Task thread start task=%p worker=%p opaque=%p"
7 qio_task_thread_run(void *task) "Task thread run task=%p"
8 qio_task_thread_exit(void *task) "Task thread exit task=%p"
9 qio_task_thread_result(void *task) "Task thread result task=%p"
11 # io/channel-socket.c
12 qio_channel_socket_new(void *ioc) "Socket new ioc=%p"
13 qio_channel_socket_new_fd(void *ioc, int fd) "Socket new ioc=%p fd=%d"
14 qio_channel_socket_connect_sync(void *ioc, void *addr) "Socket connect sync ioc=%p addr=%p"
15 qio_channel_socket_connect_async(void *ioc, void *addr) "Socket connect async ioc=%p addr=%p"
16 qio_channel_socket_connect_fail(void *ioc) "Socket connect fail ioc=%p"
17 qio_channel_socket_connect_complete(void *ioc, int fd) "Socket connect complete ioc=%p fd=%d"
18 qio_channel_socket_listen_sync(void *ioc, void *addr) "Socket listen sync ioc=%p addr=%p"
19 qio_channel_socket_listen_async(void *ioc, void *addr) "Socket listen async ioc=%p addr=%p"
20 qio_channel_socket_listen_fail(void *ioc) "Socket listen fail ioc=%p"
21 qio_channel_socket_listen_complete(void *ioc, int fd) "Socket listen complete ioc=%p fd=%d"
22 qio_channel_socket_dgram_sync(void *ioc, void *localAddr, void *remoteAddr) "Socket dgram sync ioc=%p localAddr=%p remoteAddr=%p"
23 qio_channel_socket_dgram_async(void *ioc, void *localAddr, void *remoteAddr) "Socket dgram async ioc=%p localAddr=%p remoteAddr=%p"
24 qio_channel_socket_dgram_fail(void *ioc) "Socket dgram fail ioc=%p"
25 qio_channel_socket_dgram_complete(void *ioc, int fd) "Socket dgram complete ioc=%p fd=%d"
26 qio_channel_socket_accept(void *ioc) "Socket accept start ioc=%p"
27 qio_channel_socket_accept_fail(void *ioc) "Socket accept fail ioc=%p"
28 qio_channel_socket_accept_complete(void *ioc, void *cioc, int fd) "Socket accept complete ioc=%p cioc=%p fd=%d"
30 # io/channel-file.c
31 qio_channel_file_new_fd(void *ioc, int fd) "File new fd ioc=%p fd=%d"
32 qio_channel_file_new_path(void *ioc, const char *path, int flags, int mode, int fd) "File new fd ioc=%p path=%s flags=%d mode=%d fd=%d"
34 # io/channel-tls.c
35 qio_channel_tls_new_client(void *ioc, void *master, void *creds, const char *hostname) "TLS new client ioc=%p master=%p creds=%p hostname=%s"
36 qio_channel_tls_new_server(void *ioc, void *master, void *creds, const char *aclname) "TLS new client ioc=%p master=%p creds=%p acltname=%s"
37 qio_channel_tls_handshake_start(void *ioc) "TLS handshake start ioc=%p"
38 qio_channel_tls_handshake_pending(void *ioc, int status) "TLS handshake pending ioc=%p status=%d"
39 qio_channel_tls_handshake_fail(void *ioc) "TLS handshake fail ioc=%p"
40 qio_channel_tls_handshake_complete(void *ioc) "TLS handshake complete ioc=%p"
41 qio_channel_tls_credentials_allow(void *ioc) "TLS credentials allow ioc=%p"
42 qio_channel_tls_credentials_deny(void *ioc) "TLS credentials deny ioc=%p"
44 # io/channel-websock.c
45 qio_channel_websock_new_server(void *ioc, void *master) "Websock new client ioc=%p master=%p"
46 qio_channel_websock_handshake_start(void *ioc) "Websock handshake start ioc=%p"
47 qio_channel_websock_handshake_pending(void *ioc, int status) "Websock handshake pending ioc=%p status=%d"
48 qio_channel_websock_handshake_reply(void *ioc) "Websock handshake reply ioc=%p"
49 qio_channel_websock_handshake_fail(void *ioc) "Websock handshake fail ioc=%p"
50 qio_channel_websock_handshake_complete(void *ioc) "Websock handshake complete ioc=%p"
52 # io/channel-command.c
53 qio_channel_command_new_pid(void *ioc, int writefd, int readfd, int pid) "Command new pid ioc=%p writefd=%d readfd=%d pid=%d"
54 qio_channel_command_new_spawn(void *ioc, const char *binary, int flags) "Command new spawn ioc=%p binary=%s flags=%d"
55 qio_channel_command_abort(void *ioc, int pid) "Command abort ioc=%p pid=%d"
56 qio_channel_command_wait(void *ioc, int pid, int ret, int status) "Command abort ioc=%p pid=%d ret=%d status=%d"