Searched refs:stop (Results 1 - 25 of 205) 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/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/media/libstagefright/codecs/aacdec/
H A Dsbr_update_freq_scale.h90 Int32 stop,
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/
H A DAnimatedImageView.java44 mAnim.stop();
79 mAnim.stop();
91 mAnim.stop();
/frameworks/base/media/libstagefright/matroska/
H A Dmkvparser.cpp161 long long stop,
166 if (pos >= stop)
191 if ((pos + len) > stop)
925 const long long stop = m_start + m_size; local
926 assert(stop <= total);
927 assert(m_pos <= stop);
931 while ((m_pos < stop) && !bQuit)
941 if ((pos + len) > stop)
961 if ((pos + len) > stop)
976 if ((pos + size) > stop)
158 SyncReadUInt( IMkvReader* pReader, long long pos, long long stop, long& len) argument
1189 const long long stop = m_start + m_size; local
[all...]
/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 Daudioloop.cpp63 writer->stop();
78 player->stop();
96 CHECK_EQ(decoder->stop(), OK);
/frameworks/base/include/media/
H A DIAudioRecord.h47 virtual void stop() = 0;
H A DIAudioTrack.h47 virtual void stop() = 0;
/frameworks/base/media/tests/omxjpegdecoder/
H A DSkOmxPixelRef.cpp35 CHECK_EQ(mDecoder->stop(), OK);
/frameworks/base/core/java/android/widget/
H A DEditText.java84 public void setSelection(int start, int stop) { argument
85 Selection.setSelection(getText(), start, stop);
/frameworks/base/include/ui/
H A DInputManager.h73 virtual status_t stop() = 0;
98 virtual status_t stop();
/frameworks/base/libs/ui/
H A DInputManager.cpp35 stop();
61 status_t InputManager::stop() { function in class:android::InputManager
64 LOGW("Could not stop InputReader thread due to error %d.", result);
69 LOGW("Could not stop InputDispatcher thread due to error %d.", result);
/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/include/media/stagefright/
H A DAMRWriter.h40 virtual status_t stop();
H A DJPEGSource.h32 virtual status_t stop();
H A DShoutcastSource.h36 virtual status_t stop();
/frameworks/base/media/libstagefright/
H A DThreadedSource.cpp42 stop();
69 status_t ThreadedSource::stop() { function in class:android::ThreadedSource
72 CHECK_EQ(mLooper->stop(), (status_t)OK);
77 status_t err = mSource->stop();
/frameworks/base/media/libstagefright/include/
H A DAACDecoder.h34 virtual status_t stop();
H A DAMRNBDecoder.h31 virtual status_t stop();
H A DAMRNBEncoder.h32 virtual status_t stop();

Completed in 1538 milliseconds

123456789