Searched defs:start (Results 251 - 275 of 390) sorted by relevance

<<111213141516

/frameworks/base/media/java/android/media/
H A DMediaCodec.java33 * codec.start();
67 * After a successful call to {@link #start} the client "owns" neither
86 * encoded frames of audio. In either case, buffers do not start and end on
108 * In order to start decoding data that's not adjacent to previously submitted
115 * for this a full stop(), configure(), start() cycle is necessary.
264 * After successfully configuring the component, call start. On return
267 public native final void start(); method in class:MediaCodec
271 * remains active and ready to be {@link #start}ed again.
469 * Call this after start() returns.
476 * Call this after start() return
[all...]
/frameworks/av/libvideoeditor/lvpp/
H A DVideoEditorAudioPlayer.cpp181 mAudioSink->start();
183 mAudioTrack->start();
320 status_t VideoEditorAudioPlayer::start(bool sourceAlreadyStarted) { function in class:android::VideoEditorAudioPlayer
332 err = mSource->start();
371 ALOGV("VideoEditorAudioPlayer::start M4OSA_kFileReadGetFileSize = %lld",
533 mAudioSink->start();
559 mAudioTrack->start();
/frameworks/av/media/libmedia/
H A DAudioRecord.cpp276 status_t AudioRecord::start(AudioSystem::sync_event_t event, int triggerSession) function in class:android::AudioRecord
281 ALOGV("start, sync event %d trigger session %d", event, triggerSession);
296 ALOGV("mAudioRecord->start()");
297 ret = mAudioRecord->start(event, triggerSession);
521 result = mAudioRecord->start(AudioSystem::SYNC_EVENT_SAME, 0);
774 result = mAudioRecord->start(AudioSystem::SYNC_EVENT_SAME, 0);
H A DIMediaPlayer.cpp135 status_t start() function in class:android::BpMediaPlayer
398 reply->writeInt32(start());
H A Dmediaplayer.cpp282 status_t MediaPlayer::start() function in class:android::MediaPlayer
284 ALOGV("start");
294 status_t ret = mPlayer->start();
299 ALOGV("playback completed immediately following start()");
304 ALOGE("start called in state %d", mCurrentState);
/frameworks/av/media/libmediaplayerservice/nuplayer/
H A DNuPlayer.cpp156 void NuPlayer::start() { function in class:android::NuPlayer
251 mSource->start();
412 mAudioSink->start();
/frameworks/av/media/libstagefright/
H A DCameraSource.cpp562 // Camera is initialized but because start() is never called,
600 status_t CameraSource::start(MetaData *meta) { function in class:android::CameraSource
601 ALOGV("start");
H A DMP3Extractor.cpp120 * The next read position should start from the end of
219 virtual status_t start(MetaData *params = NULL);
439 status_t MP3Source::start(MetaData *) { function in class:android::MP3Source
H A DMPEG2TSWriter.cpp40 void start(const sp<AMessage> &notify);
132 void MPEG2TSWriter::SourceInfo::start(const sp<AMessage> &notify) { function in class:android::MPEG2TSWriter::SourceInfo
134 mLooper->start();
371 status_t err = mSource->start();
522 mLooper->start();
558 status_t MPEG2TSWriter::start(MetaData *param) { function in class:android::MPEG2TSWriter
572 mSources.editItemAt(i)->start(notify);
1009 * Compute CRC32 checksum for buffer starting at offset start and for length
H A DMediaCodec.cpp109 mCodecLooper->start(false, false, ANDROID_PRIORITY_AUDIO);
157 status_t MediaCodec::start() { function in class:android::MediaCodec
/frameworks/av/media/libstagefright/mpeg2ts/
H A DMPEG2PSExtractor.cpp45 virtual status_t start(MetaData *params);
76 virtual status_t start(MetaData *params);
280 ALOGV("Supposedly payload_unit_start=1 unit does not start "
580 status_t MPEG2PSExtractor::Track::start(MetaData *params) { function in class:android::MPEG2PSExtractor::Track
585 return mSource->start(params);
677 status_t MPEG2PSExtractor::WrappedTrack::start(MetaData *params) { function in class:android::MPEG2PSExtractor::WrappedTrack
678 return mTrack->start(params);
/frameworks/av/media/libstagefright/wifi-display/
H A DANetworkSession.cpp547 status_t ANetworkSession::start() { function in class:android::ANetworkSession
/frameworks/av/media/libstagefright/wifi-display/source/
H A DPlaybackSession.cpp75 status_t start();
170 status_t WifiDisplaySource::PlaybackSession::Track::start() { function in class:android::WifiDisplaySource::PlaybackSession::Track
171 ALOGV("Track::start isAudio=%d", mIsAudio);
178 err = mMediaPuller->start();
301 // We've never seen an output buffer queued, but tracks start
345 mSenderLooper->start(
398 CHECK_EQ((status_t)OK, mTracks.editValueAt(i)->start());
609 pullLooper->start(
617 codecLooper->start(
H A DTSPacketizer.cpp835 uint32_t TSPacketizer::crc32(const uint8_t *start, size_t size) const { argument
839 for (p = start; p < start + size; ++p) {
H A DWifiDisplaySource.cpp68 status_t WifiDisplaySource::start(const char *iface) { function in class:android::WifiDisplaySource
/frameworks/base/core/java/android/animation/
H A DValueAnimator.java124 * Flag that represents the current state of the animation. Used to figure out when to start
132 * Additional playing state to indicate whether an animator has been start()'d. There is
133 * some lag between a call to start() and the first animation frame. We should still note
142 * Additional playing state to indicate whether an animator has been start()'d, whether or
150 * startDelay and whether start() was called before end().
168 // The amount of time in ms to delay starting the animation after start() is called
178 * animation will start from the beginning on every new cycle. REVERSE means the animation
470 * duration, as in <code>ValueAnimator.ofInt(0, 10).setDuration(500).start()</code>.
546 * Internal per-thread collections used to avoid set collisions as animations start and end
563 public void start() { method in class:ValueAnimator.AnimationHandler
900 private void start(boolean playBackwards) { method in class:ValueAnimator
922 public void start() { method in class:ValueAnimator
[all...]
/frameworks/base/core/java/android/net/
H A DNetworkStatsHistory.java285 public void recordData(long start, long end, long rxBytes, long txBytes) { argument
286 recordData(start, end, new NetworkStats.Entry(
294 public void recordData(long start, long end, NetworkStats.Entry entry) { argument
309 ensureBuckets(start, end);
312 long duration = end - start;
319 if (curEnd < start) break;
323 final long overlap = Math.min(curEnd, end) - Math.max(curStart, start);
359 public void recordHistory(NetworkStatsHistory input, long start, long end) { argument
367 if (bucketStart < start || bucketEnd > end) continue;
382 private void ensureBuckets(long start, lon argument
400 insertBucket(int index, long start) argument
471 getValues(long start, long end, Entry recycle) argument
479 getValues(long start, long end, long now, Entry recycle) argument
527 generateRandom(long start, long end, long bytes) argument
545 generateRandom(long start, long end, long rxBytes, long rxPackets, long txBytes, long txPackets, long operations, Random r) argument
572 randomLong(Random r, long start, long end) argument
[all...]
/frameworks/base/core/java/android/text/
H A DDynamicLayout.java144 int[] start;
147 start = new int[COLUMNS_ELLIPSIZE];
148 start[ELLIPSIS_START] = ELLIPSIS_UNDEFINED;
150 start = new int[COLUMNS_NORMAL];
159 start[DIR] = DIR_LEFT_TO_RIGHT << DIR_SHIFT;
160 start[TOP] = 0;
161 start[DESCENT] = desc;
162 mInts.insertAt(0, start);
164 start[TOP] = desc - asc;
165 mInts.insertAt(1, start);
638 onSpanAdded(Spannable s, Object o, int start, int end) argument
643 onSpanRemoved(Spannable s, Object o, int start, int end) argument
648 onSpanChanged(Spannable s, Object o, int start, int end, int nstart, int nend) argument
[all...]
H A DHtml.java196 int start, int end) {
198 for (int i = start; i < end; i = next) {
214 private static String getOpenParaTagWithDirection(Spanned text, int start, int end) { argument
215 final int len = end - start;
218 TextUtils.getChars(text, start, end, buffer, 0);
232 int start, int end) {
233 out.append(getOpenParaTagWithDirection(text, start, end));
236 for (int i = start; i < end; i = next) {
256 int start, int end, int nl,
259 for (int i = start;
195 withinDiv(StringBuilder out, Spanned text, int start, int end) argument
231 withinBlockquote(StringBuilder out, Spanned text, int start, int end) argument
255 withinParagraph(StringBuilder out, Spanned text, int start, int end, int nl, boolean last) argument
382 withinStyle(StringBuilder out, CharSequence text, int start, int end) argument
603 private static void start(SpannableStringBuilder text, Object mark) { method in class:HtmlToSpannedConverter
763 characters(char ch[], int start, int length) argument
801 ignorableWhitespace(char ch[], int start, int length) argument
[all...]
H A DStaticLayout.java204 // and start from the top of the span, not the top of the
430 // Exit the span loop, and get spanStart to start over from here.
583 private int out(CharSequence text, int start, int end, argument
621 chooseHeight(text, start, end, chooseHtv[i], v, fm, paint);
624 chooseHt[i].chooseHeight(text, start, end, chooseHtv[i], v, fm);
666 lines[off + START] = start;
685 mLineDirections[j] = AndroidBidi.directions(dir, chdirs, start - widthStart, chs,
686 start - widthStart, end - start);
702 calculateEllipsis(start, en
[all...]
/frameworks/base/core/java/android/view/
H A DGLES20DisplayList.java31 // cleared at the start of a new drawing frame or when the view is detached from the window.
61 public HardwareCanvas start() { method in class:GLES20DisplayList
68 mCanvas.start();
H A DGLES20RecordingCanvas.java77 void start() { method in class:GLES20RecordingCanvas
251 public void drawText(CharSequence text, int start, int end, float x, float y, Paint paint) { argument
252 super.drawText(text, start, end, x, y, paint);
257 public void drawText(String text, int start, int end, float x, float y, Paint paint) { argument
258 super.drawText(text, start, end, x, y, paint);
289 public void drawTextRun(CharSequence text, int start, int end, int contextStart, argument
291 super.drawTextRun(text, start, end, contextStart, contextEnd, x, y, dir, paint);
H A DViewPropertyAnimator.java142 * together works by posting this Runnable to start the underlying Animator. Every time
144 * and re-post it. This means that we will only ever run the Runnable (and thus start the
338 * Starts the currently pending property animations immediately. Calling <code>start()</code>
339 * is optional because all animations start automatically at the next opportunity. However,
340 * if the animations are needed to start immediately and synchronously (not at the time when
344 public void start() { method in class:ViewPropertyAnimator
763 animator.start();
770 * pending animations, awaiting the eventual start() of the underlying animator. A
771 * Runnable is posted to start the animation, and any pending such Runnable is canceled
799 * details of adding a pending animation and posting the request to start th
[all...]
H A DViewTreeObserver.java651 CopyOnWriteArray.Access<OnGlobalLayoutListener> access = listeners.start();
664 * Notifies registered listeners that the drawing pass is about to start. If a
676 CopyOnWriteArray.Access<OnPreDrawListener> access = listeners.start();
690 * Notifies registered listeners that the drawing pass is about to start.
727 CopyOnWriteArray.Access<OnScrollChangedListener> access = listeners.start();
759 CopyOnWriteArray.Access<OnComputeInternalInsetsListener> access = listeners.start();
778 * CopyOnWriteArray.Access<MyData> access = array.start();
819 Access<T> start() { method in class:ViewTreeObserver.CopyOnWriteArray
/frameworks/base/core/java/android/widget/
H A DMediaController.java465 mPlayer.start();
517 mPlayer.start();
662 void start(); method in interface:MediaController.MediaPlayerControl

Completed in 4773 milliseconds

<<111213141516