HomeSort by relevance Sort by last modified time
    Searched defs:seek (Results 1 - 25 of 55) sorted by null

1 2 3

  /external/bluetooth/glib/gio/
gseekable.h 42 * Seek object for streaming operations.
51 * @seek: Seeks to a location within a stream.
66 gboolean (* seek) (GSeekable *seekable, member in struct:_GSeekableIface
78 /* TODO: Async seek/truncate */
gfileinputstream.h 66 gboolean (* seek) (GFileInputStream *stream, member in struct:_GFileInputStreamClass
gfileoutputstream.h 66 gboolean (* seek) (GFileOutputStream *stream, member in struct:_GFileOutputStreamClass
  /frameworks/base/awt/javax/imageio/stream/
FileImageInputStream.java 107 public void seek(long pos) throws IOException { method in class:FileImageInputStream
112 raf.seek(pos);
FileImageOutputStream.java 116 public void seek(long pos) throws IOException { method in class:FileImageOutputStream
117 // -- checkClosed() is performed in super.seek()
118 super.seek(pos);
119 file.seek(pos);
ImageInputStream.java 425 void seek(long pos) throws IOException; method in interface:ImageInputStream
  /dalvik/libcore/luni/src/main/java/java/io/
FileInputStream.java 158 // long currentPosition = fileSystem.seek(fd.descriptor, 0L,
160 // long endOfFilePosition = fileSystem.seek(fd.descriptor, 0L,
162 // fileSystem.seek(fd.descriptor, currentPosition,
347 // Our seek returns the new offset, but we know it will throw an
348 // exception if it couldn't perform exactly the seek we asked for.
349 fileSystem.seek(fd.descriptor, count, IFileSystem.SEEK_CUR);
RandomAccessFile.java 255 return fileSystem.seek(fd.descriptor, 0L, IFileSystem.SEEK_CUR);
281 long currentPosition = fileSystem.seek(fd.descriptor, 0L,
283 long endOfFilePosition = fileSystem.seek(fd.descriptor, 0L,
285 fileSystem.seek(fd.descriptor, currentPosition,
574 seek(unreadPosition);
585 seek(unreadPosition);
720 public void seek(long pos) throws IOException { method in class:RandomAccessFile
722 // seek position is negative
727 fileSystem.seek(fd.descriptor, pos, IFileSystem.SEEK_SET);
751 long position = fileSystem.seek(fd.descriptor, 0
    [all...]
  /external/opencore/baselibs/media_data_structures/src/
access_unit.cpp 161 bool AccessUnit::seek(int & idx, int & offset, uint8 * & ptr, bool & boundaryReached, function in class:AccessUnit
164 return rep->seek(idx, offset, ptr, boundaryReached, delta_in_bytes);
access_unit_impl.cpp 125 bool AccessUnitImplementation::seek(int & idx, int & offset, uint8 * & ptr, bool & boundaryReached, function in class:AccessUnitImplementation
140 if (delta_in_bytes > 0) // seek forward
184 else // delta is negative, seek backwards
283 this->seek(tmp_idx, tmp_offset, tmp_ptr, boundaryReached, 1);
  /external/srec/portable/include/
PFile.h 140 ESR_ReturnCode(*seek)(struct PFile_t* self, long offset, int origin); member in struct:PFile_t
  /prebuilt/windows/sdl/host/include/SDL/
SDL_rwops.h 48 /* Seek to 'offset' relative to whence, one of stdio's whence values:
52 int (SDLCALL *seek)(struct SDL_RWops *context, int offset, int whence); member in struct:SDL_RWops
101 #define SDL_RWseek(ctx, offset, whence) (ctx)->seek(ctx, offset, whence)
102 #define SDL_RWtell(ctx) (ctx)->seek(ctx, 0, SEEK_CUR)
  /dalvik/libcore/luni/src/main/java/org/apache/harmony/luni/platform/
IFileSystem.java 89 public long seek(int fileDescriptor, long offset, int whence) method in interface:IFileSystem
OSFileSystem.java 97 public native long seek(int fd, long offset, int whence) throws IOException; method in class:OSFileSystem
  /external/opencore/nodes/pvprotocolenginenode/download_protocols/progressive_download/src/
pvmf_protocol_engine_progressive_download.h 111 virtual void seek(const uint32 aSeekPosition) function in class:ProgressiveStreamingState_GET
219 virtual void seek(const uint32 aSeekPosition) function in class:ProgressiveStreaming
221 HttpBasedProtocol::seek(aSeekPosition);
  /external/qemu/distrib/sdl-1.2.12/include/
SDL_rwops.h 42 /* Seek to 'offset' relative to whence, one of stdio's whence values:
46 int (SDLCALL *seek)(struct SDL_RWops *context, int offset, int whence); member in struct:SDL_RWops
109 #define RW_SEEK_SET 0 /* Seek from the beginning of data */
110 #define RW_SEEK_CUR 1 /* Seek relative to current read point */
111 #define RW_SEEK_END 2 /* Seek relative to the end of data */
114 #define SDL_RWseek(ctx, offset, whence) (ctx)->seek(ctx, offset, whence)
115 #define SDL_RWtell(ctx) (ctx)->seek(ctx, 0, RW_SEEK_CUR)
  /external/stlport/test/unit/
sstream_test.cpp 34 CPPUNIT_TEST(seek);
54 void seek();
386 void SstreamTest::seek() function in class:SstreamTest
  /frameworks/base/media/libdrm/mobile2/src/util/ustl-1.0/
fstream.cpp 136 off_t fstream::seek (off_t n, seekdir whence) function in class:ustl::fstream
140 set_and_throw (failbit, "seek");
mostream.h 60 inline void seek (uoff_t newPos);
149 inline void ostream::seek (uoff_t newPos) function in class:ustl::ostream
163 seek (distance (begin(), const_cast<iterator>(newPos)));
170 case beg: seek (p); break;
171 case cur: seek (pos() + p); break;
172 case ios_base::end: seek (size() - p); break;
179 seek (pos() + nBytes);
  /prebuilt/darwin-x86/sdl/include/SDL/
SDL_rwops.h 42 /* Seek to 'offset' relative to whence, one of stdio's whence values:
46 int (SDLCALL *seek)(struct SDL_RWops *context, int offset, int whence); member in struct:SDL_RWops
109 #define RW_SEEK_SET 0 /* Seek from the beginning of data */
110 #define RW_SEEK_CUR 1 /* Seek relative to current read point */
111 #define RW_SEEK_END 2 /* Seek relative to the end of data */
114 #define SDL_RWseek(ctx, offset, whence) (ctx)->seek(ctx, offset, whence)
115 #define SDL_RWtell(ctx) (ctx)->seek(ctx, 0, RW_SEEK_CUR)
  /prebuilt/linux-x86/sdl/include/SDL/
SDL_rwops.h 42 /* Seek to 'offset' relative to whence, one of stdio's whence values:
46 int (SDLCALL *seek)(struct SDL_RWops *context, int offset, int whence); member in struct:SDL_RWops
109 #define RW_SEEK_SET 0 /* Seek from the beginning of data */
110 #define RW_SEEK_CUR 1 /* Seek relative to current read point */
111 #define RW_SEEK_END 2 /* Seek relative to the end of data */
114 #define SDL_RWseek(ctx, offset, whence) (ctx)->seek(ctx, offset, whence)
115 #define SDL_RWtell(ctx) (ctx)->seek(ctx, 0, RW_SEEK_CUR)
  /prebuilt/windows/sdl/include/SDL/
SDL_rwops.h 42 /* Seek to 'offset' relative to whence, one of stdio's whence values:
46 int (SDLCALL *seek)(struct SDL_RWops *context, int offset, int whence); member in struct:SDL_RWops
109 #define RW_SEEK_SET 0 /* Seek from the beginning of data */
110 #define RW_SEEK_CUR 1 /* Seek relative to current read point */
111 #define RW_SEEK_END 2 /* Seek relative to the end of data */
114 #define SDL_RWseek(ctx, offset, whence) (ctx)->seek(ctx, offset, whence)
115 #define SDL_RWtell(ctx) (ctx)->seek(ctx, 0, RW_SEEK_CUR)
  /external/opencore/fileformats/mp4/parser/include/
mediaatom.h 345 void seek(int32 baseLayerSampleNum) function in class:MediaAtom
349 _pmediaInformation->seek(baseLayerSampleNum);
mediainformationatom.h 368 void seek(int32 baseLayerSampleNum) function in class:MediaInformationAtom
372 _psampleTableAtom->seek(baseLayerSampleNum);
  /external/webkit/WebCore/platform/graphics/qt/
MediaPlayerPrivatePhonon.cpp 220 void MediaPlayerPrivate::seek(float position) function in class:WebCore::MediaPlayerPrivate
222 LOG(Media, "MediaPlayerPrivatePhonon::seek(%f)", position);
230 m_mediaObject->seek(position * 1000.0f);

Completed in 1235 milliseconds

1 2 3