qdev: ignore GlobalProperty.errp for hotplugged devices
[qemu.git] / io / trace-events
blob1108c16b82fef1e84d62ae423aa781209bbca6dc
1 # See docs/trace-events.txt for syntax documentation.
3 # io/buffer.c
4 buffer_resize(const char *buf, size_t olen, size_t len) "%s: old %zd, new %zd"
5 buffer_move_empty(const char *buf, size_t len, const char *from) "%s: %zd bytes from %s"
6 buffer_move(const char *buf, size_t len, const char *from) "%s: %zd bytes from %s"
7 buffer_free(const char *buf, size_t len) "%s: capacity %zd"
9 # io/task.c
10 qio_task_new(void *task, void *source, void *func, void *opaque) "Task new task=%p source=%p func=%p opaque=%p"
11 qio_task_complete(void *task) "Task complete task=%p"
12 qio_task_abort(void *task) "Task abort task=%p"
13 qio_task_thread_start(void *task, void *worker, void *opaque) "Task thread start task=%p worker=%p opaque=%p"
14 qio_task_thread_run(void *task) "Task thread run task=%p"
15 qio_task_thread_exit(void *task) "Task thread exit task=%p"
16 qio_task_thread_result(void *task) "Task thread result task=%p"
18 # io/channel-socket.c
19 qio_channel_socket_new(void *ioc) "Socket new ioc=%p"
20 qio_channel_socket_new_fd(void *ioc, int fd) "Socket new ioc=%p fd=%d"
21 qio_channel_socket_connect_sync(void *ioc, void *addr) "Socket connect sync ioc=%p addr=%p"
22 qio_channel_socket_connect_async(void *ioc, void *addr) "Socket connect async ioc=%p addr=%p"
23 qio_channel_socket_connect_fail(void *ioc) "Socket connect fail ioc=%p"
24 qio_channel_socket_connect_complete(void *ioc, int fd) "Socket connect complete ioc=%p fd=%d"
25 qio_channel_socket_listen_sync(void *ioc, void *addr) "Socket listen sync ioc=%p addr=%p"
26 qio_channel_socket_listen_async(void *ioc, void *addr) "Socket listen async ioc=%p addr=%p"
27 qio_channel_socket_listen_fail(void *ioc) "Socket listen fail ioc=%p"
28 qio_channel_socket_listen_complete(void *ioc, int fd) "Socket listen complete ioc=%p fd=%d"
29 qio_channel_socket_dgram_sync(void *ioc, void *localAddr, void *remoteAddr) "Socket dgram sync ioc=%p localAddr=%p remoteAddr=%p"
30 qio_channel_socket_dgram_async(void *ioc, void *localAddr, void *remoteAddr) "Socket dgram async ioc=%p localAddr=%p remoteAddr=%p"
31 qio_channel_socket_dgram_fail(void *ioc) "Socket dgram fail ioc=%p"
32 qio_channel_socket_dgram_complete(void *ioc, int fd) "Socket dgram complete ioc=%p fd=%d"
33 qio_channel_socket_accept(void *ioc) "Socket accept start ioc=%p"
34 qio_channel_socket_accept_fail(void *ioc) "Socket accept fail ioc=%p"
35 qio_channel_socket_accept_complete(void *ioc, void *cioc, int fd) "Socket accept complete ioc=%p cioc=%p fd=%d"
37 # io/channel-file.c
38 qio_channel_file_new_fd(void *ioc, int fd) "File new fd ioc=%p fd=%d"
39 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"
41 # io/channel-tls.c
42 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"
43 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"
44 qio_channel_tls_handshake_start(void *ioc) "TLS handshake start ioc=%p"
45 qio_channel_tls_handshake_pending(void *ioc, int status) "TLS handshake pending ioc=%p status=%d"
46 qio_channel_tls_handshake_fail(void *ioc) "TLS handshake fail ioc=%p"
47 qio_channel_tls_handshake_complete(void *ioc) "TLS handshake complete ioc=%p"
48 qio_channel_tls_credentials_allow(void *ioc) "TLS credentials allow ioc=%p"
49 qio_channel_tls_credentials_deny(void *ioc) "TLS credentials deny ioc=%p"
51 # io/channel-websock.c
52 qio_channel_websock_new_server(void *ioc, void *master) "Websock new client ioc=%p master=%p"
53 qio_channel_websock_handshake_start(void *ioc) "Websock handshake start ioc=%p"
54 qio_channel_websock_handshake_pending(void *ioc, int status) "Websock handshake pending ioc=%p status=%d"
55 qio_channel_websock_handshake_reply(void *ioc) "Websock handshake reply ioc=%p"
56 qio_channel_websock_handshake_fail(void *ioc) "Websock handshake fail ioc=%p"
57 qio_channel_websock_handshake_complete(void *ioc) "Websock handshake complete ioc=%p"
59 # io/channel-command.c
60 qio_channel_command_new_pid(void *ioc, int writefd, int readfd, int pid) "Command new pid ioc=%p writefd=%d readfd=%d pid=%d"
61 qio_channel_command_new_spawn(void *ioc, const char *binary, int flags) "Command new spawn ioc=%p binary=%s flags=%d"
62 qio_channel_command_abort(void *ioc, int pid) "Command abort ioc=%p pid=%d"
63 qio_channel_command_wait(void *ioc, int pid, int ret, int status) "Command abort ioc=%p pid=%d ret=%d status=%d"