Searched defs:stop (Results 1 - 25 of 179) sorted by relevance

12345678

/frameworks/av/media/libstagefright/timedtext/
H A DTimedText3GPPSource.h34 virtual status_t stop() { return mSource->stop(); } function in class:android::TimedText3GPPSource
/frameworks/base/graphics/java/android/graphics/drawable/
H A DAnimatable.java31 void stop(); method in interface:Animatable
/frameworks/base/core/java/android/speech/tts/
H A DAbstractSynthesisCallback.java23 * All of these class methods (with the exception of {@link #stop()}) can be only called on the
26 * {@link #stop()} is the exception, it may be called from multiple threads.
46 abstract void stop(); method in class:AbstractSynthesisCallback
49 * Get status code for a "stop".
H A DPlaybackQueueItem.java31 * @param errorCode Cause of the stop. Can be either one of the error codes from
36 abstract void stop(int errorCode); method in class:PlaybackQueueItem
H A DSilencePlaybackQueueItem.java47 void stop(int errorCode) { method in class:SilencePlaybackQueueItem
H A DAudioPlaybackHandler.java41 private void stop(PlaybackQueueItem item) { method in class:AudioPlaybackHandler
46 item.stop(TextToSpeech.STOPPED);
64 stop(current);
68 public void stop() { method in class:AudioPlaybackHandler
72 stop(mCurrentWorkItem);
88 stop(mCurrentWorkItem);
129 // If stop() or stopForApp() are called between mQueue.take()
/frameworks/base/libs/hwui/utils/
H A DTiming.h31 struct timeval stop; local
32 gettimeofday(&stop, NULL);
33 long long elapsed = (stop.tv_sec * 1000000) - (mStart.tv_sec * 1000000)
34 + (stop.tv_usec - mStart.tv_usec);
/frameworks/av/include/media/stagefright/
H A DAMRWriter.h40 virtual status_t stop() { return reset(); } function in struct:android::AMRWriter
H A DMPEG2TSWriter.h40 virtual status_t stop() { return reset(); } function in struct:android::MPEG2TSWriter
H A DAACWriter.h37 virtual status_t stop() { return reset(); } function in struct:android::AACWriter
H A DAudioSource.h44 virtual status_t stop() { return reset(); } function in struct:android::AudioSource
/frameworks/av/media/libstagefright/
H A DMediaAdapter.cpp47 status_t MediaAdapter::stop() { function in class:android::MediaAdapter
51 // If stop() happens immediately after a pushBuffer(), we should
91 ALOGV("read interrupted after stop");
H A DMediaMuxer.cpp147 status_t MediaMuxer::stop() { function in class:android::MediaMuxer
153 if (mTrackList[i]->stop() != OK) {
157 return mWriter->stop();
159 ALOGE("stop() is called in invalid state %d", mState);
/frameworks/av/media/libstagefright/tests/
H A DDummyRecorder.cpp57 status_t DummyRecorder::stop() { function in class:android::DummyRecorder
61 mSource->stop();
/frameworks/base/packages/Keyguard/src/com/android/keyguard/
H A DBiometricSensorUnlock.java33 * unlock completes, {@link BiometricSensorUnlock#stop} has been called, or an error has
34 * forced the biometric unlock to stop.
55 public boolean stop(); method in interface:BiometricSensorUnlock
/frameworks/base/services/core/java/com/android/server/location/
H A DCountryDetectorBase.java65 public abstract void stop(); method in class:CountryDetectorBase
/frameworks/native/services/inputflinger/
H A DInputManager.cpp45 stop();
71 status_t InputManager::stop() { function in class:android::InputManager
74 ALOGW("Could not stop InputReader thread due to error %d.", result);
79 ALOGW("Could not stop InputDispatcher thread due to error %d.", result);
/frameworks/opt/datetimepicker/src/com/android/datetimepicker/
H A DHapticFeedbackController.java55 public void stop() { method in class:HapticFeedbackController
/frameworks/av/cmds/stagefright/
H A DSineSource.cpp23 stop();
39 status_t SineSource::stop() { function in class:android::SineSource
/frameworks/av/media/libmedia/
H A DIAudioRecord.cpp60 virtual void stop() function in class:android::BpAudioRecord
86 stop();
/frameworks/base/core/java/android/net/
H A DUidRange.java33 public final int stop; field in class:UidRange
37 if (stopUid < 0) throw new IllegalArgumentException("Invalid stop UID.");
40 stop = stopUid;
55 result = 31 * result + stop;
66 return start == other.start && stop == other.stop;
73 return start + "-" + stop;
85 dest.writeInt(stop);
93 int stop = in.readInt();
95 return new UidRange(start, stop);
[all...]
/frameworks/base/media/mca/filterfw/java/android/filterfw/core/
H A DStopWatchMap.java51 public void stop() { method in class:StopWatch
54 "Calling stop with StopWatch already stopped");
90 public void stop(String stopWatchName) { method in class:StopWatchMap
96 "Calling stop with unknown stopWatchName: " + stopWatchName);
98 mStopWatches.get(stopWatchName).stop();
/frameworks/rs/tests/latency/
H A Dlatency.cpp75 struct timeval start, stop; local
85 gettimeofday(&stop, NULL);
87 long long elapsed = (stop.tv_sec * 1000000) - (start.tv_sec * 1000000) + (stop.tv_usec - start.tv_usec);
101 gettimeofday(&stop, NULL);
102 elapsed = (stop.tv_sec * 1000000) - (start.tv_sec * 1000000) + (stop.tv_usec - start.tv_usec);
/frameworks/av/media/libstagefright/rtsp/
H A DVideoSource.h53 virtual status_t stop() { function in class:android::VideoSource
/frameworks/base/core/java/android/os/
H A DSystemService.java65 /** Request that the init daemon stop a named service. */
66 public static void stop(String name) { method in class:SystemService
67 SystemProperties.set("ctl.stop", name);

Completed in 485 milliseconds

12345678