HomeSort by relevance Sort by last modified time
    Searched refs:nBufSize (Results 1 - 3 of 3) sorted by null

  /external/pdfium/fpdfsdk/
cpdfsdk_interform.cpp 475 size_t nBufSize = textBuf.GetLength();
476 if (nBufSize == 0)
479 uint8_t* pLocalBuffer = FX_Alloc(uint8_t, nBufSize);
480 memcpy(pLocalBuffer, textBuf.c_str(), nBufSize);
483 if (bUrlEncoded && !FDFToURLEncodedData(pBuffer, nBufSize)) {
488 m_pFormFillEnv->JS_docSubmitForm(pBuffer, nBufSize, csDestination.c_str());
498 bool CPDFSDK_InterForm::FDFToURLEncodedData(uint8_t*& pBuf, size_t& nBufSize) {
500 CFDF_Document::ParseMemory(pBuf, nBufSize);
533 nBufSize = fdfEncodedData.tellp();
534 if (nBufSize == 0
    [all...]
cpdfsdk_interform.h 118 bool FDFToURLEncodedData(uint8_t*& pBuf, size_t& nBufSize);
  /external/pdfium/fxjs/
cjs_document.cpp 331 size_t nBufSize = sTextBuf.GetLength();
332 char* pMutableBuf = FX_Alloc(char, nBufSize);
333 memcpy(pMutableBuf, sTextBuf.c_str(), nBufSize);
337 pFormFillEnv->JS_docmailForm(pMutableBuf, nBufSize, bUI, cTo.c_str(),
    [all...]

Completed in 2168 milliseconds