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

123456789

/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
/frameworks/base/libs/hwui/utils/
H A DTiming.h31 struct timeval stop; local
32 gettimeofday(&stop, nullptr);
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.h39 virtual status_t stop() { return reset(); } function in struct:android::AMRWriter
H A DMPEG2TSWriter.h39 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.h48 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.cpp132 status_t MediaMuxer::stop() { function in class:android::MediaMuxer
138 if (mTrackList[i]->stop() != OK) {
142 return mWriter->stop();
144 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/PrintRecommendationService/src/com/android/printservice/recommendation/
H A DPrintServicePlugin.java74 void stop() throws Exception; method in interface:PrintServicePlugin
/frameworks/base/services/core/java/com/android/server/location/
H A DCountryDetectorBase.java65 public abstract void stop(); method in class:CountryDetectorBase
/frameworks/base/services/net/java/android/net/util/
H A DStopwatch.java52 public long stop() { method in class:Stopwatch
61 // If the Stopwatch is not running, returns the same value as stop(),
67 return stop();
/frameworks/base/tests/SurfaceComposition/src/android/surfacecomposition/
H A DMemoryAccessTask.java59 public void stop() { method in class:MemoryAccessTask
/frameworks/base/tools/preload2/src/com/android/preload/ui/
H A DNullProgressMonitor.java38 public void stop() {} method in class:NullProgressMonitor
/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/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/base/services/core/java/com/android/server/fingerprint/
H A DEnumerateClient.java58 public int stop(boolean initiatedByClient) { method in class:EnumerateClient
67 Slog.w(TAG, "stop enumeration failed, result=" + result);
71 Slog.e(TAG, "stop enumeration failed", e);
74 // We don't actually stop enumerate, but inform the client that the cancel operation
/frameworks/data-binding/extensions/baseAdapters/src/main/java/android/databinding/adapters/
H A DSeekBarBindingAdapter.java40 final OnStopTrackingTouch stop, final OnProgressChanged progressChanged,
42 if (start == null && stop == null && progressChanged == null && attrChanged == null) {
65 if (stop != null) {
66 stop.onStopTrackingTouch(seekBar);
39 setOnSeekBarChangeListener(SeekBar view, final OnStartTrackingTouch start, final OnStopTrackingTouch stop, final OnProgressChanged progressChanged, final InverseBindingListener attrChanged) argument
/frameworks/rs/tests/latency/
H A Dlatency.cpp75 struct timeval start, stop; local
85 gettimeofday(&stop, nullptr);
87 long long elapsed = (stop.tv_sec * 1000000) - (start.tv_sec * 1000000) + (stop.tv_usec - start.tv_usec);
101 gettimeofday(&stop, nullptr);
102 elapsed = (stop.tv_sec * 1000000) - (start.tv_sec * 1000000) + (stop.tv_usec - start.tv_usec);

Completed in 1629 milliseconds

123456789