HomeSort by relevance Sort by last modified time
    Searched defs:seek (Results 101 - 125 of 168) sorted by null

1 2 3 45 6 7

  /external/chromium_org/content/renderer/media/android/
webmediaplayer_android.cc 364 void WebMediaPlayerAndroid::seek(double seconds) { function in class:content::WebMediaPlayerAndroid
375 // there is no pending seek. This enforces that any pending seek that
376 // results in a demuxer seek is preceded by matching
394 // Later, OnSeekComplete will trigger the pending seek.
404 // Kick off the asynchronous seek!
405 manager_->Seek(player_id_, seek_time_);
470 // If the player is processing a seek, return the seek time.
672 // to 0. It will perform a seek to 0. As the requests to the rendere
    [all...]
  /external/chromium_org/content/renderer/media/
webmediaplayer_impl.cc 345 void WebMediaPlayerImpl::seek(double seconds) { function in class:content::WebMediaPlayerImpl
372 // Kick off the asynchronous seek!
373 pipeline_->Seek(
890 seek(pending_seek_seconds_);
    [all...]
  /frameworks/av/media/libstagefright/matroska/
MatroskaExtractor.cpp 97 void seek(
309 void BlockIterator::seek( function in class:android::BlockIterator
320 // Special case the 0 seek to avoid loading Cues when the application
323 ALOGV("Seek to beginning: %lld", seekTimeUs);
412 ALOGV("Requested seek point: %lld actual: %lld",
502 // The audio we want is located by using the Cues to seek the video
506 mBlockIter.seek(seekTimeUs, mIsAudio, &actualFrameTimeUs);
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
mailbox.py 212 buffer.seek(0)
651 self._file.seek(0, 2)
664 self._file.seek(start)
733 self._file.seek(0, 2)
762 self._file.seek(start)
772 self._file.seek(start)
781 self._file.seek(start)
832 self._file.seek(0)
881 self._file.seek(0)
1898 def seek(self, offset, whence=0): member in class:_ProxyFile
1935 def seek(self, offset, whence=0): member in class:_PartialFile
    [all...]
tarfile.py 546 def seek(self, pos=0): member in class:_Stream
661 self.fileobj.seek(0)
683 def seek(self, pos): member in class:_BZ2Proxy
723 def seek(self, position): member in class:_FileInFile
724 """Seek to a position in the file.
744 self.fileobj.seek(self.offset + self.position)
772 self.fileobj.seek(self.offset + realpos)
873 def seek(self, pos, whence=os.SEEK_SET): member in class:ExFileObject
874 """Seek to a position in the file.
892 self.fileobj.seek(self.position
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
mailbox.py 212 buffer.seek(0)
651 self._file.seek(0, 2)
664 self._file.seek(start)
733 self._file.seek(0, 2)
762 self._file.seek(start)
772 self._file.seek(start)
781 self._file.seek(start)
832 self._file.seek(0)
881 self._file.seek(0)
1898 def seek(self, offset, whence=0): member in class:_ProxyFile
1935 def seek(self, offset, whence=0): member in class:_PartialFile
    [all...]
tarfile.py 546 def seek(self, pos=0): member in class:_Stream
661 self.fileobj.seek(0)
683 def seek(self, pos): member in class:_BZ2Proxy
723 def seek(self, position): member in class:_FileInFile
724 """Seek to a position in the file.
744 self.fileobj.seek(self.offset + self.position)
772 self.fileobj.seek(self.offset + realpos)
873 def seek(self, pos, whence=os.SEEK_SET): member in class:ExFileObject
874 """Seek to a position in the file.
892 self.fileobj.seek(self.position
    [all...]
  /external/llvm/include/llvm/Support/
system_error.h 858 seek = 25, // ERROR_SEEK, enumerator in enum:llvm::windows_error::_
  /external/mp4parser/isoparser/src/main/java/com/googlecode/mp4parser/authoring/tracks/
H264TrackImpl.java 303 reader.seek(currentScSize);
535 long seek(int dist) throws IOException { method in class:H264TrackImpl.ReaderWrapper
  /frameworks/av/media/libstagefright/rtsp/
MyHandler.h 206 void seek(int64_t timeUs) { function in struct:android::MyHandler
207 sp<AMessage> msg = new AMessage('seek', id());
    [all...]
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/
libio.h 399 __io_seek_fn *seek; /* Seek/tell file position. */ member in struct:__anon37418
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/sysroot/usr/include/
libio.h 399 __io_seek_fn *seek; /* Seek/tell file position. */ member in struct:__anon39008
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/sysroot/usr/include/
libio.h 399 __io_seek_fn *seek; /* Seek/tell file position. */ member in struct:__anon40523
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_tarfile.py 96 fobj.seek(0)
98 "seek() to file's start failed")
99 fobj.seek(2048, 0)
101 "seek() to absolute position failed")
102 fobj.seek(-1024, 1)
104 "seek() to negative relative position failed")
105 fobj.seek(1024, 1)
107 "seek() to positive relative position failed")
110 "read() after seek failed")
111 fobj.seek(0, 2
1581 def seek(self, *args): member in class:Bz2PartialReadTest._test_partial_input.MyStringIO
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
test_tarfile.py 96 fobj.seek(0)
98 "seek() to file's start failed")
99 fobj.seek(2048, 0)
101 "seek() to absolute position failed")
102 fobj.seek(-1024, 1)
104 "seek() to negative relative position failed")
105 fobj.seek(1024, 1)
107 "seek() to positive relative position failed")
110 "read() after seek failed")
111 fobj.seek(0, 2
1581 def seek(self, *args): member in class:Bz2PartialReadTest._test_partial_input.MyStringIO
    [all...]
  /bionic/libc/kernel/arch-mips/asm/
sgiarcs.h 225 LONG seek; member in struct:linux_romvec
  /development/ndk/platforms/android-9/arch-mips/include/asm/
sgiarcs.h 225 LONG seek; member in struct:linux_romvec
  /external/chromium_org/third_party/WebKit/Source/core/html/
HTMLMediaElement.cpp 1803 void HTMLMediaElement::seek(double time, ExceptionState& exceptionState) function in class:WebCore::HTMLMediaElement
    [all...]
  /external/chromium_org/third_party/npapi/npspy/extern/nspr/
prio.h 389 PRSeekFN seek; /* position the file to the desired place */ member in struct:PRIOMethods
    [all...]
  /external/kernel-headers/original/asm-mips/
sgiarcs.h 226 LONG seek; member in struct:linux_romvec
  /external/libvpx/libvpx/nestegg/src/
nestegg.c 31 /* Seek Head Elements */
178 struct seek { struct
184 struct ebml_list seek; member in struct:seek_head
346 E_FIELD(ID_SEEK_ID, TYPE_BINARY, struct seek, id),
347 E_FIELD(ID_SEEK_POSITION, TYPE_UINT, struct seek, position),
352 E_MASTER(ID_SEEK, TYPE_MASTER, struct seek_head, seek),
506 return io->seek(offset, whence, io->userdata);
1342 static struct seek *
1346 struct ebml_list_node * seek; local
1348 struct seek * s
    [all...]
  /packages/apps/Music/src/com/android/music/
MediaPlaybackService.java 215 seek(0);
295 seek(0);
568 seek(seekpos >= 0 && seekpos < duration() ? seekpos : 0);
656 seek(0);
674 seek(0);
1832 public long seek(long pos) { method in class:MediaPlaybackService
2010 public long seek(long whereto) { method in class:MediaPlaybackService.MultiPlayer
2154 public long seek(long pos) { method in class:MediaPlaybackService.ServiceStub
    [all...]
  /prebuilts/ndk/8/platforms/android-14/arch-mips/usr/include/asm/
sgiarcs.h 225 LONG seek; member in struct:linux_romvec
  /prebuilts/ndk/8/platforms/android-9/arch-mips/usr/include/asm/
sgiarcs.h 225 LONG seek; member in struct:linux_romvec
  /prebuilts/ndk/9/platforms/android-14/arch-mips/usr/include/asm/
sgiarcs.h 225 LONG seek; member in struct:linux_romvec

Completed in 3591 milliseconds

1 2 3 45 6 7