Searched refs:stop (Results 1 - 25 of 136) sorted by relevance

123456

/frameworks/base/graphics/java/android/graphics/drawable/
H A DAnimatable.java31 void stop(); method in interface:Animatable
/frameworks/base/core/java/android/os/
H A DSystemService.java27 /** Request that the init daemon stop a named service. */
28 public static void stop(String name) { method in class:SystemService
29 SystemProperties.set("ctl.stop", name);
/frameworks/base/tests/CoreTests/android/core/
H A DSSLPerformanceTest.java72 stopwatch.stop();
84 stopwatch.stop();
102 stopwatch.stop();
119 stopwatch.stop();
136 stopwatch.stop();
157 stopwatch.stop();
172 stopwatch.stop();
186 stopwatch.stop();
194 stopwatch.stop();
206 stopwatch.stop();
332 void stop() { method in class:SSLPerformanceTest.Stopwatch
[all...]
/frameworks/base/libs/utils/
H A DTimers.cpp71 void DurationTimer::stop(void) function in class:DurationTimer
87 long long stop = ((long long) ptv1->tv_sec) * 1000000LL + local
91 return stop - start;
/frameworks/base/tests/DumpRenderTree/src/com/android/dumprendertree/forwarder/
H A DForwardServer.java63 public synchronized void stop() { method in class:ForwardServer
67 forwarder.stop();
128 recyclable.stop();
H A DForwardService.java70 fs8000.stop();
74 fs8080.stop();
78 fs8443.stop();
/frameworks/base/cmds/stagefright/
H A DSineSource.h15 virtual status_t stop();
H A DSineSource.cpp23 stop();
39 status_t SineSource::stop() { function in class:android::SineSource
H A Drecord.cpp58 virtual status_t stop() {
168 writer->stop();
180 encoder->stop();
228 player->stop();
259 encoder->stop();
/frameworks/base/include/media/
H A DIAudioRecord.h47 virtual void stop() = 0;
H A DIAudioTrack.h47 virtual void stop() = 0;
/frameworks/base/include/media/stagefright/
H A DAudioSource.h35 virtual status_t stop();
H A DJPEGSource.h32 virtual status_t stop();
H A DMediaSource.h40 // the stop() call are released.
42 // held onto by callers be released before a call to stop() !!!
43 virtual status_t stop() = 0;
H A DShoutcastSource.h37 virtual status_t stop();
/frameworks/base/core/java/android/widget/
H A DEditText.java77 public void setSelection(int start, int stop) { argument
78 Selection.setSelection(getText(), start, stop);
/frameworks/base/services/java/com/android/server/status/
H A DAnimatedImageView.java26 mAnim.stop();
64 mAnim.stop();
/frameworks/base/core/java/android/util/
H A DMathUtils.java143 public static float lerp(float start, float stop, float amount) { argument
144 return start + (stop - start) * amount;
147 public static float norm(float start, float stop, float value) { argument
148 return (value - start) / (stop - start);
/frameworks/base/media/tests/MediaFrameworkTest/src/com/android/mediaframeworktest/unit/
H A DMediaPlayerStopStateUnitTest.java25 * MediaPlayer.stop() method can be called.
31 * 1. It is valid to call stop() in the following states:
33 * 2. It is invalid to call stop() in the following states:
56 player.stop();
H A DMediaRecorderStopStateUnitTest.java26 * MediaRecorder.stop() method can be called.
32 * 1. It is valid to call stop() in the following states:
34 * 2. It is invalid to call stop() in the following states:
54 recorder.stop();
64 return "stop()";
/frameworks/base/media/libmedia/
H A DIAudioRecord.cpp58 virtual void stop() function in class:android::BpAudioRecord
98 stop();
H A DIAudioTrack.cpp61 virtual void stop() function in class:android::BpAudioTrack
123 stop();
/frameworks/base/media/libmediaplayerservice/
H A DTestPlayerStub.h83 virtual status_t stop() {return mPlayer->stop();} function in class:android::TestPlayerStub
/frameworks/base/media/libstagefright/
H A DAudioPlayer.cpp46 stop();
111 mAudioTrack->stop();
125 void AudioPlayer::stop() { function in class:android::AudioPlayer
129 mAudioSink->stop();
131 mAudioTrack->stop();
138 // source is able to stop().
146 mSource->stop();
H A DAMRExtractor.cpp38 virtual status_t stop();
123 stop();
139 status_t AMRSource::stop() { function in class:android::AMRSource

Completed in 626 milliseconds

123456