Searched defs:seek (Results 1 - 20 of 20) sorted by relevance

/frameworks/layoutlib/bridge/src/com/android/layoutlib/bridge/libcore/io/
H A DBridgeBufferIterator.java37 public void seek(int offset) { method in class:BridgeBufferIterator
/frameworks/base/core/jni/android/graphics/
H A DUtils.cpp29 off64_t pos = fAsset->seek(0, SEEK_SET);
31 SkDebugf("----- fAsset->seek(rewind) failed\n");
53 return fAsset->seek(0, SEEK_CUR) != -1;
57 const off64_t offset = fAsset->seek(0, SEEK_CUR);
59 SkDebugf("---- fAsset->seek(0, SEEK_CUR) failed\n");
66 bool AssetStreamAdaptor::seek(size_t position) { function in class:AssetStreamAdaptor
67 if (fAsset->seek(position, SEEK_SET) == -1) {
68 SkDebugf("---- fAsset->seek(0, SEEK_SET) failed\n");
76 if (fAsset->seek(offset, SEEK_CUR) == -1) {
77 SkDebugf("---- fAsset->seek(
[all...]
/frameworks/support/frameworks/support/samples/Support7Demos/src/main/java/com/example/android/supportv7/media/
H A DPlayer.java33 * seek, etc. Used by PlaybackManager as a backend to handle actual playback
64 public abstract void seek(final PlaylistItem item); method in class:Player
H A DRemotePlayer.java157 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);
H A DLocalPlayer.java135 public void seek(final PlaylistItem item) { method in class:LocalPlayer
137 Log.d(TAG, "seek: item=" + item);
146 // need to performed delayed seek in onPrepared()
232 Log.d(TAG, "seek to initial pos: " + mSeekToPos);
H A DSessionManager.java137 public PlaylistItem seek(String iid, long pos) { method in class:SessionManager
139 log("seek: iid=" + iid +", pos=" + pos);
150 mPlayer.seek(item);
/frameworks/support/samples/Support7Demos/src/main/java/com/example/android/supportv7/media/
H A DPlayer.java33 * seek, etc. Used by PlaybackManager as a backend to handle actual playback
64 public abstract void seek(final PlaylistItem item); method in class:Player
H A DRemotePlayer.java157 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);
H A DLocalPlayer.java135 public void seek(final PlaylistItem item) { method in class:LocalPlayer
137 Log.d(TAG, "seek: item=" + item);
146 // need to performed delayed seek in onPrepared()
232 Log.d(TAG, "seek to initial pos: " + mSeekToPos);
H A DSessionManager.java137 public PlaylistItem seek(String iid, long pos) { method in class:SessionManager
139 log("seek: iid=" + iid +", pos=" + pos);
150 mPlayer.seek(item);
/frameworks/base/libs/androidfw/
H A DAsset.cpp353 * Do generic seek() housekeeping. Pass in the offset/whence values from
354 * the seek request, along with the current chunk offset and the chunk
357 * Returns the new chunk offset, or -1 if the seek is illegal.
381 ALOGW("seek out of range: want %ld, end=%ld\n",
457 /* seek the FILE* to the start of chunk */
553 off64_t _FileAsset::seek(off64_t offset, int whence) function in class:_FileAsset
848 * Handle a seek request.
854 off64_t _CompressedAsset::seek(off64_t offset, int whence) function in class:_CompressedAsset
/frameworks/wilhelm/src/android/
H A Dandroid_GenericPlayer.cpp164 seek(0);
168 void GenericPlayer::seek(int64_t timeMsec) { function in class:android::GenericPlayer
169 SL_LOGV("GenericPlayer::seek %lld", timeMsec);
171 SL_LOGE("GenericPlayer::seek error, can't seek to negative time %" PRId64 "ms", timeMsec);
616 // if we observe the player position going backwards, even without without a seek, then recover
/frameworks/av/media/extractors/mpeg2/
H A DMPEG2TSExtractor.cpp71 // 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/
H A DRemotePlaybackClient.java111 * {@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
/frameworks/support/mediarouter/src/main/java/androidx/mediarouter/media/
H A DRemotePlaybackClient.java112 * {@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
/frameworks/av/media/extractors/mkv/
H A DMatroskaExtractor.cpp105 void seek(
399 void BlockIterator::seek( function in class:android::BlockIterator
412 ALOGE("cannot seek to %lld", (long long) seekTimeUs);
420 // Special case the 0 seek to avoid loading Cues when the application
529 ALOGV("Requested seek point: %" PRId64 " actual: %" PRId64,
782 // The audio we want is located by using the Cues to seek the video
786 mBlockIter.seek(seekTimeUs, mIsAudio, &actualFrameTimeUs);
/frameworks/av/media/libstagefright/rtsp/
H A DMyHandler.h223 void seek(int64_t timeUs) { function in struct:android::MyHandler
224 sp<AMessage> msg = new AMessage('seek', this);
1167 case 'seek':
1170 ALOGW("This is a live stream, ignoring seek request.");
1280 ALOGI("PLAY (for seek) completed with result %d (%s)",
1307 ALOGI("seek completed.");
1312 ALOGE("seek failed, aborting.");
1351 // posted at seek as well.
/frameworks/base/media/java/android/media/
H A DExifInterface.java2296 in.seek(jpegOffset);
2453 makerNoteDataInputStream.seek(PEF_MAKER_NOTE_SKIP_SIZE);
2493 in.seek(rafCfaHeaderOffset);
2545 in.seek(position);
2555 mPosition = -1; // need to seek on next read
2633 in.seek(offset);
2689 makerNoteDataInputStream.seek(0);
2694 makerNoteDataInputStream.seek(ORF_MAKER_NOTE_HEADER_1_SIZE);
2696 makerNoteDataInputStream.seek(ORF_MAKER_NOTE_HEADER_2_SIZE);
3005 dataInputStream.seek(nextEntryOffse
3762 public void seek(long byteCount) throws IOException { method in class:ExifInterface.ByteOrderedDataInputStream
[all...]
/frameworks/support/exifinterface/src/main/java/androidx/exifinterface/media/
H A DExifInterface.java4790 in.seek(jpegOffset);
4947 makerNoteDataInputStream.seek(PEF_MAKER_NOTE_SKIP_SIZE);
4987 in.seek(rafCfaHeaderOffset);
5049 makerNoteDataInputStream.seek(0);
5054 makerNoteDataInputStream.seek(ORF_MAKER_NOTE_HEADER_1_SIZE);
5056 makerNoteDataInputStream.seek(ORF_MAKER_NOTE_HEADER_2_SIZE);
5373 dataInputStream.seek(nextEntryOffset);
5377 // Read a value from data field or seek to the value offset which is stored in data
5382 Log.d(TAG, "seek to data offset: " + offset);
5413 dataInputStream.seek(offse
6117 public void seek(long byteCount) throws IOException { method in class:ExifInterface.ByteOrderedDataInputStream
[all...]
/frameworks/data-binding/prebuilds/1.0-rc0/
H A Ddatabinding-studio-bundle.jarMETA-INF/ META-INF/MANIFEST.MF android/ android/databinding/ android/databinding/Bindable.class Bindable. ...

Completed in 169 milliseconds