Home
last modified time | relevance | path

Searched refs:tox_self_get_connection_status (Results 1 – 21 of 21) sorted by relevance

/dports/net-im/tox/c-toxcore-0.2.13/auto_tests/
H A Dlan_discovery_test.c26 } while (tox_self_get_connection_status(tox1) == TOX_CONNECTION_NONE || in main()
27 tox_self_get_connection_status(tox2) == TOX_CONNECTION_NONE); in main()
30 tox_self_get_connection_status(tox1), in main()
31 tox_self_get_connection_status(tox2)); in main()
H A Dbootstrap_test.c41 } while (tox_self_get_connection_status(tox_udp) == TOX_CONNECTION_NONE); in main()
43 const Tox_Connection status = tox_self_get_connection_status(tox_udp); in main()
46 printf("Connection (UDP): %d\n", tox_self_get_connection_status(tox_udp)); in main()
H A Dsave_load_test.c157 if (tox_self_get_connection_status(tox1) && tox_self_get_connection_status(tox2) in test_few_clients()
158 && tox_self_get_connection_status(tox3)) { in test_few_clients()
190 if (tox_self_get_connection_status(tox1) && tox_self_get_connection_status(tox2) in test_few_clients()
191 && tox_self_get_connection_status(tox3)) { in test_few_clients()
H A Dtcp_relay_test.c54 } while (tox_self_get_connection_status(tox_tcp) == TOX_CONNECTION_NONE); in main()
56 const Tox_Connection status = tox_self_get_connection_status(tox_tcp); in main()
H A Dfile_transfer_test.c193 tox_self_get_connection_status(tox1), in file_transfer_test()
194 tox_self_get_connection_status(tox2), in file_transfer_test()
195 tox_self_get_connection_status(tox3), in file_transfer_test()
199 } while (tox_self_get_connection_status(tox1) == TOX_CONNECTION_NONE || in file_transfer_test()
200 tox_self_get_connection_status(tox2) == TOX_CONNECTION_NONE || in file_transfer_test()
201 tox_self_get_connection_status(tox3) == TOX_CONNECTION_NONE || in file_transfer_test()
H A Dtoxav_many_test.c196 if (tox_self_get_connection_status(bootstrap) && in test_av_three_calls()
197 tox_self_get_connection_status(Alice) && in test_av_three_calls()
198 tox_self_get_connection_status(Bobs[0]) && in test_av_three_calls()
199 tox_self_get_connection_status(Bobs[1]) && in test_av_three_calls()
200 tox_self_get_connection_status(Bobs[2]) && off) { in test_av_three_calls()
H A Dfriend_request_test.c51 } while (tox_self_get_connection_status(tox1) == TOX_CONNECTION_NONE || in test_friend_request()
52 tox_self_get_connection_status(tox2) == TOX_CONNECTION_NONE); in test_friend_request()
H A Dset_name_test.c56 } while (tox_self_get_connection_status(tox1) == TOX_CONNECTION_NONE || in test_set_name()
57 tox_self_get_connection_status(tox2) == TOX_CONNECTION_NONE); in test_set_name()
H A Dset_status_message_test.c59 } while (tox_self_get_connection_status(tox1) == TOX_CONNECTION_NONE || in test_set_status_message()
60 tox_self_get_connection_status(tox2) == TOX_CONNECTION_NONE); in test_set_status_message()
H A Dsave_friend_test.c89 if (tox_self_get_connection_status(tox1) && in main()
90 tox_self_get_connection_status(tox2) && in main()
H A Dinvalid_tcp_proxy_test.c44 const Tox_Connection status = tox_self_get_connection_status(tox); in main()
H A Dinvalid_udp_proxy_test.c44 const Tox_Connection status = tox_self_get_connection_status(tox); in main()
H A Dtoxav_basic_test.c201 if (tox_self_get_connection_status(bootstrap) && in test_av_flows()
202 tox_self_get_connection_status(Alice) && in test_av_flows()
203 tox_self_get_connection_status(Bob) && off) { in test_av_flows()
H A Drun_auto_test.h11 if (tox_self_get_connection_status(toxes[i]) == TOX_CONNECTION_NONE) { in all_connected()
/dports/net-im/toxins/toxins-f76a7bd/tox_shell/
H A Dtox_shell.c143 if (tox_self_get_connection_status(tox) && notconnected) { in main()
/dports/net-im/toxins/toxins-f76a7bd/tox_sync/
H A Dtox_sync.c305 if (tox_self_get_connection_status(tox) && notconnected) { in main()
/dports/net-im/uTox/uTox/src/
H A Dtox.c527 if (!!tox_self_get_connection_status(tox) != connected) { in toxcore_thread()
/dports/net-im/tox/c-toxcore-0.2.13/toxcore/
H A Dtox.h1032 TOX_CONNECTION tox_self_get_connection_status(const Tox *tox);
H A Dtox.c783 Tox_Connection tox_self_get_connection_status(const Tox *tox) in tox_self_get_connection_status() function
/dports/net-im/qTox/qTox-1.17.4/src/core/
H A Dcore.cpp445 bool toxConnected = tox_self_get_connection_status(tox.get()) != TOX_CONNECTION_NONE; in checkConnection()
/dports/net-im/py-toxcore-c/py-toxcore-c-0.2.0/pytox/
H A Dcore.c1374 TOX_CONNECTION conn = tox_self_get_connection_status(self->tox); in ToxCore_self_get_connection_status()