HomeSort by relevance Sort by last modified time
    Searched defs:seek (Results 151 - 175 of 339) sorted by null

1 2 3 4 5 67 8 91011>>

  /external/lzma/Java/Tukaani/src/org/tukaani/xz/
SeekableXZInputStream.java 60 * that the decompressor will only need to seek to certain uncompressed
161 * True when <code>seek(long)</code> has been called but the actual
168 * calling <code>seek(long)</code>.
314 in.seek(0);
336 in.seek(pos - DecoderUtil.STREAM_HEADER_SIZE);
366 // Seek to the beginning of the Index.
367 in.seek(pos - streamFooter.backwardSize);
401 // Seek to the beginning of this Stream.
403 in.seek(pos);
671 seek(); method
678 seek(); method
785 public void seek(long pos) throws IOException { method in class:SeekableXZInputStream
824 private void seek() throws IOException { method in class:SeekableXZInputStream
    [all...]
  /external/python/cpython3/Lib/
tempfile.py 666 newfile.seek(file.tell(), 0)
746 def seek(self, *args): member in class:SpooledTemporaryFile
747 self._file.seek(*args)
_pyio.py 56 file regardless of the current seek position). In text mode, if encoding is
327 def seek(self, pos, whence=0): member in class:IOBase
341 self._unsupported("seek")
345 return self.seek(0, 1)
395 If False, seek(), tell() and truncate() will raise OSError.
396 This method may need to do a test seek().
741 def seek(self, pos, whence=0): member in class:_BufferedIOMixin
742 new_position = self.raw.seek(pos, whence)
744 raise OSError("seek() returned an invalid position")
761 # XXX: Should seek() be used, instead of passing the positio
904 def seek(self, pos, whence=0): member in class:BytesIO
1143 def seek(self, pos, whence=0): member in class:BufferedReader
1235 def seek(self, pos, whence=0): member in class:BufferedWriter
1330 def seek(self, pos, whence=0): member in class:BufferedRandom
1621 def seek(self, pos, whence=SEEK_SET): member in class:FileIO
2281 def seek(self, cookie, whence=0): member in class:TextIOWrapper
    [all...]
  /external/swiftshader/third_party/LLVM/lib/Support/
raw_ostream.cpp 578 uint64_t raw_fd_ostream::seek(uint64_t off) { function in class:raw_fd_ostream
  /external/swiftshader/third_party/llvm-subzero/lib/Support/
raw_ostream.cpp 598 uint64_t raw_fd_ostream::seek(uint64_t off) { function in class:raw_fd_ostream
616 seek(Offset);
618 seek(Pos);
  /frameworks/support/samples/Support7Demos/src/main/java/com/example/android/supportv7/media/
RemotePlayer.java 157 public void seek(final PlaylistItem item) { method in class:RemotePlayer
405 Log.d(TAG, "seek: item=" + item);
407 mClient.seek(item.getRemoteItemId(), item.getPosition(), null, new ItemActionCallback() {
411 logStatus("seek: succeeded", sessionId, sessionStatus, itemId, itemStatus);
419 logError("seek: failed", error, code);
SessionManager.java 137 public PlaylistItem seek(String iid, long pos) { method in class:SessionManager
139 log("seek: iid=" + iid +", pos=" + pos);
150 mPlayer.seek(item);
  /libcore/luni/src/test/java/libcore/libcore/util/
ZoneInfoTest.java 589 public void seek(int offset) { method in class:ZoneInfoTest.ByteBufferIterator
  /prebuilts/go/darwin-x86/src/runtime/
os_plan9.go 30 func seek(fd int32, offset int64, whence int32) int64 func
  /prebuilts/go/darwin-x86/src/syscall/
fs_nacl.go 367 func (f *fsysFile) seek(offset int64, whence int) (int64, error) { func
  /prebuilts/go/linux-x86/src/runtime/
os_plan9.go 30 func seek(fd int32, offset int64, whence int32) int64 func
  /prebuilts/go/linux-x86/src/syscall/
fs_nacl.go 367 func (f *fsysFile) seek(offset int64, whence int) (int64, error) { func
  /dalvik/tools/dexdeps/src/com/android/dexdeps/
DexData.java 82 seek(0);
96 seek(8+4+20+4+4);
109 seek(8+4+20); // magic, checksum, signature
145 seek(mHeaderItem.stringIdsOff);
152 seek(stringOffsets[0]);
154 seek(stringOffsets[i]); // should be a no-op
168 seek(mHeaderItem.typeIdsOff);
186 seek(mHeaderItem.protoIdsOff);
213 seek(offset);
232 seek(mHeaderItem.fieldIdsOff)
435 void seek(int position) throws IOException { method in class:DexData
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/
_pyio.py 59 current seek position). In text mode, if encoding is not specified the
297 def seek(self, pos, whence=0): member in class:IOBase
310 self._unsupported("seek")
314 return self.seek(0, 1)
362 If False, seek(), tell() and truncate() will raise IOError.
363 This method may need to do a test seek().
690 def seek(self, pos, whence=0): member in class:_BufferedIOMixin
691 new_position = self.raw.seek(pos, whence)
693 raise IOError("seek() returned an invalid position")
710 # XXX: Should seek() be used, instead of passing the position
842 def seek(self, pos, whence=0): member in class:BytesIO
1032 def seek(self, pos, whence=0): member in class:BufferedReader
1136 def seek(self, pos, whence=0): member in class:BufferedWriter
1233 def seek(self, pos, whence=0): member in class:BufferedRandom
1766 def seek(self, cookie, whence=0): member in class:TextIOWrapper
    [all...]
  /external/antlr/antlr-3.4/runtime/Python/antlr3/
debug.py 179 def seek(self, index): member in class:DebugTokenStream
180 # TODO: implement seek in dbg interface
181 # self._dbg.seek(index);
182 self.input.seek(index)
    [all...]
  /external/avb/
avbtool 470 signing_file.seek(0)
628 For reading, this interface mimics a file object - it has seek(),
673 self._image.seek(0, os.SEEK_END)
676 self._image.seek(0, os.SEEK_SET)
786 self._image.seek(self.NUM_CHUNKS_AND_BLOCKS_OFFSET, os.SEEK_SET)
802 self._image.seek(0, os.SEEK_END)
814 self._image.seek(self._sparse_end, os.SEEK_SET)
833 self._image.seek(0, os.SEEK_END)
842 self._image.seek(self._sparse_end, os.SEEK_SET)
866 self._image.seek(0, os.SEEK_END
884 def seek(self, offset): member in class:ImageHandler
    [all...]
  /external/chromium-trace/catapult/third_party/pyserial/serial/
serialutil.py 208 def seek(self, pos, whence=0): member in class:FileLike
  /external/fio/oslib/
libmtd.c 1016 loff_t seek; local
1025 seek = (loff_t)eb * mtd->eb_size;
1026 ret = ioctl(fd, MEMGETBADBLOCK, &seek);
1035 loff_t seek; local
1046 seek = (loff_t)eb * mtd->eb_size;
1047 ret = ioctl(fd, MEMSETBADBLOCK, &seek);
1057 off_t seek; local
1070 /* Seek to the beginning of the eraseblock */
1071 seek = (off_t)eb * mtd->eb_size + offs;
1072 if (lseek(fd, seek, SEEK_SET) != seek
1129 off_t seek; local
1289 off_t seek; local
    [all...]
  /external/owasp/sanitizer/src/main/org/owasp/html/
CssTokens.java 155 public void seek(int tokenIndex) { method in class:CssTokens.TokenIterator
    [all...]
  /external/python/cpython2/Lib/
_pyio.py 61 current seek position). In text mode, if encoding is not specified the
307 def seek(self, pos, whence=0): member in class:IOBase
320 self._unsupported("seek")
324 return self.seek(0, 1)
374 If False, seek(), tell() and truncate() will raise IOError.
375 This method may need to do a test seek().
700 def seek(self, pos, whence=0): member in class:_BufferedIOMixin
701 new_position = self.raw.seek(pos, whence)
703 raise IOError("seek() returned an invalid position")
720 # XXX: Should seek() be used, instead of passing the positio
855 def seek(self, pos, whence=0): member in class:BytesIO
1051 def seek(self, pos, whence=0): member in class:BufferedReader
1150 def seek(self, pos, whence=0): member in class:BufferedWriter
1249 def seek(self, pos, whence=0): member in class:BufferedRandom
1791 def seek(self, cookie, whence=0): member in class:TextIOWrapper
    [all...]
  /frameworks/av/media/extractors/mpeg2/
MPEG2TSExtractor.cpp 71 // will signal seek on the extractor; otherwise the single stream will seek.
110 // seek is needed
111 status_t err = mExtractor->seek(seekTimeUs, seekMode);
143 // The seek reference track (video if present; audio otherwise) performs
144 // seek requests, while other tracks ignore requests.
479 status_t MPEG2TSExtractor::seek(int64_t seekTimeUs, function in class:android::MPEG2TSExtractor
482 ALOGW("No sync point to seek to.");
491 // Determine the sync point to seek.
  /frameworks/av/packages/MediaComponents/src/com/android/support/mediarouter/media/
RemotePlaybackClient.java 111 * {@link MediaControlIntent#ACTION_SEEK seek},
351 * Sends a request to seek to a new position in a media item.
375 public void seek(String itemId, long positionMillis, Bundle extras, method in class:RemotePlaybackClient
    [all...]
  /frameworks/support/mediarouter/src/main/java/androidx/mediarouter/media/
RemotePlaybackClient.java 112 * {@link MediaControlIntent#ACTION_SEEK seek},
352 * Sends a request to seek to a new position in a media item.
376 public void seek(String itemId, long positionMillis, Bundle extras, method in class:RemotePlaybackClient
    [all...]
  /libcore/ojluni/src/main/java/java/io/
RandomAccessFile.java 53 * {@code getFilePointer} method and set by the {@code seek}
510 seek(newpos);
606 public void seek(long pos) throws IOException { method in class:RandomAccessFile
608 // Android-changed: different exception message for seek(-1).
609 // throw new IOException("Negative seek offset");
672 seek(newLength);
    [all...]
  /prebuilts/gdb/darwin-x86/lib/python2.7/
_pyio.py 60 current seek position). In text mode, if encoding is not specified the
298 def seek(self, pos, whence=0): member in class:IOBase
311 self._unsupported("seek")
315 return self.seek(0, 1)
365 If False, seek(), tell() and truncate() will raise IOError.
366 This method may need to do a test seek().
693 def seek(self, pos, whence=0): member in class:_BufferedIOMixin
694 new_position = self.raw.seek(pos, whence)
696 raise IOError("seek() returned an invalid position")
713 # XXX: Should seek() be used, instead of passing the positio
848 def seek(self, pos, whence=0): member in class:BytesIO
1044 def seek(self, pos, whence=0): member in class:BufferedReader
1143 def seek(self, pos, whence=0): member in class:BufferedWriter
1240 def seek(self, pos, whence=0): member in class:BufferedRandom
1777 def seek(self, cookie, whence=0): member in class:TextIOWrapper
    [all...]

Completed in 1176 milliseconds

1 2 3 4 5 67 8 91011>>