Home
last modified time | relevance | path

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

/external/libvncserver/libvncserver/tightvnc-filetransfer/
Dfiletransfermsg.c367 rfbFileDownloadFailedMsg *pFDF = NULL; in CreateFileDownloadErrMsg() local
378 pFDF = (rfbFileDownloadFailedMsg *) pData; in CreateFileDownloadErrMsg()
381 pFDF->type = rfbFileDownloadFailed; in CreateFileDownloadErrMsg()
382 pFDF->reasonLen = Swap16IfLE(reasonLen); in CreateFileDownloadErrMsg()
555 rfbFileUploadCancelMsg *pFDF = NULL; in CreateFileUploadErrMsg() local
566 pFDF = (rfbFileUploadCancelMsg *) pData; in CreateFileUploadErrMsg()
569 pFDF->type = rfbFileUploadCancel; in CreateFileUploadErrMsg()
570 pFDF->reasonLen = Swap16IfLE(reasonLen); in CreateFileUploadErrMsg()
/external/pdfium/fpdfsdk/src/
Dfsdk_baseform.cpp2324 CFDF_Document* pFDF = CFDF_Document::ParseMemory(pBuf, nBufSize); in FDFToURLEncodedData() local
2325 if (pFDF) in FDFToURLEncodedData()
2327 CPDF_Dictionary* pMainDict = pFDF->GetRoot()->GetDict("FDF"); in FDFToURLEncodedData()
2368 …CFDF_Document* pFDF = m_pInterForm->ExportToFDF(m_pDocument->GetPath(),(CFX_PtrArray&)fields, bInc… in ExportFieldsToFDFTextBuf() local
2369 if (!pFDF) return FALSE; in ExportFieldsToFDFTextBuf()
2370 FX_BOOL bRet = pFDF->WriteBuf(textBuf); // = FALSE;// in ExportFieldsToFDFTextBuf()
2371 delete pFDF; in ExportFieldsToFDFTextBuf()
2427 CFDF_Document* pFDF = m_pInterForm->ExportToFDF(m_pDocument->GetPath()); in ExportFormToFDFTextBuf() local
2428 if (!pFDF) return FALSE; in ExportFormToFDFTextBuf()
2430 FX_BOOL bRet = pFDF->WriteBuf(textBuf); in ExportFormToFDFTextBuf()
[all …]
/external/pdfium/core/src/fpdfdoc/
Ddoc_form.cpp1562 FX_BOOL CPDF_InterForm::ImportFromFDF(const CFDF_Document* pFDF, FX_BOOL bNotify) in ImportFromFDF() argument
1564 if (pFDF == NULL) { in ImportFromFDF()
1567 CPDF_Dictionary* pMainDict = pFDF->GetRoot()->GetDict("FDF"); in ImportFromFDF()