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

1234567

/frameworks/av/media/libstagefright/timedtext/
H A DTimedText3GPPSource.h34 virtual status_t stop() { return mSource->stop(); } function in class:android::TimedText3GPPSource
/frameworks/base/core/java/android/speech/tts/
H A DAbstractSynthesisCallback.java33 abstract void stop(); method in class:AbstractSynthesisCallback
H A DPlaybackQueueItem.java26 abstract void stop(boolean isError); method in class:PlaybackQueueItem
H A DSilencePlaybackQueueItem.java42 void stop(boolean isError) { method in class:SilencePlaybackQueueItem
H A DAudioPlaybackQueueItem.java94 mPlayer.stop();
102 void stop(boolean isError) { method in class:AudioPlaybackQueueItem
/frameworks/base/graphics/java/android/graphics/drawable/
H A DAnimatable.java31 void stop(); method in interface:Animatable
/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.cpp128 status_t MediaMuxer::stop() { function in class:android::MediaMuxer
134 if (mTrackList[i]->stop() != OK) {
138 return mWriter->stop();
140 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/input/
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/base/services/java/com/android/server/location/
H A DCountryDetectorBase.java65 public abstract void stop(); method in class:CountryDetectorBase
/frameworks/opt/datetimepicker/src/com/android/datetimepicker/
H A DHapticFeedbackController.java55 public void stop() { method in class:HapticFeedbackController
/frameworks/av/media/libmedia/
H A DIAudioRecord.cpp72 virtual void stop() function in class:android::BpAudioRecord
103 stop();
/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/cmds/stagefright/
H A DSineSource.cpp23 stop();
39 status_t SineSource::stop() { function in class:android::SineSource
/frameworks/av/libvideoeditor/lvpp/
H A DDummyAudioSource.cpp95 status_t DummyAudioSource::stop() { function in class:android::DummyAudioSource
96 ALOGV("stop");
H A DDummyVideoSource.cpp92 status_t DummyVideoSource::stop() { function in class:android::DummyVideoSource
93 ALOGV("stop");
/frameworks/av/libvideoeditor/vss/stagefrightshells/src/
H A DMediaBufferPuller.cpp42 stop();
56 void MediaBufferPuller::stop() { function in class:android::MediaBufferPuller
130 // Loop until we are asked to stop, or there is nothing more to read
157 // Loop until we are asked to stop

Completed in 7633 milliseconds

1234567