Home
last modified time | relevance | path

Searched refs:fileDownloadErrMsg (Results 1 – 2 of 2) sorted by relevance

/external/libvncserver/libvncserver/tightvnc-filetransfer/
Dfiletransfermsg.c261 FileTransferMsg fileDownloadErrMsg; in GetFileDownLoadErrMsg() local
266 memset(&fileDownloadErrMsg, 0, sizeof(FileTransferMsg)); in GetFileDownLoadErrMsg()
268 fileDownloadErrMsg = CreateFileDownloadErrMsg(reason, reasonLen); in GetFileDownLoadErrMsg()
270 return fileDownloadErrMsg; in GetFileDownLoadErrMsg()
365 FileTransferMsg fileDownloadErrMsg; in CreateFileDownloadErrMsg() local
371 memset(&fileDownloadErrMsg, 0, sizeof(FileTransferMsg)); in CreateFileDownloadErrMsg()
375 return fileDownloadErrMsg; in CreateFileDownloadErrMsg()
385 fileDownloadErrMsg.data = pData; in CreateFileDownloadErrMsg()
386 fileDownloadErrMsg.length = length; in CreateFileDownloadErrMsg()
388 return fileDownloadErrMsg; in CreateFileDownloadErrMsg()
Dhandlefiletransferrequest.c446 FileTransferMsg fileDownloadErrMsg; in SendFileDownloadLengthErrMsg() local
448 memset(&fileDownloadErrMsg, 0 , sizeof(FileTransferMsg)); in SendFileDownloadLengthErrMsg()
450 fileDownloadErrMsg = GetFileDownloadLengthErrResponseMsg(); in SendFileDownloadLengthErrMsg()
452 if((fileDownloadErrMsg.data == NULL) || (fileDownloadErrMsg.length == 0)) { in SendFileDownloadLengthErrMsg()
458 rfbWriteExact(cl, fileDownloadErrMsg.data, fileDownloadErrMsg.length); in SendFileDownloadLengthErrMsg()
460 FreeFileTransferMsg(fileDownloadErrMsg); in SendFileDownloadLengthErrMsg()