Home
last modified time | relevance | path

Searched refs:tox_file_control (Results 1 – 12 of 12) sorted by relevance

/dports/net-im/qTox/qTox-1.17.4/src/core/
H A Dcorefile.cpp201 tox_file_control(tox, file->friendId, file->fileNum, TOX_FILE_CONTROL_PAUSE, in pauseResumeFile()
204 tox_file_control(tox, file->friendId, file->fileNum, TOX_FILE_CONTROL_RESUME, in pauseResumeFile()
221 tox_file_control(tox, file->friendId, file->fileNum, TOX_FILE_CONTROL_CANCEL, nullptr); in cancelFileSend()
236 tox_file_control(tox, file->friendId, file->fileNum, TOX_FILE_CONTROL_CANCEL, nullptr); in cancelFileRecv()
251 tox_file_control(tox, file->friendId, file->fileNum, TOX_FILE_CONTROL_CANCEL, nullptr); in rejectFileRecvRequest()
271 tox_file_control(tox, file->friendId, file->fileNum, TOX_FILE_CONTROL_RESUME, nullptr); in acceptFileRecvRequest()
/dports/net-im/toxins/toxins-f76a7bd/tox_sync/
H A Dtox_sync.c140 tox_file_control(tox, friend_number, file_number, TOX_FILE_CONTROL_CANCEL, 0); in file_request_accept()
164 tox_file_control(tox, friend_number, file_number, TOX_FILE_CONTROL_CANCEL, 0); in file_request_accept()
172 tox_file_control(tox, friend_number, file_number, TOX_FILE_CONTROL_CANCEL, 0); in file_request_accept()
176 if (tox_file_control(tox, friend_number, file_number, TOX_FILE_CONTROL_RESUME, 0)) { in file_request_accept()
/dports/net-im/uTox/uTox/src/
H A Dfile_transfers.c647 if (tox_file_control(tox, friend_number, file_number, control, &error)) { in ft_local_control()
665 if (tox_file_control(tox, friend_number, file_number, control, &error)) { in ft_local_control()
679 if (tox_file_control(tox, friend_number, file_number, control, &error)) { in ft_local_control()
793 tox_file_control(tox, friend_number, file_number, TOX_FILE_CONTROL_CANCEL, NULL); in incoming_avatar()
834 tox_file_control(tox, friend_number, file_number, TOX_FILE_CONTROL_CANCEL, NULL); in incoming_inline_image()
881 tox_file_control(tox, friend_number, file_number, TOX_FILE_CANCEL, NULL); in incoming_file_callback_request()
901 tox_file_control(tox, friend_number, file_number, TOX_FILE_CONTROL_CANCEL, 0); in incoming_file_callback_request()
1090 tox_file_control(tox, friend_number, file_number, TOX_FILE_CONTROL_CANCEL, NULL); in ft_send_avatar()
1168 tox_file_control(tox, friend_number, file_number, TOX_FILE_CONTROL_CANCEL, NULL); in ft_send_file()
1248 tox_file_control(tox, friend_number, file_number, TOX_FILE_CONTROL_CANCEL, NULL); in ft_send_data()
/dports/net-im/toxic/toxic-0.11.3/src/
H A Dchat_commands.c267 tox_file_control(m, self->num, ft->filenumber, TOX_FILE_CONTROL_RESUME, &err); in cmd_savefile()
433 tox_file_control(m, self->num, filenum, TOX_FILE_CONTROL_CANCEL, NULL); in cmd_sendfile()
H A Dfile_transfers.c354 if (!tox_file_control(m, ft->friendnumber, ft->filenumber, (Tox_File_Control) CTRL, &err)) { in close_file_transfer()
H A Dchat.c577 if (!tox_file_control(m, ft->friendnumber, ft->filenumber, TOX_FILE_CONTROL_RESUME, NULL)) { in chat_resume_broken_ft()
636 tox_file_control(m, friendnum, filenumber, TOX_FILE_CONTROL_CANCEL, NULL); in chat_onFileRecv()
H A Dwindows.c313 tox_file_control(m, friendnumber, filenumber, TOX_FILE_CONTROL_CANCEL, NULL); in on_file_recv()
H A Dfriendlist.c635 tox_file_control(m, num, filenum, TOX_FILE_CONTROL_CANCEL, NULL); in friendlist_onFileRecv()
/dports/net-im/tox/c-toxcore-0.2.13/auto_tests/
H A Dfile_transfer_test.c75 … ck_assert_msg(tox_file_control(tox, friend_number, file_number, TOX_FILE_CONTROL_RESUME, &error), in tox_file_receive()
/dports/net-im/tox/c-toxcore-0.2.13/toxcore/
H A Dtox.h2000 bool tox_file_control(Tox *tox, uint32_t friend_number, uint32_t file_number, TOX_FILE_CONTROL cont…
H A Dtox.c1436 bool tox_file_control(Tox *tox, uint32_t friend_number, uint32_t file_number, Tox_File_Control cont… in tox_file_control() function
/dports/net-im/py-toxcore-c/py-toxcore-c-0.2.0/pytox/
H A Dcore.c1180 bool ret = tox_file_control(self->tox, friend_number, file_number, control, NULL); in ToxCore_file_control()