Home
last modified time | relevance | path

Searched refs:pFDF (Results 1 – 3 of 3) sorted by relevance

/external/libvncserver/libvncserver/tightvnc-filetransfer/
Dfiletransfermsg.c518 rfbFileDownloadFailedMsg *pFDF = NULL; in CreateFileDownloadErrMsg() local
529 pFDF = (rfbFileDownloadFailedMsg *) pData; in CreateFileDownloadErrMsg()
532 pFDF->type = rfbFileDownloadFailed; in CreateFileDownloadErrMsg()
533 pFDF->reasonLen = Swap16IfLE(reasonLen); in CreateFileDownloadErrMsg()
706 rfbFileUploadCancelMsg *pFDF = NULL; in CreateFileUploadErrMsg() local
717 pFDF = (rfbFileUploadCancelMsg *) pData; in CreateFileUploadErrMsg()
720 pFDF->type = rfbFileUploadCancel; in CreateFileUploadErrMsg()
721 pFDF->reasonLen = Swap16IfLE(reasonLen); in CreateFileUploadErrMsg()
/external/pdfium/fpdfsdk/src/
Dfsdk_baseform.cpp2451 CFDF_Document* pFDF = CFDF_Document::ParseMemory(pBuf, nBufSize); local
2452 if (pFDF) {
2453 CPDF_Dictionary* pMainDict = pFDF->GetRoot()->GetDict("FDF");
2496 std::unique_ptr<CFDF_Document> pFDF(m_pInterForm->ExportToFDF( local
2498 return pFDF ? pFDF->WriteBuf(textBuf) : FALSE;
2567 CFDF_Document* pFDF = m_pInterForm->ExportToFDF(m_pDocument->GetPath()); local
2568 if (!pFDF)
2571 FX_BOOL bRet = pFDF->WriteBuf(textBuf);
2572 delete pFDF;
/external/pdfium/core/src/fpdfdoc/
Ddoc_form.cpp1202 FX_BOOL CPDF_InterForm::ImportFromFDF(const CFDF_Document* pFDF, in ImportFromFDF() argument
1204 if (!pFDF) { in ImportFromFDF()
1207 CPDF_Dictionary* pMainDict = pFDF->GetRoot()->GetDict("FDF"); in ImportFromFDF()