Philippe Mathieu-Daudé | 87e0331 | 2017-07-28 19:46:05 -0300 | [diff] [blame] | 1 | # See docs/devel/tracing.txt for syntax documentation. |
Daniel P. Berrange | 892bd32 | 2016-06-16 09:39:50 +0100 | [diff] [blame] | 2 | |
Markus Armbruster | 500016e | 2019-03-14 19:09:26 +0100 | [diff] [blame] | 3 | # task.c |
Daniel P. Berrange | 892bd32 | 2016-06-16 09:39:50 +0100 | [diff] [blame] | 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" |
Daniel P. Berrange | 892bd32 | 2016-06-16 09:39:50 +0100 | [diff] [blame] | 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" |
Daniel P. Berrangé | dbb4450 | 2019-02-11 18:24:28 +0000 | [diff] [blame] | 10 | qio_task_thread_source_attach(void *task, void *source) "Task thread source attach task=%p source=%p" |
| 11 | qio_task_thread_source_cancel(void *task, void *source) "Task thread source cancel task=%p source=%p" |
Daniel P. Berrange | 892bd32 | 2016-06-16 09:39:50 +0100 | [diff] [blame] | 12 | |
Markus Armbruster | 500016e | 2019-03-14 19:09:26 +0100 | [diff] [blame] | 13 | # channel-socket.c |
Daniel P. Berrange | 892bd32 | 2016-06-16 09:39:50 +0100 | [diff] [blame] | 14 | qio_channel_socket_new(void *ioc) "Socket new ioc=%p" |
| 15 | qio_channel_socket_new_fd(void *ioc, int fd) "Socket new ioc=%p fd=%d" |
| 16 | qio_channel_socket_connect_sync(void *ioc, void *addr) "Socket connect sync ioc=%p addr=%p" |
| 17 | qio_channel_socket_connect_async(void *ioc, void *addr) "Socket connect async ioc=%p addr=%p" |
| 18 | qio_channel_socket_connect_fail(void *ioc) "Socket connect fail ioc=%p" |
| 19 | qio_channel_socket_connect_complete(void *ioc, int fd) "Socket connect complete ioc=%p fd=%d" |
Juan Quintela | 4e2d8bf | 2019-08-19 15:29:58 +0200 | [diff] [blame] | 20 | qio_channel_socket_listen_sync(void *ioc, void *addr, int num) "Socket listen sync ioc=%p addr=%p num=%d" |
Juan Quintela | 7959e29 | 2019-08-20 09:40:39 +0200 | [diff] [blame] | 21 | qio_channel_socket_listen_async(void *ioc, void *addr, int num) "Socket listen async ioc=%p addr=%p num=%d" |
Daniel P. Berrange | 892bd32 | 2016-06-16 09:39:50 +0100 | [diff] [blame] | 22 | qio_channel_socket_listen_fail(void *ioc) "Socket listen fail ioc=%p" |
| 23 | qio_channel_socket_listen_complete(void *ioc, int fd) "Socket listen complete ioc=%p fd=%d" |
| 24 | qio_channel_socket_dgram_sync(void *ioc, void *localAddr, void *remoteAddr) "Socket dgram sync ioc=%p localAddr=%p remoteAddr=%p" |
| 25 | qio_channel_socket_dgram_async(void *ioc, void *localAddr, void *remoteAddr) "Socket dgram async ioc=%p localAddr=%p remoteAddr=%p" |
| 26 | qio_channel_socket_dgram_fail(void *ioc) "Socket dgram fail ioc=%p" |
| 27 | qio_channel_socket_dgram_complete(void *ioc, int fd) "Socket dgram complete ioc=%p fd=%d" |
| 28 | qio_channel_socket_accept(void *ioc) "Socket accept start ioc=%p" |
| 29 | qio_channel_socket_accept_fail(void *ioc) "Socket accept fail ioc=%p" |
| 30 | qio_channel_socket_accept_complete(void *ioc, void *cioc, int fd) "Socket accept complete ioc=%p cioc=%p fd=%d" |
| 31 | |
Markus Armbruster | 500016e | 2019-03-14 19:09:26 +0100 | [diff] [blame] | 32 | # channel-file.c |
Daniel P. Berrange | 892bd32 | 2016-06-16 09:39:50 +0100 | [diff] [blame] | 33 | qio_channel_file_new_fd(void *ioc, int fd) "File new fd ioc=%p fd=%d" |
| 34 | 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" |
| 35 | |
Markus Armbruster | 500016e | 2019-03-14 19:09:26 +0100 | [diff] [blame] | 36 | # channel-tls.c |
Daniel P. Berrange | 892bd32 | 2016-06-16 09:39:50 +0100 | [diff] [blame] | 37 | 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" |
| 38 | 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" |
| 39 | qio_channel_tls_handshake_start(void *ioc) "TLS handshake start ioc=%p" |
| 40 | qio_channel_tls_handshake_pending(void *ioc, int status) "TLS handshake pending ioc=%p status=%d" |
| 41 | qio_channel_tls_handshake_fail(void *ioc) "TLS handshake fail ioc=%p" |
| 42 | qio_channel_tls_handshake_complete(void *ioc) "TLS handshake complete ioc=%p" |
| 43 | qio_channel_tls_credentials_allow(void *ioc) "TLS credentials allow ioc=%p" |
| 44 | qio_channel_tls_credentials_deny(void *ioc) "TLS credentials deny ioc=%p" |
| 45 | |
Markus Armbruster | 500016e | 2019-03-14 19:09:26 +0100 | [diff] [blame] | 46 | # channel-websock.c |
Daniel P. Berrange | 892bd32 | 2016-06-16 09:39:50 +0100 | [diff] [blame] | 47 | qio_channel_websock_new_server(void *ioc, void *master) "Websock new client ioc=%p master=%p" |
| 48 | qio_channel_websock_handshake_start(void *ioc) "Websock handshake start ioc=%p" |
| 49 | qio_channel_websock_handshake_pending(void *ioc, int status) "Websock handshake pending ioc=%p status=%d" |
| 50 | qio_channel_websock_handshake_reply(void *ioc) "Websock handshake reply ioc=%p" |
Daniel P. Berrange | 3a3f870 | 2017-09-06 11:38:36 +0100 | [diff] [blame] | 51 | qio_channel_websock_handshake_fail(void *ioc, const char *msg) "Websock handshake fail ioc=%p err=%s" |
Daniel P. Berrange | 892bd32 | 2016-06-16 09:39:50 +0100 | [diff] [blame] | 52 | qio_channel_websock_handshake_complete(void *ioc) "Websock handshake complete ioc=%p" |
Daniel P. Berrange | 0efd6c9 | 2017-10-10 13:28:03 +0100 | [diff] [blame] | 53 | qio_channel_websock_http_greeting(void *ioc, const char *greeting) "Websocket HTTP request ioc=%p greeting='%s'" |
| 54 | qio_channel_websock_http_request(void *ioc, const char *protocols, const char *version, const char *host, const char *connection, const char *upgrade, const char *key) "Websocket HTTP request ioc=%p protocols='%s' version='%s' host='%s' connection='%s' upgrade='%s' key='%s'" |
Daniel P. Berrange | 59f183b | 2017-09-21 11:00:47 +0100 | [diff] [blame] | 55 | qio_channel_websock_header_partial_decode(void *ioc, size_t payloadlen, unsigned char fin, unsigned char opcode, unsigned char has_mask) "Websocket header decoded ioc=%p payload-len=%zu fin=0x%x opcode=0x%x has_mask=0x%x" |
| 56 | qio_channel_websock_header_full_decode(void *ioc, size_t headerlen, size_t payloadlen, uint32_t mask) "Websocket header decoded ioc=%p header-len=%zu payload-len=%zu mask=0x%x" |
| 57 | qio_channel_websock_payload_decode(void *ioc, uint8_t opcode, size_t payload_remain) "Websocket header decoded ioc=%p opcode=0x%x payload-remain=%zu" |
| 58 | qio_channel_websock_encode(void *ioc, uint8_t opcode, size_t payloadlen, size_t headerlen) "Websocket encoded ioc=%p opcode=0x%x header-len=%zu payload-len=%zu" |
| 59 | qio_channel_websock_close(void *ioc) "Websocket close ioc=%p" |
Daniel P. Berrange | 892bd32 | 2016-06-16 09:39:50 +0100 | [diff] [blame] | 60 | |
Markus Armbruster | 500016e | 2019-03-14 19:09:26 +0100 | [diff] [blame] | 61 | # channel-command.c |
Daniel P. Berrange | 892bd32 | 2016-06-16 09:39:50 +0100 | [diff] [blame] | 62 | qio_channel_command_new_pid(void *ioc, int writefd, int readfd, int pid) "Command new pid ioc=%p writefd=%d readfd=%d pid=%d" |
| 63 | qio_channel_command_new_spawn(void *ioc, const char *binary, int flags) "Command new spawn ioc=%p binary=%s flags=%d" |
| 64 | qio_channel_command_abort(void *ioc, int pid) "Command abort ioc=%p pid=%d" |
| 65 | qio_channel_command_wait(void *ioc, int pid, int ret, int status) "Command abort ioc=%p pid=%d ret=%d status=%d" |