HomeSort by relevance Sort by last modified time
    Searched refs:pFile (Results 1 - 25 of 93) sorted by null

1 2 3 4

  /frameworks/compile/mclinker/include/mcld/LD/
DynObjReader.h 29 virtual bool readHeader(Input& pFile) = 0;
31 virtual bool readSymbols(Input& pFile) = 0;
ObjectReader.h 36 virtual bool readHeader(Input& pFile) = 0;
38 virtual bool readSymbols(Input& pFile) = 0;
40 virtual bool readSections(Input& pFile) = 0;
45 virtual bool readRelocations(Input& pFile) = 0;
ELFObjectReader.h 44 bool isMyFormat(Input& pFile, bool& pContinue) const;
47 bool readHeader(Input& pFile);
49 virtual bool readSections(Input& pFile);
51 virtual bool readSymbols(Input& pFile);
56 virtual bool readRelocations(Input& pFile);
ELFDynObjReader.h 33 bool isMyFormat(Input& pFile, bool& pContinue) const;
36 bool readHeader(Input& pFile);
BinaryReader.h 30 virtual bool readBinary(Input& pFile) = 0;
  /external/pdfium/core/fxge/ge/
cfx_folderfontinfo.cpp 36 CFX_ByteString FPDF_ReadStringFromFile(FXSYS_FILE* pFile, uint32_t size) {
38 if (!FXSYS_fread(buffer.GetBuffer(size), size, 1, pFile))
44 CFX_ByteString FPDF_LoadTableFromTT(FXSYS_FILE* pFile,
53 FXSYS_fseek(pFile, offset, FXSYS_SEEK_SET);
54 return FPDF_ReadStringFromFile(pFile, size);
152 FXSYS_FILE* pFile = FXSYS_fopen(path.c_str(), "rb");
153 if (!pFile)
156 FXSYS_fseek(pFile, 0, FXSYS_SEEK_END);
158 uint32_t filesize = FXSYS_ftell(pFile);
160 FXSYS_fseek(pFile, 0, FXSYS_SEEK_SET)
    [all...]
  /external/ltp/testcases/kernel/sched/hyperthreading/ht_interrupt/
ht_interrupt.c 29 FILE *pFile;
40 if ((pFile = fopen(INTERRUPT_NAME, "r")) == NULL) {
44 fgets(buf, 255, pFile);
45 fscanf(pFile, "%s %d %d %d %d %d %d %d %d \
49 fclose(pFile);
56 if ((pFile = fopen(INTERRUPT_NAME, "r")) == NULL) {
60 fgets(buf, 255, pFile);
61 fscanf(pFile, "%s %d %d %d %d %d %d %d %d \
65 fclose(pFile);
  /external/pdfium/core/fpdfapi/parser/
cfdf_document.h 22 const CFX_RetainPtr<IFX_SeekableReadStream>& pFile);
33 void ParseStream(const CFX_RetainPtr<IFX_SeekableReadStream>& pFile);
cfdf_document.cpp 30 const CFX_RetainPtr<IFX_SeekableReadStream>& pFile) {
31 if (!pFile)
35 pDoc->ParseStream(pFile);
45 const CFX_RetainPtr<IFX_SeekableReadStream>& pFile) {
46 m_pFile = pFile;
fpdf_parser_utility.h 37 int32_t GetHeaderOffset(const CFX_RetainPtr<IFX_SeekableReadStream>& pFile);
  /external/sonivox/arm-wt-22k/misc/
eas_host.c 87 FILE *pFile;
231 EAS_RESULT EAS_HWOpenFile (EAS_HW_DATA_HANDLE hwInstData, EAS_FILE_LOCATOR locator, EAS_FILE_HANDLE *pFile, EAS_FILE_MODE mode)
237 *pFile = NULL;
248 if (file->pFile == NULL)
252 file->pFile = fopen((const char*) locator->path, "rb");
253 if (file->pFile == NULL)
266 *pFile = file;
287 if (fseek(file->pFile, file->filePos, SEEK_SET) != 0)
291 file->bytesInBuffer = (EAS_I32) fread(file->buffer, 1, EAS_FILE_BUFFER_SIZE, file->pFile);
316 if (file->pFile == NULL
    [all...]
  /external/pdfium/core/fpdfapi/edit/
fpdf_edit_create.cpp 48 CFX_FileBufferArchive* pFile,
52 if (pFile->AppendString(" null") < 0) {
60 if (pFile->AppendString(" null") < 0) {
67 if (pFile->AppendString(" ") < 0) {
70 if ((len = pFile->AppendString(pObj->GetString().AsStringC())) < 0) {
78 if ((len = pFile->AppendString(PDF_EncodeString(str, bHex).AsStringC())) <
86 if (pFile->AppendString("/") < 0) {
90 if ((len = pFile->AppendString(PDF_NameEncode(str).AsStringC())) < 0) {
97 if (pFile->AppendString(" ") < 0)
99 if ((len = pFile->AppendDWord(pObj->AsReference()->GetRefObjNum())) < 0
    [all...]
  /external/swiftshader/third_party/PowerVR_SDK/Tools/
PVRTResourceFile.cpp 31 FILE* pFile = fopen(pFilename, "rb");
33 if (pFile)
36 fseek(pFile, 0, SEEK_END);
37 size = ftell(pFile);
38 fseek(pFile, 0, SEEK_SET);
42 size_t BytesRead = fread(pTmp, 1, size, pFile);
53 fclose(pFile);
PVRTModelPOD.cpp 573 @Input pFile
579 static bool WriteFileSafe(FILE *pFile, const void * const lpBuffer, const unsigned int nNumberOfBytesToWrite)
583 size_t count = fwrite(lpBuffer, nNumberOfBytesToWrite, 1, pFile);
589 static bool WriteFileSafe16(FILE *pFile, const unsigned short * const lpBuffer, const unsigned int nSize)
601 bRet &= (fwrite(ub, 2, 1, pFile) == 1);
609 static bool WriteFileSafe32(FILE *pFile, const unsigned int * const lpBuffer, const unsigned int nSize)
623 bRet &= (fwrite(ub, 4, 1, pFile) == 1);
632 @Input pFile
641 FILE * const pFile,
652 bRet = WriteFileSafe32(pFile, &nMarker, 1)
    [all...]
  /external/sonivox/arm-wt-22k/jetcreator_lib_src/darwin-x86/
EASLib.c 73 FILE *pFile;
802 EAS_RESULT EAS_HWOpenFile (EAS_HW_DATA_HANDLE hwInstData, EAS_FILE_LOCATOR locator, EAS_FILE_HANDLE *pFile, EAS_FILE_MODE mode)
808 *pFile = NULL;
819 if (file->pFile == NULL)
824 file->pFile = fopen((const char*) locator, "rb");
825 if (file->pFile == NULL)
845 *pFile = file;
866 if (fseek(file->pFile, file->filePos, SEEK_SET) != 0)
870 file->bytesInBuffer = (EAS_I32) fread(file->buffer, 1, EAS_FILE_BUFFER_SIZE, file->pFile);
895 if (file->pFile == NULL
    [all...]
EASLibVst.c 71 FILE *pFile;
497 EAS_RESULT EAS_HWOpenFile (EAS_HW_DATA_HANDLE hwInstData, EAS_FILE_LOCATOR locator, EAS_FILE_HANDLE *pFile, EAS_FILE_MODE mode)
503 *pFile = NULL;
514 if (file->pFile == NULL)
519 file->pFile = fopen((const char*) locator, "rb");
520 if (file->pFile == NULL)
540 *pFile = file;
561 if (fseek(file->pFile, file->filePos, SEEK_SET) != 0)
565 file->bytesInBuffer = (EAS_I32) fread(file->buffer, 1, EAS_FILE_BUFFER_SIZE, file->pFile);
590 if (file->pFile == NULL
    [all...]
  /device/linaro/bootloader/edk2/EdkCompatibilityPkg/Sample/Tools/Source/UefiVfrCompile/
VfrFormPkg.cpp 321 IN FILE *pFile,
330 if ((pFile == NULL) || (LineHeader == NULL) || (BlkBuf == NULL)) {
336 fprintf (pFile, "\n%s", LineHeader);
338 fprintf (pFile, "0x%02X, ", (UINT8)BlkBuf[Index]);
344 IN FILE *pFile,
353 if ((BlkSize == 0) || (pFile == NULL) || (LineHeader == NULL) || (BlkBuf == NULL)) {
359 fprintf (pFile, "\n%s", LineHeader);
361 fprintf (pFile, "0x%02X, ", (UINT8)BlkBuf[Index]);
365 fprintf (pFile, "\n%s", LineHeader);
367 fprintf (pFile, "0x%02X\n", (UINT8)BlkBuf[Index]);
    [all...]
VfrCompiler.cpp 496 FILE *pFile = NULL;
503 if ((pFile = fopen (mOptions.PkgOutputFileName, "wb")) == NULL) {
507 if (gCFormPkg.BuildPkg (pFile) != VFR_RETURN_SUCCESS) {
508 fclose (pFile);
511 fclose (pFile);
537 FILE *pFile;
544 if ((pFile = fopen (mOptions.COutputFileName, "w")) == NULL) {
550 fprintf (pFile, "%s\n", gSourceFileHeader[Index]);
553 gCVfrBufferConfig.OutputCFile (pFile, mOptions.VfrBaseFileName);
555 if (gCFormPkg.GenCFile (mOptions.VfrBaseFileName, pFile) != VFR_RETURN_SUCCESS) {
    [all...]
  /device/linaro/bootloader/edk2/BaseTools/Source/C/VfrCompile/Pccts/h/
slist.cpp 109 int SList::printMessage(FILE* pFile, const char* pFormat, ...)
113 int iRet = vfprintf(pFile, pFormat, marker);
ATokenBuffer.h 98 virtual int printMessage(FILE* pFile, const char* pFormat, ...); // MR23
  /external/pdfium/xfa/fde/xml/
cfx_saxreader.cpp 75 bool CFX_SAXFile::StartFile(const CFX_RetainPtr<IFX_SeekableReadStream>& pFile,
78 ASSERT(!m_pFile && pFile);
79 uint32_t dwSize = pFile->GetSize();
91 if (!pFile->ReadBlock(m_pBuf, dwStart, m_dwBufSize))
97 m_pFile = pFile;
220 const CFX_RetainPtr<IFX_SeekableReadStream>& pFile,
226 if (!m_File.StartFile(pFile, dwStart, dwLen))
  /external/sqlite/dist/
sqlite3.c     [all...]
  /external/sqlite/dist/orig/
sqlite3.c     [all...]
  /external/pdfium/core/fpdfdoc/
cpdf_action.cpp 67 CPDF_Object* pFile = m_pDict->GetDirectObjectFor("F");
69 if (!pFile) {
80 CPDF_FileSpec filespec(pFile);
  /external/pdfium/fpdfsdk/
fpdfeditimg.cpp 35 CFX_RetainPtr<IFX_SeekableReadStream> pFile =
45 pImgObj->GetImage()->SetJpegImageInline(pFile);
47 pImgObj->GetImage()->SetJpegImage(pFile);

Completed in 706 milliseconds

1 2 3 4