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

1 2 3 4

  /libcore/luni/src/main/java/libcore/io/
BufferIterator.java 29 public abstract void seek(int offset); method in class:BufferIterator
NioBufferIterator.java 40 public void seek(int offset) { method in class:NioBufferIterator
HeapBufferIterator.java 42 public void seek(int offset) { method in class:HeapBufferIterator
  /prebuilt/linux-x86/toolchain/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/
af_vfs.h 39 long (*seek) (AFvirtualfile *vfile, long offset, int is_relative); member in struct:_AFvirtualfile
  /external/antlr/src/org/antlr/runtime/
IntStream.java 61 * essentially calling release() and seek(). If there are markers
75 * the marker off. It's like seek(last marker's input position).
82 * rewind() except it releases resources without the backward seek.
90 * normally used to seek ahead in the input stream. No buffering is
91 * required to do this unless you know your stream will use seek to
105 * The index is 0..n-1. A seek to position i means that LA(1) will
109 void seek(int index); method in interface:IntStream
ANTLRStringStream.java 174 seek(state.p);
194 public void seek(int index) { method in class:ANTLRStringStream
199 // seek forward, consume until p hits index
  /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
  /external/flac/include/FLAC/
callback.h 116 /** Signature for the seek callback.
166 * If the seek requirement for an interface is optional, you can signify that
167 * a data sorce is not seekable by setting the \a seek field to \c NULL.
172 FLAC__IOCallback_Seek seek; member in struct:__anon5808
  /external/webkit/Source/WebCore/fileapi/
FileWriterSync.cpp 65 void FileWriterSync::seek(long long position, ExceptionCode& ec) function in class:WebCore::FileWriterSync
FileWriter.cpp 101 void FileWriter::seek(long long position, ExceptionCode& ec) function in class:WebCore::FileWriter
  /external/webkit/Source/WebCore/platform/leveldb/
LevelDBIterator.cpp 67 void LevelDBIterator::seek(const Vector<char>& target) function in class:WebCore::LevelDBIterator
69 m_iterator->Seek(makeSlice(target));
  /frameworks/media/libvideoeditor/osal/inc/
M4OSA_FileReader.h 84 M4OSA_ERR (*seek) (M4OSA_Context context, member in struct:__anon15830
M4OSA_FileWriter.h 80 M4OSA_ERR (*seek) (M4OSA_Context context, member in struct:__anon15832
108 /* Pierre Lebeaupin 2008/04/29: WARNING! the feature of file*Seek which returns
109 the position in the file (from the beginning) after the seek in the "position"
  /frameworks/compile/libbcc/lib/ExecutionEngine/
FileHandle.cpp 167 off_t FileHandle::seek(off_t offset, int whence) { function in class:bcc::FileHandle
  /external/llvm/test/Scripts/
elf-dump 12 # Snarf all the data so we can seek.
19 def seek(self, pos): member in class:Reader
20 self.file.seek(pos)
87 f.seek(self.sh_offset[0])
99 f.seek(section.sh_offset[0] + index * section.sh_entsize[0])
122 f.seek(section.sh_offset[0] + index * section.sh_entsize[0])
166 f.seek(16) # Seek to end of e_ident.
189 f.seek(e_shoff[0] + index * e_shentsize[0])
194 f.seek(sections[e_shstrndx[0]].sh_offset[0]
    [all...]
macho-dumpx 12 # Snarf all the data so we can seek.
24 def seek(self, pos): member in class:Reader
25 self.file.seek(pos)
171 f.seek(stroff)
177 f.seek(symoff)
183 f.seek(prev_pos)
228 f.seek(indirectsymoff)
235 f.seek(prev_pos)
265 f.seek(reloc_offset)
274 f.seek(offset
    [all...]
  /external/srec/portable/include/
PFile.h 140 ESR_ReturnCode(*seek)(struct PFile_t* self, long offset, int origin); member in struct:PFile_t
  /frameworks/compile/linkloader/utils/
serialize.h 86 void seek(off_t off, bool from_begin = false) { function in class:ArchiveReader
105 seek(size);
111 seek(size);
118 seek(TypeTraits<T>::size);
141 seek(align - delta);
  /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)
  /external/antlr/src/org/antlr/runtime/debug/
DebugTokenStream.java 127 public void seek(int index) { method in class:DebugTokenStream
128 // TODO: implement seek in dbg interface
129 // db.seek(index);
130 input.seek(index);
  /external/antlr/src/org/antlr/runtime/misc/
LookaheadStream.java 141 seek(marker); // assume marker is top
146 seek(lastMarker); // rewind but do not release marker
149 /** Seek to a 0-indexed position within data buffer. Can't handle
150 * case where you seek beyond end of existing buffer. Normally used
151 * to seek backwards in the buffer. Does not force loading of nodes.
155 public void seek(int index) { p = index; } method in class:LookaheadStream
  /external/libvpx/nestegg/include/nestegg/
nestegg.h 71 #define NESTEGG_SEEK_SET 0 /**< Seek offset relative to beginning of stream. */
72 #define NESTEGG_SEEK_CUR 1 /**< Seek offset relative to current position in stream. */
73 #define NESTEGG_SEEK_END 2 /**< Seek offset relative to end of stream. */
95 /** User supplied seek callback.
96 @param offset Offset within the stream to seek to.
97 @param whence Seek direction. One of #NESTEGG_SEEK_SET,
100 @retval 0 Seek succeeded.
102 int (* seek)(int64_t offset, int whence, void * userdata); member in struct:__anon7652
173 /** Seek @a track to @a tstamp. Stream seek will terminate at the earlies
    [all...]
  /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)

Completed in 371 milliseconds

1 2 3 4