summaryrefslogtreecommitdiff
path: root/telepathy-glib/versions/main-1.0.abi
blob: 548cb77ab62245be5ae5e88470f2061b75545349 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
Version: TELEPATHY_GLIB_1.0
Extends: -
Release: 1.0

tp_account_associated_with_uri_scheme
tp_account_bind_connection_status_to_property
tp_account_channel_request_create_and_handle_channel_async
tp_account_channel_request_create_and_handle_channel_finish
tp_account_channel_request_create_channel_async
tp_account_channel_request_create_channel_finish
tp_account_channel_request_dup_request
tp_account_channel_request_ensure_and_handle_channel_async
tp_account_channel_request_ensure_and_handle_channel_finish
tp_account_channel_request_ensure_channel_async
tp_account_channel_request_ensure_channel_finish
tp_account_channel_request_get_account
tp_account_channel_request_get_channel_request
tp_account_channel_request_get_type
tp_account_channel_request_get_user_action_time
tp_account_channel_request_new
tp_account_channel_request_new_audio_call
tp_account_channel_request_new_audio_video_call
tp_account_channel_request_new_dbus_tube
tp_account_channel_request_new_file_transfer
tp_account_channel_request_new_stream_tube
tp_account_channel_request_new_text
tp_account_channel_request_set_conference_initial_channels
tp_account_channel_request_set_delegate_to_preferred_handler
tp_account_channel_request_set_delegated_channel_callback
tp_account_channel_request_set_file_transfer_description
tp_account_channel_request_set_file_transfer_hash
tp_account_channel_request_set_file_transfer_initial_offset
tp_account_channel_request_set_file_transfer_timestamp
tp_account_channel_request_set_file_transfer_uri
tp_account_channel_request_set_hint
tp_account_channel_request_set_hints
tp_account_channel_request_set_initial_invitee_ids
tp_account_channel_request_set_initial_invitees
tp_account_channel_request_set_request_property
tp_account_channel_request_set_sms_channel
tp_account_channel_request_set_target_contact
tp_account_channel_request_set_target_id
tp_account_dup_detailed_error
tp_account_dup_parameters
tp_account_dup_storage_identifier
tp_account_dup_storage_specific_information_async
tp_account_dup_storage_specific_information_finish
tp_account_get_automatic_presence
tp_account_get_changing_presence
tp_account_get_cm_name
tp_account_get_connect_automatically
tp_account_get_connection
tp_account_get_connection_status
tp_account_get_current_presence
tp_account_get_display_name
tp_account_get_feature_quark_addressing
tp_account_get_feature_quark_connection
tp_account_get_feature_quark_core
tp_account_get_feature_quark_storage
tp_account_get_has_been_online
tp_account_get_icon_name
tp_account_get_nickname
tp_account_get_normalized_name
tp_account_get_path_suffix
tp_account_get_protocol_name
tp_account_get_requested_presence
tp_account_get_service
tp_account_get_storage_provider
tp_account_get_storage_restrictions
tp_account_get_supersedes
tp_account_get_type
tp_account_get_uri_schemes
tp_account_is_enabled
tp_account_is_usable
tp_account_manager_create_account_async
tp_account_manager_create_account_finish
tp_account_manager_dup
tp_account_manager_dup_usable_accounts
tp_account_manager_enable_restart
tp_account_manager_get_feature_quark_core
tp_account_manager_get_most_available_presence
tp_account_manager_get_type
tp_account_manager_set_all_requested_presences
tp_account_reconnect_async
tp_account_reconnect_finish
tp_account_remove_async
tp_account_remove_finish
tp_account_request_add_supersedes
tp_account_request_create_account_async
tp_account_request_create_account_finish
tp_account_request_get_type
tp_account_request_new
tp_account_request_new_from_protocol
tp_account_request_presence_async
tp_account_request_presence_finish
tp_account_request_set_automatic_presence
tp_account_request_set_avatar
tp_account_request_set_connect_automatically
tp_account_request_set_display_name
tp_account_request_set_enabled
tp_account_request_set_icon_name
tp_account_request_set_nickname
tp_account_request_set_parameter
tp_account_request_set_parameter_string
tp_account_request_set_requested_presence
tp_account_request_set_service
tp_account_request_set_storage_provider
tp_account_request_unset_parameter
tp_account_set_automatic_presence_async
tp_account_set_automatic_presence_finish
tp_account_set_avatar_async
tp_account_set_avatar_finish
tp_account_set_connect_automatically_async
tp_account_set_connect_automatically_finish
tp_account_set_display_name_async
tp_account_set_display_name_finish
tp_account_set_enabled_async
tp_account_set_enabled_finish
tp_account_set_icon_name_async
tp_account_set_icon_name_finish
tp_account_set_nickname_async
tp_account_set_nickname_finish
tp_account_set_service_async
tp_account_set_service_finish
tp_account_set_uri_scheme_association_async
tp_account_set_uri_scheme_association_finish
tp_account_update_parameters_async
tp_account_update_parameters_finish
tp_add_dispatch_operation_context_accept
tp_add_dispatch_operation_context_delay
tp_add_dispatch_operation_context_fail
tp_add_dispatch_operation_context_get_type
tp_automatic_client_factory_get_type
tp_automatic_client_factory_new
tp_avatar_requirements_copy
tp_avatar_requirements_destroy
tp_avatar_requirements_get_type
tp_avatar_requirements_new
tp_base_call_channel_add_content
tp_base_call_channel_get_call_members
tp_base_call_channel_get_contents
tp_base_call_channel_get_state
tp_base_call_channel_get_type
tp_base_call_channel_has_initial_audio
tp_base_call_channel_has_initial_video
tp_base_call_channel_has_mutable_contents
tp_base_call_channel_is_accepted
tp_base_call_channel_remote_accept
tp_base_call_channel_remove_content
tp_base_call_channel_remove_member
tp_base_call_channel_set_state
tp_base_call_channel_update_member_flags
tp_base_call_content_add_stream
tp_base_call_content_get_connection
tp_base_call_content_get_disposition
tp_base_call_content_get_media_type
tp_base_call_content_get_name
tp_base_call_content_get_object_path
tp_base_call_content_get_streams
tp_base_call_content_get_type
tp_base_call_content_remove_stream
tp_base_call_stream_get_connection
tp_base_call_stream_get_local_sending_state
tp_base_call_stream_get_object_path
tp_base_call_stream_get_remote_sending_state
tp_base_call_stream_get_type
tp_base_call_stream_remove_member
tp_base_call_stream_update_local_sending_state
tp_base_call_stream_update_remote_sending_state
tp_base_channel_close
tp_base_channel_destroyed
tp_base_channel_disappear
tp_base_channel_get_connection
tp_base_channel_get_initiator
tp_base_channel_get_object_path
tp_base_channel_get_self_handle
tp_base_channel_get_target_handle
tp_base_channel_get_type
tp_base_channel_is_destroyed
tp_base_channel_is_registered
tp_base_channel_is_requested
tp_base_channel_is_respawning
tp_base_channel_register
tp_base_channel_reopened
tp_base_channel_reopened_with_requested
tp_base_client_add_approver_filter
tp_base_client_add_approver_filter_variant
tp_base_client_add_handler_capabilities
tp_base_client_add_handler_capabilities_varargs
tp_base_client_add_handler_capability
tp_base_client_add_handler_filter
tp_base_client_add_handler_filter_variant
tp_base_client_add_observer_filter
tp_base_client_add_observer_filter_variant
tp_base_client_be_a_handler
tp_base_client_delegate_channels_async
tp_base_client_delegate_channels_finish
tp_base_client_dup_handled_channels
tp_base_client_dup_pending_requests
tp_base_client_get_bus_name
tp_base_client_get_dbus_connection
tp_base_client_get_name
tp_base_client_get_object_path
tp_base_client_get_type
tp_base_client_get_uniquify_name
tp_base_client_implement_add_dispatch_operation
tp_base_client_implement_handle_channel
tp_base_client_implement_observe_channel
tp_base_client_is_handling_channel
tp_base_client_register
tp_base_client_set_delegated_channels_callback
tp_base_client_set_handler_bypass_approval
tp_base_client_set_handler_request_notification
tp_base_client_set_observer_delay_approvers
tp_base_client_set_observer_recover
tp_base_client_take_approver_filter
tp_base_client_take_handler_filter
tp_base_client_take_observer_filter
tp_base_client_unregister
tp_base_connection_add_client_interest
tp_base_connection_add_possible_client_interest
tp_base_connection_change_status
tp_base_connection_channel_manager_iter_init
tp_base_connection_channel_manager_iter_next
tp_base_connection_check_connected
tp_base_connection_disconnect_with_dbus_error
tp_base_connection_finish_shutdown
tp_base_connection_get_account_path_suffix
tp_base_connection_get_bus_name
tp_base_connection_get_dbus_connection
tp_base_connection_get_handles
tp_base_connection_get_object_path
tp_base_connection_get_self_handle
tp_base_connection_get_status
tp_base_connection_get_type
tp_base_connection_is_destroyed
tp_base_connection_manager_add_protocol
tp_base_connection_manager_get_dbus_connection
tp_base_connection_manager_get_type
tp_base_connection_manager_register
tp_base_connection_register
tp_base_connection_set_self_handle
tp_base_contact_list_add_to_group_async
tp_base_contact_list_add_to_group_finish
tp_base_contact_list_authorize_publication_async
tp_base_contact_list_authorize_publication_finish
tp_base_contact_list_block_contacts_async
tp_base_contact_list_block_contacts_finish
tp_base_contact_list_block_contacts_with_abuse_async
tp_base_contact_list_block_contacts_with_abuse_finish
tp_base_contact_list_can_block
tp_base_contact_list_can_change_contact_list
tp_base_contact_list_contact_blocking_changed
tp_base_contact_list_contacts_changed
tp_base_contact_list_download_async
tp_base_contact_list_download_finish
tp_base_contact_list_dup_blocked_contacts
tp_base_contact_list_dup_contact_groups
tp_base_contact_list_dup_contacts
tp_base_contact_list_dup_group_members
tp_base_contact_list_dup_groups
tp_base_contact_list_dup_states
tp_base_contact_list_false_func
tp_base_contact_list_fill_contact_attributes
tp_base_contact_list_get_connection
tp_base_contact_list_get_contact_list_persists
tp_base_contact_list_get_download_at_connection
tp_base_contact_list_get_group_storage
tp_base_contact_list_get_request_uses_message
tp_base_contact_list_get_state
tp_base_contact_list_get_type
tp_base_contact_list_group_renamed
tp_base_contact_list_groups_changed
tp_base_contact_list_groups_created
tp_base_contact_list_groups_removed
tp_base_contact_list_has_disjoint_groups
tp_base_contact_list_is_blocked
tp_base_contact_list_mixin_blocking_iface_init
tp_base_contact_list_mixin_class_init
tp_base_contact_list_normalize_group
tp_base_contact_list_one_contact_changed
tp_base_contact_list_one_contact_groups_changed
tp_base_contact_list_one_contact_removed
tp_base_contact_list_remove_contacts_async
tp_base_contact_list_remove_contacts_finish
tp_base_contact_list_remove_from_group_async
tp_base_contact_list_remove_from_group_finish
tp_base_contact_list_remove_group_async
tp_base_contact_list_remove_group_finish
tp_base_contact_list_rename_group_async
tp_base_contact_list_rename_group_finish
tp_base_contact_list_request_subscription_async
tp_base_contact_list_request_subscription_finish
tp_base_contact_list_set_contact_groups_async
tp_base_contact_list_set_contact_groups_finish
tp_base_contact_list_set_group_members_async
tp_base_contact_list_set_group_members_finish
tp_base_contact_list_set_list_failed
tp_base_contact_list_set_list_pending
tp_base_contact_list_set_list_received
tp_base_contact_list_store_contacts_async
tp_base_contact_list_store_contacts_finish
tp_base_contact_list_true_func
tp_base_contact_list_unblock_contacts_async
tp_base_contact_list_unblock_contacts_finish
tp_base_contact_list_unpublish_async
tp_base_contact_list_unpublish_finish
tp_base_contact_list_unsubscribe_async
tp_base_contact_list_unsubscribe_finish
tp_base_media_call_channel_get_local_hold_state
tp_base_media_call_channel_get_type
tp_base_media_call_content_get_local_media_description
tp_base_media_call_content_get_type
tp_base_media_call_content_offer_media_description_async
tp_base_media_call_content_offer_media_description_finish
tp_base_media_call_stream_add_endpoint
tp_base_media_call_stream_get_endpoints
tp_base_media_call_stream_get_local_candidates
tp_base_media_call_stream_get_local_sending
tp_base_media_call_stream_get_password
tp_base_media_call_stream_get_receiving_state
tp_base_media_call_stream_get_sending_state
tp_base_media_call_stream_get_type
tp_base_media_call_stream_get_username
tp_base_media_call_stream_remove_endpoint
tp_base_media_call_stream_set_local_sending
tp_base_media_call_stream_set_relay_info
tp_base_media_call_stream_set_stun_servers
tp_base_media_call_stream_update_receiving_state
tp_base_media_call_stream_update_sending_state
tp_base_password_channel_get_type
tp_base_protocol_get_immutable_properties
tp_base_protocol_get_name
tp_base_protocol_get_parameters
tp_base_protocol_get_statuses
tp_base_protocol_get_type
tp_base_protocol_new_connection
tp_base_room_config_dup_channel
tp_base_room_config_emit_properties_changed
tp_base_room_config_get_type
tp_base_room_config_iface_init
tp_base_room_config_property_get_type
tp_base_room_config_register_class
tp_base_room_config_set_can_update_configuration
tp_base_room_config_set_property_mutable
tp_base_room_config_set_retrieved
tp_blockable_contact_list_get_type
tp_call_channel_accept_async
tp_call_channel_accept_finish
tp_call_channel_add_content_async
tp_call_channel_add_content_finish
tp_call_channel_get_contents
tp_call_channel_get_feature_quark_core
tp_call_channel_get_members
tp_call_channel_get_state
tp_call_channel_get_type
tp_call_channel_hangup_async
tp_call_channel_hangup_finish
tp_call_channel_has_dtmf
tp_call_channel_has_hardware_streaming
tp_call_channel_has_hold
tp_call_channel_has_initial_audio
tp_call_channel_has_initial_video
tp_call_channel_has_mutable_contents
tp_call_channel_request_hold_async
tp_call_channel_request_hold_finish
tp_call_channel_send_tones_async
tp_call_channel_send_tones_finish
tp_call_channel_set_queued_async
tp_call_channel_set_queued_finish
tp_call_channel_set_ringing_async
tp_call_channel_set_ringing_finish
tp_call_content_get_disposition
tp_call_content_get_feature_quark_core
tp_call_content_get_media_type
tp_call_content_get_name
tp_call_content_get_streams
tp_call_content_get_type
tp_call_content_media_description_add_rtcp_extended_reports_interface
tp_call_content_media_description_add_rtcp_feedback_interface
tp_call_content_media_description_add_rtcp_feedback_message
tp_call_content_media_description_add_rtp_header_extension
tp_call_content_media_description_add_rtp_header_extensions_interface
tp_call_content_media_description_add_ssrc
tp_call_content_media_description_append_codec
tp_call_content_media_description_get_object_path
tp_call_content_media_description_get_remote_contact
tp_call_content_media_description_get_type
tp_call_content_media_description_new
tp_call_content_media_description_set_does_avpf
tp_call_content_media_description_set_rtcp_extended_reports
tp_call_content_media_description_set_rtcp_feedback_minimum_interval
tp_call_content_remove_async
tp_call_content_remove_finish
tp_call_content_send_tones_async
tp_call_content_send_tones_finish
tp_call_state_reason_get_type
tp_call_stream_can_request_receiving
tp_call_stream_endpoint_add_new_candidate
tp_call_stream_endpoint_add_new_candidates
tp_call_stream_endpoint_get_object_path
tp_call_stream_endpoint_get_state
tp_call_stream_endpoint_get_type
tp_call_stream_endpoint_new
tp_call_stream_endpoint_set_remote_credentials
tp_call_stream_get_feature_quark_core
tp_call_stream_get_local_sending_state
tp_call_stream_get_remote_members
tp_call_stream_get_type
tp_call_stream_request_receiving_async
tp_call_stream_request_receiving_finish
tp_call_stream_set_sending_async
tp_call_stream_set_sending_finish
tp_capabilities_dup_channel_classes
tp_capabilities_get_type
tp_capabilities_is_specific_to_contact
tp_capabilities_supports_audio_call
tp_capabilities_supports_audio_video_call
tp_capabilities_supports_contact_search
tp_capabilities_supports_dbus_tubes
tp_capabilities_supports_file_transfer
tp_capabilities_supports_file_transfer_description
tp_capabilities_supports_file_transfer_initial_offset
tp_capabilities_supports_file_transfer_timestamp
tp_capabilities_supports_file_transfer_uri
tp_capabilities_supports_room_list
tp_capabilities_supports_sms
tp_capabilities_supports_stream_tubes
tp_capabilities_supports_text_chatrooms
tp_capabilities_supports_text_chats
tp_channel_close_async
tp_channel_close_finish
tp_channel_destroy_async
tp_channel_destroy_finish
tp_channel_dispatch_operation_claim_with_async
tp_channel_dispatch_operation_claim_with_finish
tp_channel_dispatch_operation_close_channel_async
tp_channel_dispatch_operation_close_channel_finish
tp_channel_dispatch_operation_destroy_channel_async
tp_channel_dispatch_operation_destroy_channel_finish
tp_channel_dispatch_operation_get_account
tp_channel_dispatch_operation_get_channel
tp_channel_dispatch_operation_get_connection
tp_channel_dispatch_operation_get_feature_quark_core
tp_channel_dispatch_operation_get_possible_handlers
tp_channel_dispatch_operation_get_type
tp_channel_dispatch_operation_handle_with_async
tp_channel_dispatch_operation_handle_with_finish
tp_channel_dispatch_operation_leave_channel_async
tp_channel_dispatch_operation_leave_channel_finish
tp_channel_dispatcher_get_type
tp_channel_dispatcher_present_channel_async
tp_channel_dispatcher_present_channel_finish
tp_channel_dup_immutable_properties
tp_channel_filter_get_type
tp_channel_filter_new_for_all_types
tp_channel_filter_new_for_calls
tp_channel_filter_new_for_dbus_tubes
tp_channel_filter_new_for_file_transfers
tp_channel_filter_new_for_stream_tubes
tp_channel_filter_new_for_text_chatrooms
tp_channel_filter_new_for_text_chats
tp_channel_filter_require_locally_requested
tp_channel_filter_require_no_target
tp_channel_filter_require_property
tp_channel_filter_require_target_is_contact
tp_channel_filter_require_target_is_room
tp_channel_filter_require_target_type
tp_channel_get_channel_type
tp_channel_get_channel_type_id
tp_channel_get_connection
tp_channel_get_feature_quark_core
tp_channel_get_feature_quark_group
tp_channel_get_feature_quark_password
tp_channel_get_handle
tp_channel_get_identifier
tp_channel_get_initiator_contact
tp_channel_get_requested
tp_channel_get_target_contact
tp_channel_get_type
tp_channel_group_dup_local_pending
tp_channel_group_dup_members
tp_channel_group_dup_remote_pending
tp_channel_group_get_contact_owner
tp_channel_group_get_flags
tp_channel_group_get_local_pending_info
tp_channel_group_get_self_contact
tp_channel_iface_get_type
tp_channel_join_async
tp_channel_join_finish
tp_channel_leave_async
tp_channel_leave_finish
tp_channel_manager_asv_has_unknown_properties
tp_channel_manager_create_channel
tp_channel_manager_emit_channel_closed
tp_channel_manager_emit_channel_closed_for_object
tp_channel_manager_emit_new_channel
tp_channel_manager_emit_request_already_satisfied
tp_channel_manager_emit_request_failed
tp_channel_manager_emit_request_failed_printf
tp_channel_manager_ensure_channel
tp_channel_manager_foreach_channel
tp_channel_manager_foreach_channel_class
tp_channel_manager_get_type
tp_channel_manager_request_get_type
tp_channel_manager_type_foreach_channel_class
tp_channel_password_needed
tp_channel_provide_password_async
tp_channel_provide_password_finish
tp_channel_request_dup_hints
tp_channel_request_dup_immutable_properties
tp_channel_request_get_account
tp_channel_request_get_preferred_handler
tp_channel_request_get_type
tp_channel_request_get_user_action_time
tp_cli_authentication_tls_certificate_call_accept
tp_cli_authentication_tls_certificate_call_reject
tp_cli_authentication_tls_certificate_connect_to_accepted
tp_cli_authentication_tls_certificate_connect_to_rejected
tp_client_factory_add_account_features
tp_client_factory_add_account_features_varargs
tp_client_factory_add_channel_features
tp_client_factory_add_channel_features_varargs
tp_client_factory_add_connection_features
tp_client_factory_add_connection_features_varargs
tp_client_factory_add_contact_features
tp_client_factory_add_contact_features_varargs
tp_client_factory_add_protocol_features
tp_client_factory_add_protocol_features_varargs
tp_client_factory_add_tls_certificate_features
tp_client_factory_add_tls_certificate_features_varargs
tp_client_factory_can_set_default
tp_client_factory_dup
tp_client_factory_dup_account_features
tp_client_factory_dup_channel_features
tp_client_factory_dup_connection_features
tp_client_factory_dup_contact_features
tp_client_factory_dup_protocol_features
tp_client_factory_dup_tls_certificate_features
tp_client_factory_ensure_account
tp_client_factory_ensure_account_manager
tp_client_factory_ensure_channel
tp_client_factory_ensure_channel_dispatcher
tp_client_factory_ensure_connection
tp_client_factory_ensure_connection_manager
tp_client_factory_ensure_contact
tp_client_factory_ensure_contact_by_id_async
tp_client_factory_ensure_contact_by_id_finish
tp_client_factory_ensure_debug_client
tp_client_factory_ensure_logger
tp_client_factory_ensure_protocol
tp_client_factory_ensure_tls_certificate
tp_client_factory_get_dbus_connection
tp_client_factory_get_type
tp_client_factory_new
tp_client_factory_set_default
tp_client_factory_upgrade_contacts_async
tp_client_factory_upgrade_contacts_finish
tp_client_get_type
tp_client_message_get_type
tp_client_message_new
tp_client_message_new_text
tp_cm_info_source_get_type
tp_cm_message_get_sender
tp_cm_message_get_type
tp_cm_message_new
tp_cm_message_new_text
tp_cm_message_set_message
tp_cm_message_set_sender
tp_cm_message_take_message
tp_cm_param_filter_string_nonempty
tp_cm_param_filter_uint_nonzero
tp_cm_param_setter_offset
tp_connection_add_client_interest
tp_connection_add_client_interest_by_id
tp_connection_add_to_group_async
tp_connection_add_to_group_finish
tp_connection_authorize_publication_async
tp_connection_authorize_publication_finish
tp_connection_bind_connection_status_to_property
tp_connection_block_contacts_async
tp_connection_block_contacts_finish
tp_connection_can_report_abusive
tp_connection_can_set_contact_alias
tp_connection_disconnect_async
tp_connection_disconnect_finish
tp_connection_dup_contact_by_id_async
tp_connection_dup_contact_by_id_finish
tp_connection_dup_contact_if_possible
tp_connection_dup_contact_info_supported_fields
tp_connection_dup_contact_list
tp_connection_dup_detailed_error
tp_connection_get_account
tp_connection_get_avatar_requirements
tp_connection_get_balance
tp_connection_get_balance_uri
tp_connection_get_blocked_contacts
tp_connection_get_can_change_contact_list
tp_connection_get_capabilities
tp_connection_get_cm_name
tp_connection_get_contact_groups
tp_connection_get_contact_info_flags
tp_connection_get_contact_list_persists
tp_connection_get_contact_list_state
tp_connection_get_disjoint_groups
tp_connection_get_feature_quark_aliasing
tp_connection_get_feature_quark_avatar_requirements
tp_connection_get_feature_quark_balance
tp_connection_get_feature_quark_capabilities
tp_connection_get_feature_quark_connected
tp_connection_get_feature_quark_contact_blocking
tp_connection_get_feature_quark_contact_groups
tp_connection_get_feature_quark_contact_info
tp_connection_get_feature_quark_contact_list
tp_connection_get_feature_quark_contact_list_properties
tp_connection_get_feature_quark_core
tp_connection_get_group_storage
tp_connection_get_protocol_name
tp_connection_get_request_uses_message
tp_connection_get_self_contact
tp_connection_get_status
tp_connection_get_type
tp_connection_manager_activate
tp_connection_manager_check_valid_name
tp_connection_manager_check_valid_protocol_name
tp_connection_manager_dup_protocol_names
tp_connection_manager_dup_protocols
tp_connection_manager_get_feature_quark_core
tp_connection_manager_get_info_source
tp_connection_manager_get_name
tp_connection_manager_get_protocol
tp_connection_manager_get_type
tp_connection_manager_has_protocol
tp_connection_manager_is_running
tp_connection_manager_param_copy
tp_connection_manager_param_dup_default_variant
tp_connection_manager_param_dup_variant_type
tp_connection_manager_param_free
tp_connection_manager_param_get_dbus_signature
tp_connection_manager_param_get_name
tp_connection_manager_param_get_type
tp_connection_manager_param_is_dbus_property
tp_connection_manager_param_is_required
tp_connection_manager_param_is_required_for_registration
tp_connection_manager_param_is_secret
tp_connection_presence_type_cmp_availability
tp_connection_refresh_contact_info
tp_connection_remove_contacts_async
tp_connection_remove_contacts_finish
tp_connection_remove_from_group_async
tp_connection_remove_from_group_finish
tp_connection_remove_group_async
tp_connection_remove_group_finish
tp_connection_rename_group_async
tp_connection_rename_group_finish
tp_connection_request_subscription_async
tp_connection_request_subscription_finish
tp_connection_set_contact_info_async
tp_connection_set_contact_info_finish
tp_connection_set_group_members_async
tp_connection_set_group_members_finish
tp_connection_unblock_contacts_async
tp_connection_unblock_contacts_finish
tp_connection_unpublish_async
tp_connection_unpublish_finish
tp_connection_unsubscribe_async
tp_connection_unsubscribe_finish
tp_connection_upgrade_contacts_async
tp_connection_upgrade_contacts_finish
tp_contact_add_to_group_async
tp_contact_add_to_group_finish
tp_contact_authorize_publication_async
tp_contact_authorize_publication_finish
tp_contact_block_async
tp_contact_block_finish
tp_contact_dup_contact_info
tp_contact_dup_location
tp_contact_get_account
tp_contact_get_alias
tp_contact_get_avatar_file
tp_contact_get_avatar_mime_type
tp_contact_get_avatar_token
tp_contact_get_capabilities
tp_contact_get_client_types
tp_contact_get_connection
tp_contact_get_contact_groups
tp_contact_get_feature_quark_alias
tp_contact_get_feature_quark_avatar_data
tp_contact_get_feature_quark_avatar_token
tp_contact_get_feature_quark_capabilities
tp_contact_get_feature_quark_client_types
tp_contact_get_feature_quark_contact_blocking
tp_contact_get_feature_quark_contact_groups
tp_contact_get_feature_quark_contact_info
tp_contact_get_feature_quark_location
tp_contact_get_feature_quark_presence
tp_contact_get_feature_quark_subscription_states
tp_contact_get_handle
tp_contact_get_identifier
tp_contact_get_presence_message
tp_contact_get_presence_status
tp_contact_get_presence_type
tp_contact_get_publish_request
tp_contact_get_publish_state
tp_contact_get_subscribe_state
tp_contact_get_type
tp_contact_group_list_get_type
tp_contact_has_feature
tp_contact_info_field_copy
tp_contact_info_field_free
tp_contact_info_field_get_type
tp_contact_info_field_new
tp_contact_info_field_spec_copy
tp_contact_info_field_spec_free
tp_contact_info_field_spec_get_type
tp_contact_info_list_copy
tp_contact_info_list_free
tp_contact_info_list_get_type
tp_contact_info_spec_list_copy
tp_contact_info_spec_list_free
tp_contact_info_spec_list_get_type
tp_contact_is_blocked
tp_contact_remove_async
tp_contact_remove_finish
tp_contact_remove_from_group_async
tp_contact_remove_from_group_finish
tp_contact_request_contact_info_async
tp_contact_request_contact_info_finish
tp_contact_request_subscription_async
tp_contact_request_subscription_finish
tp_contact_search_get_account
tp_contact_search_get_limit
tp_contact_search_get_search_keys
tp_contact_search_get_server
tp_contact_search_get_type
tp_contact_search_new_async
tp_contact_search_new_finish
tp_contact_search_reset_async
tp_contact_search_reset_finish
tp_contact_search_result_dup_fields
tp_contact_search_result_get_field
tp_contact_search_result_get_identifier
tp_contact_search_result_get_type
tp_contact_search_start
tp_contact_set_contact_groups_async
tp_contact_set_contact_groups_finish
tp_contact_unblock_async
tp_contact_unblock_finish
tp_contact_unpublish_async
tp_contact_unpublish_finish
tp_contact_unsubscribe_async
tp_contact_unsubscribe_finish
tp_dbus_check_valid_bus_name
tp_dbus_check_valid_interface_name
tp_dbus_check_valid_member_name
tp_dbus_check_valid_object_path
tp_dbus_connection_register_object
tp_dbus_connection_release_name
tp_dbus_connection_request_name
tp_dbus_connection_try_register_object
tp_dbus_connection_unregister_object
tp_dbus_error_get_type
tp_dbus_errors_quark
tp_dbus_name_type_get_type
tp_dbus_properties_mixin_class_init
tp_dbus_properties_mixin_dup_all
tp_dbus_properties_mixin_emit_properties_changed
tp_dbus_properties_mixin_emit_properties_changed_varargs
tp_dbus_properties_mixin_fill_properties_hash
tp_dbus_properties_mixin_flags_get_type
tp_dbus_properties_mixin_get
tp_dbus_properties_mixin_getter_gobject_properties
tp_dbus_properties_mixin_implement_interface
tp_dbus_properties_mixin_make_properties_hash
tp_dbus_properties_mixin_set
tp_dbus_properties_mixin_setter_gobject_properties
tp_dbus_tube_channel_accept_async
tp_dbus_tube_channel_accept_finish
tp_dbus_tube_channel_dup_parameters
tp_dbus_tube_channel_feature_quark_core
tp_dbus_tube_channel_get_service_name
tp_dbus_tube_channel_get_type
tp_dbus_tube_channel_offer_async
tp_dbus_tube_channel_offer_finish
tp_debug_client_get_feature_quark_core
tp_debug_client_get_messages_async
tp_debug_client_get_messages_finish
tp_debug_client_get_type
tp_debug_client_is_enabled
tp_debug_client_set_enabled_async
tp_debug_client_set_enabled_finish
tp_debug_divert_messages
tp_debug_message_get_category
tp_debug_message_get_domain
tp_debug_message_get_level
tp_debug_message_get_message
tp_debug_message_get_time
tp_debug_message_get_type
tp_debug_sender_add_message
tp_debug_sender_add_message_printf
tp_debug_sender_add_message_vprintf
tp_debug_sender_dup
tp_debug_sender_get_type
tp_debug_sender_log_handler
tp_debug_sender_set_timestamps
tp_debug_set_flags
tp_debug_set_persistent
tp_debug_timestamped_log_handler
tp_dtmf_event_to_char
tp_dtmf_player_cancel
tp_dtmf_player_get_type
tp_dtmf_player_is_active
tp_dtmf_player_new
tp_dtmf_player_play
tp_dynamic_handle_repo_get_type
tp_dynamic_handle_repo_lookup_exact
tp_dynamic_handle_repo_set_normalize_async
tp_entity_type_to_string
tp_error_get_dbus_name
tp_error_get_type
tp_error_quark
tp_errors_disconnected_quark
tp_errors_removed_from_group_quark
tp_escape_as_identifier
tp_exportable_channel_get_type
tp_external_group_mixin_finalize
tp_external_group_mixin_get_dbus_property
tp_external_group_mixin_iface_init
tp_external_group_mixin_init
tp_external_group_mixin_init_dbus_properties
tp_file_transfer_channel_accept_file_async
tp_file_transfer_channel_accept_file_finish
tp_file_transfer_channel_dup_metadata
tp_file_transfer_channel_get_date
tp_file_transfer_channel_get_description
tp_file_transfer_channel_get_feature_quark_core
tp_file_transfer_channel_get_filename
tp_file_transfer_channel_get_mime_type
tp_file_transfer_channel_get_service_name
tp_file_transfer_channel_get_size
tp_file_transfer_channel_get_state
tp_file_transfer_channel_get_transferred_bytes
tp_file_transfer_channel_get_type
tp_file_transfer_channel_provide_file_async
tp_file_transfer_channel_provide_file_finish
tp_g_hash_table_update
tp_g_ptr_array_contains
tp_g_ptr_array_extend
tp_g_set_error_invalid_entity_type
tp_g_set_error_unsupported_entity_type
tp_g_signal_connect_object
tp_group_mixin_add_handle_owner
tp_group_mixin_add_handle_owners
tp_group_mixin_add_members
tp_group_mixin_change_flags
tp_group_mixin_change_members
tp_group_mixin_change_self_handle
tp_group_mixin_class_allow_self_removal
tp_group_mixin_class_get_offset_quark
tp_group_mixin_class_init
tp_group_mixin_class_set_remove_with_reason_func
tp_group_mixin_finalize
tp_group_mixin_get_dbus_property
tp_group_mixin_get_group_flags
tp_group_mixin_get_offset_quark
tp_group_mixin_get_self_handle
tp_group_mixin_iface_init
tp_group_mixin_init
tp_group_mixin_init_dbus_properties
tp_group_mixin_remove_members
tp_handle_channel_context_accept
tp_handle_channel_context_delay
tp_handle_channel_context_dup_handler_info
tp_handle_channel_context_fail
tp_handle_channel_context_get_requests
tp_handle_channel_context_get_type
tp_handle_ensure
tp_handle_ensure_async
tp_handle_ensure_finish
tp_handle_inspect
tp_handle_is_valid
tp_handle_lookup
tp_handle_repo_iface_get_type
tp_handle_set_add
tp_handle_set_clear
tp_handle_set_copy
tp_handle_set_destroy
tp_handle_set_difference_update
tp_handle_set_dump
tp_handle_set_foreach
tp_handle_set_get_type
tp_handle_set_is_empty
tp_handle_set_is_member
tp_handle_set_new
tp_handle_set_new_containing
tp_handle_set_new_from_array
tp_handle_set_new_from_intset
tp_handle_set_peek
tp_handle_set_remove
tp_handle_set_size
tp_handle_set_to_array
tp_handle_set_to_identifier_map
tp_handle_set_update
tp_handles_are_valid
tp_heap_add
tp_heap_clear
tp_heap_destroy
tp_heap_extract_first
tp_heap_new
tp_heap_peek_first
tp_heap_remove
tp_heap_size
tp_intset_add
tp_intset_clear
tp_intset_copy
tp_intset_destroy
tp_intset_difference
tp_intset_difference_update
tp_intset_dump
tp_intset_fast_iter_init
tp_intset_fast_iter_next
tp_intset_foreach
tp_intset_from_array
tp_intset_get_type
tp_intset_intersection
tp_intset_is_empty
tp_intset_is_equal
tp_intset_is_member
tp_intset_new
tp_intset_new_containing
tp_intset_remove
tp_intset_size
tp_intset_sized_new
tp_intset_symmetric_difference
tp_intset_to_array
tp_intset_union
tp_intset_union_update
tp_list_connection_managers_async
tp_list_connection_managers_finish
tp_logger_dup
tp_logger_get_type
tp_message_append_part
tp_message_count_parts
tp_message_delete_key
tp_message_delete_part
tp_message_dup_part
tp_message_dup_specific_to_interface
tp_message_dup_supersedes
tp_message_dup_token
tp_message_get_message_type
tp_message_get_pending_message_id
tp_message_get_received_timestamp
tp_message_get_sent_timestamp
tp_message_get_type
tp_message_is_delivery_report
tp_message_is_mutable
tp_message_is_rescued
tp_message_is_scrollback
tp_message_mixin_change_chat_state
tp_message_mixin_chat_state_iface_init
tp_message_mixin_clear
tp_message_mixin_finalize
tp_message_mixin_get_dbus_property
tp_message_mixin_has_pending_messages
tp_message_mixin_iface_init
tp_message_mixin_implement_send_chat_state
tp_message_mixin_implement_sending
tp_message_mixin_init
tp_message_mixin_init_dbus_properties
tp_message_mixin_maybe_send_gone
tp_message_mixin_sent
tp_message_mixin_set_rescued
tp_message_mixin_take_received
tp_message_set_boolean
tp_message_set_bytes
tp_message_set_int32
tp_message_set_int64
tp_message_set_string
tp_message_set_string_printf
tp_message_set_uint32
tp_message_set_uint64
tp_message_set_variant
tp_message_to_text
tp_mixin_class_get_offset
tp_mixin_instance_get_offset
tp_mixin_offset_cast
tp_mutable_contact_group_list_get_type
tp_mutable_contact_list_get_type
tp_observe_channel_context_accept
tp_observe_channel_context_delay
tp_observe_channel_context_fail
tp_observe_channel_context_get_requests
tp_observe_channel_context_get_type
tp_observe_channel_context_is_recovering
tp_presence_mixin_class_get_offset_quark
tp_presence_mixin_class_init
tp_presence_mixin_emit_one_presence_update
tp_presence_mixin_emit_presence_update
tp_presence_mixin_fill_contact_attributes
tp_presence_mixin_finalize
tp_presence_mixin_get_offset_quark
tp_presence_mixin_iface_init
tp_presence_mixin_init
tp_presence_mixin_init_dbus_properties
tp_presence_status_free
tp_presence_status_new
tp_presence_status_spec_can_set_on_self
tp_presence_status_spec_copy
tp_presence_status_spec_free
tp_presence_status_spec_get_name
tp_presence_status_spec_get_presence_type
tp_presence_status_spec_get_type
tp_presence_status_spec_has_message
tp_presence_status_spec_new
tp_protocol_addressing_get_type
tp_protocol_can_register
tp_protocol_dup_immutable_properties
tp_protocol_dup_param
tp_protocol_dup_param_names
tp_protocol_dup_params
tp_protocol_dup_presence_statuses
tp_protocol_get_addressable_uri_schemes
tp_protocol_get_addressable_vcard_fields
tp_protocol_get_authentication_types
tp_protocol_get_avatar_requirements
tp_protocol_get_capabilities
tp_protocol_get_cm_name
tp_protocol_get_english_name
tp_protocol_get_feature_quark_core
tp_protocol_get_feature_quark_parameters
tp_protocol_get_icon_name
tp_protocol_get_name
tp_protocol_get_param
tp_protocol_get_params
tp_protocol_get_type
tp_protocol_get_vcard_field
tp_protocol_has_param
tp_protocol_identify_account_async
tp_protocol_identify_account_finish
tp_protocol_normalize_contact_async
tp_protocol_normalize_contact_finish
tp_protocol_normalize_contact_uri_async
tp_protocol_normalize_contact_uri_finish
tp_protocol_normalize_vcard_address_async
tp_protocol_normalize_vcard_address_finish
tp_proxy_add_interface_by_id
tp_proxy_add_interfaces
tp_proxy_check_interface_by_id
tp_proxy_dbus_error_to_gerror
tp_proxy_get_bus_name
tp_proxy_get_dbus_connection
tp_proxy_get_factory
tp_proxy_get_invalidated
tp_proxy_get_object_path
tp_proxy_get_type
tp_proxy_has_interface
tp_proxy_has_interface_by_id
tp_proxy_invalidate
tp_proxy_is_prepared
tp_proxy_pending_call_cancel
tp_proxy_prepare_async
tp_proxy_prepare_finish
tp_proxy_signal_connection_disconnect
tp_room_info_get_channel_type
tp_room_info_get_description
tp_room_info_get_handle
tp_room_info_get_handle_name
tp_room_info_get_invite_only
tp_room_info_get_members_count
tp_room_info_get_name
tp_room_info_get_requires_password
tp_room_info_get_room_id
tp_room_info_get_server
tp_room_info_get_subject
tp_room_info_get_type
tp_room_list_get_account
tp_room_list_get_server
tp_room_list_get_type
tp_room_list_is_listing
tp_room_list_new_async
tp_room_list_new_finish
tp_room_list_start
tp_run_connection_manager
tp_signalled_message_get_sender
tp_signalled_message_get_type
tp_simple_approver_get_type
tp_simple_approver_new
tp_simple_approver_new_with_am
tp_simple_async_report_success_in_idle
tp_simple_handler_get_type
tp_simple_handler_new
tp_simple_handler_new_with_am
tp_simple_observer_get_type
tp_simple_observer_new
tp_simple_observer_new_with_am
tp_simple_password_manager_get_type
tp_simple_password_manager_new
tp_simple_password_manager_prompt_async
tp_simple_password_manager_prompt_finish
tp_simple_password_manager_prompt_for_channel_async
tp_simple_password_manager_prompt_for_channel_finish
tp_static_handle_repo_get_type
tp_strdiff
tp_stream_tube_channel_accept_async
tp_stream_tube_channel_accept_finish
tp_stream_tube_channel_dup_parameters
tp_stream_tube_channel_get_service
tp_stream_tube_channel_get_type
tp_stream_tube_channel_offer_async
tp_stream_tube_channel_offer_finish
tp_stream_tube_connection_get_channel
tp_stream_tube_connection_get_contact
tp_stream_tube_connection_get_socket_connection
tp_stream_tube_connection_get_type
tp_strv_contains
tp_text_channel_ack_all_pending_messages_async
tp_text_channel_ack_all_pending_messages_finish
tp_text_channel_ack_message_async
tp_text_channel_ack_message_finish
tp_text_channel_ack_messages_async
tp_text_channel_ack_messages_finish
tp_text_channel_dup_pending_messages
tp_text_channel_get_chat_state
tp_text_channel_get_delivery_reporting_support
tp_text_channel_get_feature_quark_chat_states
tp_text_channel_get_feature_quark_incoming_messages
tp_text_channel_get_feature_quark_sms
tp_text_channel_get_message_part_support_flags
tp_text_channel_get_sms_flash
tp_text_channel_get_sms_length_async
tp_text_channel_get_sms_length_finish
tp_text_channel_get_supported_content_types
tp_text_channel_get_type
tp_text_channel_is_sms_channel
tp_text_channel_send_message_async
tp_text_channel_send_message_finish
tp_text_channel_set_chat_state_async
tp_text_channel_set_chat_state_finish
tp_text_channel_supports_message_type
tp_tls_certificate_accept_async
tp_tls_certificate_accept_finish
tp_tls_certificate_add_rejection
tp_tls_certificate_get_cert_data
tp_tls_certificate_get_cert_type
tp_tls_certificate_get_feature_quark_core
tp_tls_certificate_get_nth_rejection
tp_tls_certificate_get_rejection
tp_tls_certificate_get_state
tp_tls_certificate_get_type
tp_tls_certificate_reject_async
tp_tls_certificate_reject_finish
tp_tls_certificate_rejection_get_dbus_error
tp_tls_certificate_rejection_get_details
tp_tls_certificate_rejection_get_error
tp_tls_certificate_rejection_get_reason
tp_tls_certificate_rejection_get_type
tp_tls_certificate_rejection_raise_error
tp_unix_connection_receive_credentials_with_byte
tp_unix_connection_receive_credentials_with_byte_async
tp_unix_connection_receive_credentials_with_byte_finish
tp_unix_connection_send_credentials_with_byte
tp_unix_connection_send_credentials_with_byte_async
tp_unix_connection_send_credentials_with_byte_finish
tp_user_action_time_from_x11
tp_user_action_time_should_present
tp_utf8_make_valid
tp_vardict_get_boolean
tp_vardict_get_double
tp_vardict_get_int32
tp_vardict_get_int64
tp_vardict_get_object_path
tp_vardict_get_string
tp_vardict_get_uint32
tp_vardict_get_uint64
tp_vardict_has_key
tp_variant_convert
tp_variant_type_classify
tp_weak_ref_destroy
tp_weak_ref_dup_object
tp_weak_ref_get_user_data
tp_weak_ref_new