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

1 2 3

  /external/opencore/fileformats/common/parser/src/
pvfile.cpp 36 OSCL_EXPORT_REF int32 PVFile::Seek(int32 offset, Oscl_File::seek_type origin)
39 return iFile->Seek(offset, origin);
41 return iFilePtr->Seek(offset, origin);
58 iDataStreamAccess->Seek(iDataStreamSession,
261 iFile->Seek(0, Oscl_File::SEEKEND);
263 iFile->Seek(currPos, Oscl_File::SEEKSET);
278 iFilePtr->Seek(currPos, Oscl_File::SEEKSET);
397 PvmiDataStreamStatus status = iDataStreamAccess->Seek(iDataStreamSession,
pvmi_datastreamsyncinterface_ref_impl.cpp 125 int32 res = iFileObject->Seek(0, Oscl_File::SEEKEND);
129 iFileObject->Seek(0, Oscl_File::SEEKSET);
261 PVMIDataStreamSyncInterfaceRefImpl::Seek(PvmiDataStreamSession sessionID,
282 int32 result = iFileObject->Seek(offset, seekType);
  /external/opencore/fileformats/wav/parser/src/
pvwavfileparser.cpp 192 if (ipWAVFile->Seek(0, Oscl_File::SEEKEND))
206 if (ipWAVFile->Seek(0, Oscl_File::SEEKSET))
314 if (ipWAVFile->Seek(filepos, Oscl_File::SEEKSET))
351 // seek ahead by Subchunk1_Size - 16
353 if (ipWAVFile->Seek(filepos, Oscl_File::SEEKSET))
394 // seek file pointer to current file position
395 if (ipWAVFile->Seek(filepos, Oscl_File::SEEKSET))
566 /* Return : Result of seek operation */
579 // seek to the end of the file and return;
580 ipWAVFile->Seek(0, Oscl_File::SEEKEND)
    [all...]
  /external/opencore/fileformats/avi/parser/src/
pv_avifile_parser.cpp 56 ipFilePtr->Seek(0, Oscl_File::SEEKSET);
58 // Seek to the end to find the file size
60 if (ipFilePtr->Seek(0, Oscl_File::SEEKEND))
67 // Seek back to the beginning
68 ipFilePtr->Seek(0, Oscl_File::SEEKSET);
135 ipFilePtr->Seek(chksz, Oscl_File::SEEKCUR);
143 ipFilePtr->Seek(chksz, Oscl_File::SEEKCUR);
209 ipFilePtr->Seek(iMovieChunkSize, Oscl_File::SEEKCUR);
282 ipFilePtr->Seek(junkSize, Oscl_File::SEEKCUR);
319 ipFilePtr->Seek(0, Oscl_File::SEEKSET)
    [all...]
pv_avifile_indx.cpp 56 aFp->Seek((CHUNK_SIZE + CHUNK_SIZE + CHUNK_SIZE), Oscl_File::SEEKCUR);
pv_avifile_header.cpp 55 aFp->Seek(chksz, Oscl_File::SEEKCUR);
61 aFp->Seek((streamListSz - CHUNK_SIZE), Oscl_File::SEEKCUR); //subtract list name read above
203 aFp->Seek(junkSize, Oscl_File::SEEKCUR);
  /external/opencore/fileformats/mp3/parser/src/
mp3fileio.cpp 245 // bytes to seek backwards
247 fp->Seek(seekback, Oscl_File::SEEKCUR);
262 fp->Seek(-4*n, Oscl_File::SEEKCUR);
272 fp->Seek(-1, Oscl_File::SEEKCUR);
mp3utils.cpp 93 // translate the seek offset to seek from current position
110 if (aFP->Seek(seekOffset, Oscl_File::SEEKCUR) != 0)
  /external/opencore/fileformats/mp4/composer/src/
atomutils.cpp 271 fp->_filePtr->Seek(n, Oscl_File::SEEKCUR);
276 fp->_filePtr->Seek(n, Oscl_File::SEEKSET);
281 fp->_filePtr->Seek(0, Oscl_File::SEEKEND);
286 fp->_filePtr->Seek((-1 *(int32) n), Oscl_File::SEEKCUR);
  /external/opencore/oscl/oscl/osclio/src/
oscl_file_cache.h 70 int32 Seek(TOsclFileOffset offset, Oscl_File::seek_type origin);
oscl_file_native.h 84 int32 Seek(TOsclFileOffset offset, Oscl_File::seek_type origin);
oscl_file_native.cpp 215 //Just do seek to end, tell, then seek back.
218 && Seek(0, Oscl_File::SEEKEND) == 0)
221 if (Seek(curPos, Oscl_File::SEEKSET) == 0)
345 int32 OsclNativeFile::Seek(TOsclFileOffset offset, Oscl_File::seek_type origin)
  /external/srec/tools/thirdparty/OpenFst/fst/lib/
mutable-fst.h 154 void Seek(size_t a) { data_.base->Seek(a); }
complement.h 257 virtual void Seek(size_t a) {
262 aiter_->Seek(a - 1);
fst.h 299 virtual void Seek(size_t a) = 0; // Random arc access by position
360 void Seek(size_t a) {
362 data_.base->Seek(a);
  /external/opencore/fileformats/mp4/parser/src/
metadataatom.cpp 91 fp->_pvfile.Seek(atomSize, Oscl_File::SEEKCUR);
  /external/webkit/WebKit/win/
MemoryStream.h 63 virtual /* [local] */ HRESULT STDMETHODCALLTYPE Seek(
  /external/opencore/fileformats/id3parcom/src/
pv_id3_parcom.cpp 125 if (iInputFile->Seek(0, Oscl_File::SEEKSET) == -1)
132 if (iInputFile->Seek(0, Oscl_File::SEEKSET) == -1)
142 if (iInputFile->Seek(2, Oscl_File::SEEKCUR) == -1)
270 // SEEK TO THE END OF THE FILE AND GET FILE SIZE
277 if (iInputFile->Seek(0, Oscl_File::SEEKSET) == -1)
284 if (iInputFile->Seek(currentFilePosn, Oscl_File::SEEKSET) == -1)
304 if (iInputFile->Seek(currentFilePosn, Oscl_File::SEEKSET) == -1)
318 if (iInputFile->Seek(currentFilePosn, Oscl_File::SEEKSET) == -1)
538 if (iInputFile->Seek(nBytes, Oscl_File::SEEKSET) == -1)
610 if (iInputFile->Seek(footer_location + ID3V2_TAG_NUM_BYTES_ID + ID3V2_TAG_NUM_BYTES_VERSION + ID3V2_TAG_NUM_BYTES_FLAG
    [all...]
  /external/opencore/fileformats/common/parser/include/
pvmi_datastreamsyncinterface_ref_impl.h 117 PvmiDataStreamStatus Seek(PvmiDataStreamSession aSessionID,
  /external/opencore/nodes/pvdummyinputnode/src/
pvmf_dummy_fileinput_node.cpp 861 if (iInputFile.Seek(iFileHeaderSize + iFormatSpecificInfoSize, Oscl_File::SEEKSET))
    [all...]
  /external/opencore/oscl/oscl/osclutil/src/
oscl_bin_stream.h 131 void Seek(uint32 absPosition);
  /external/opencore/pvmi/pvmf/include/
pvmi_datastreamsyncinterface_ref_impl.h 117 PvmiDataStreamStatus Seek(PvmiDataStreamSession aSessionID,
  /external/opencore/pvmi/media_io/pvmi_mio_fileinput/src/
pvmi_mio_fileinput.cpp 860 iInputFile.Seek(0, Oscl_File::SEEKEND);
862 iInputFile.Seek(fileStart, Oscl_File::SEEKSET);
893 iInputFile.Seek(fileStart, Oscl_File::SEEKSET);
1019 iInputFile.Seek(fileStart, Oscl_File::SEEKSET);
1032 iLogFile.Seek(offset, Oscl_File::SEEKSET);
    [all...]
  /external/v8/src/
unicode.h 148 virtual void Seek(unsigned);
182 void Seek(unsigned position);
  /external/zlib/contrib/delphi/
ZLib.pas 62 stream will raise an exception. Using Seek to move the stream pointer
93 function Seek(Offset: Longint; Origin: Word): Longint; override;
101 is read-only and unidirectional; you can seek forward in the stream, but not
122 function Seek(Offset: Longint; Origin: Word): Longint; override;
464 function TCompressionStream.Seek(Offset: Longint; Origin: Word): Longint;
493 FStrm.Seek(-FZRec.avail_in, 1);
527 function TDecompressionStream.Seek(Offset: Longint; Origin: Word): Longint;

Completed in 1527 milliseconds

1 2 3