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

12

/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/graphics/java/android/graphics/drawable/
H A DAnimatable.java31 void stop(); method in interface:Animatable
H A DAnimatedRotateDrawable.java95 public void stop() { method in class:AnimatedRotateDrawable
H A DAnimationDrawable.java101 * @see #stop()
116 public void stop() { method in class:AnimationDrawable
/frameworks/base/media/libmedia/
H A DIAudioRecord.cpp49 virtual void stop() function in class:android::BpAudioRecord
91 stop();
H A DIAudioTrack.cpp52 virtual void stop() function in class:android::BpAudioTrack
116 stop();
H A DIMediaPlayer.cpp86 status_t stop() function in class:android::BpMediaPlayer
212 reply->writeInt32(stop());
H A Dmediarecorder.cpp460 status_t MediaRecorder::stop() function in class:android::MediaRecorder
462 LOGV("stop");
468 LOGE("stop called in an invalid state: %d", mCurrentState);
472 status_t ret = mMediaRecorder->stop();
474 LOGE("stop failed: %d", ret);
480 // stop and reset are semantically different.
/frameworks/base/core/java/android/widget/
H A DEditText.java77 public void setSelection(int start, int stop) { argument
78 Selection.setSelection(getText(), start, stop);
H A DChronometer.java181 * make sure that each start() call has a reciprocal call to {@link #stop}.
195 public void stop() { method in class:Chronometer
201 * The same as calling {@link #start} or {@link #stop}.
/frameworks/base/libs/utils/
H A DTimers.cpp196 void DurationTimer::stop(void) function in class:DurationTimer
212 long long stop = ((long long) ptv1->tv_sec) * 1000000LL + local
216 return stop - start;
/frameworks/base/media/java/android/media/
H A DRingtone.java219 public void stop() { method in class:Ringtone
H A DAsyncPlayer.java93 mPlayer.stop();
145 * Calling this before another audio file is done playing will stop
172 public void stop() { method in class:AsyncPlayer
174 // This check allows stop to be called multiple times without starting
200 * We want to hold a wake lock while we do the prepare and play. The stop probably is
H A DSoundPool.java44 * SoundPool will automatically stop a previously playing stream based first
51 * explicitly call the stop() function to stop the sound. Any other non-zero
65 * the SoundPool was created. In this case, the stream allocator will stop
67 * low priority, it will choose the oldest stream to stop. In the case
249 * another sound to stop playing if the maximum number of active
305 public native final void stop(int streamID); method in class:SoundPool
/frameworks/base/services/java/com/android/server/
H A DViewServer.java97 * @see #stop()
123 boolean stop() { method in class:ViewServer
144 * @see #stop()
/frameworks/base/core/java/android/text/
H A DSelection.java63 * to <code>stop</code>.
65 public static void setSelection(Spannable text, int start, int stop) { argument
68 // stop = pin(stop, 0, len);
73 if (ostart != start || oend != stop) {
76 text.setSpan(SELECTION_END, stop, stop,
/frameworks/base/core/java/android/text/method/
H A DMultiTapKeyListener.java231 Object what, int s, int e, int start, int stop) {
230 onSpanChanged(Spannable buf, Object what, int s, int e, int start, int stop) argument
/frameworks/base/packages/VpnServices/src/com/android/server/vpn/
H A DDaemonProxy.java31 * Proxy to start, stop and interact with a VPN daemon.
45 private static final String SVC_STOP_CMD = "ctl.stop";
110 void stop() { method in class:DaemonProxy
/frameworks/base/services/java/com/android/server/am/
H A DDeviceMonitor.java73 stop();
197 private synchronized void stop() { method in class:DeviceMonitor
/frameworks/base/core/java/android/bluetooth/
H A DBluetoothAudioGateway.java155 public synchronized void stop() { method in class:BluetoothAudioGateway
/frameworks/base/core/java/android/preference/
H A DVolumePreference.java92 mSeekBarVolumizer.stop();
157 public void stop() { method in class:VolumePreference.SeekBarVolumizer
203 mRingtone.stop();
/frameworks/base/media/libmediaplayerservice/
H A DMediaRecorderClient.cpp222 status_t MediaRecorderClient::stop() function in class:android::MediaRecorderClient
224 LOGV("stop");
230 return mRecorder->stop();
H A DMidiFile.cpp232 status_t MidiFile::stop() function in class:android::MidiFile
234 LOGV("MidiFile::stop");
539 mAudioSink->stop();
/frameworks/base/packages/TtsService/src/android/tts/
H A DSynthProxy.java50 public int stop() { method in class:SynthProxy
/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...]

Completed in 491 milliseconds

12