HomeSort by relevance Sort by last modified time
    Searched defs:stop (Results 126 - 150 of 1139) sorted by null

1 2 3 4 56 7 8 91011>>

  /frameworks/av/libvideoeditor/vss/stagefrightshells/src/
MediaBufferPuller.cpp 42 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
  /frameworks/av/media/libstagefright/
MediaMuxer.cpp 128 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/rtsp/
VideoSource.h 53 virtual status_t stop() { function in class:android::VideoSource
60 // Stop returning data after 10 secs.
  /frameworks/base/libs/hwui/thread/
TaskManager.cpp 51 void TaskManager::stop() { function in class:android::uirenderer::TaskManager
  /frameworks/base/media/mca/filterfw/java/android/filterfw/core/
StopWatchMap.java 51 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/media/tests/MediaFrameworkTest/src/com/android/mediaframeworktest/unit/
MediaRecorderStopStateUnitTest.java 27 * MediaRecorder.stop() method can be called.
35 * 1. It is valid to call stop() in the following states:
37 * 2. It is invalid to call stop() in the following states:
66 recorder.stop();
76 return "stop()";
  /frameworks/base/packages/SystemUI/src/com/android/systemui/
DessertCaseDream.java 52 mView.stop();
  /frameworks/base/tests/AccessoryDisplay/common/src/com/android/accessorydisplay/common/
Service.java 64 public void stop() { method in class:Service
  /frameworks/opt/datetimepicker/src/com/android/datetimepicker/
HapticFeedbackController.java 55 public void stop() { method in class:HapticFeedbackController
  /frameworks/rs/tests/latency/
latency.cpp 75 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);
  /packages/apps/Stk/src/com/android/stk/
TonePlayer.java 60 public void stop() { method in class:TonePlayer
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/i686-linux/include/c++/4.4.3/parallel/
search.h 129 difference_type start = splitters[iam], stop = splitters[iam + 1]; local
134 while (start <= stop && !found_pattern)
  /sdk/eclipse/plugins/com.android.ide.eclipse.monitor/src/com/android/ide/eclipse/monitor/
MonitorPlugin.java 41 public void stop(BundleContext context) throws Exception { method in class:MonitorPlugin
43 super.stop(context);
  /sdk/eclipse/plugins/com.android.ide.eclipse.ndk/src/com/android/ide/eclipse/ndk/internal/
Activator.java 48 public void stop(BundleContext context) throws Exception { method in class:Activator
50 super.stop(context);
  /frameworks/base/media/tests/EffectsTest/src/com/android/effectstest/
SimplePlayer.java 84 ImageButton stop = (ImageButton) stopButton; local
88 stop.setOnClickListener(this);
102 stop(); method
159 public void stop() { method in class:SimplePlayer
161 mMediaPlayer.stop();
  /frameworks/base/core/java/android/speech/tts/
BlockingAudioTrack.java 58 * {@link AudioTrack#stop()} to send pending buffers to the mixer, and slightly
70 // Need to be seen by stop() which can be called from another thread. mAudioTrack will be
108 public void stop() { method in class:BlockingAudioTrack
111 mAudioTrack.stop();
142 // For "small" audio tracks, we have to stop() them to make them mixable,
155 track.stop();
249 // In this case we would have called AudioTrack#stop() to flush
  /frameworks/base/tests/AccessoryDisplay/source/src/com/android/accessorydisplay/source/
DisplaySourceService.java 74 public void stop() { method in class:DisplaySourceService
75 super.stop();
214 codec.stop();
  /packages/apps/SoundRecorder/src/com/android/soundrecorder/
Recorder.java 123 stop(); method
139 stop(); method
147 stop(); method
203 mRecorder.stop();
212 stop(); method
239 mPlayer.stop();
245 public void stop() { method in class:Recorder
251 stop(); method
257 stop(); method
  /packages/wallpapers/MusicVisualization/src/com/android/musicvis/
GenericWaveRS.java 198 public void stop() { method in class:GenericWaveRS
199 super.stop();
202 mAudioCapture.stop();
  /packages/wallpapers/MusicVisualization/src/com/android/musicvis/vis4/
Visualization4RS.java 182 public void stop() { method in class:Visualization4RS
183 super.stop();
186 mAudioCapture.stop();
  /cts/libs/util/src/android/cts/util/
WatchDog.java 55 /** stop watch-dog */
56 public void stop() { method in class:WatchDog
57 Log.i(TAG, "stop");
74 if (!mStopRequested) { // stop requested, but rendering still on-going
  /cts/tests/tests/permission/src/android/permission/cts/
NoWakeLockPermissionTest.java 77 mediaPlayer.stop();
  /development/cmds/monkey/src/com/android/commands/monkey/
MonkeyNetworkMonitor.java 41 private long mElapsedTime = 0; // amount of time spent between start() and stop()
96 public void stop() { method in class:MonkeyNetworkMonitor
  /development/ide/xcode/ports/
SkBitmap_Mac.cpp 17 uint32_t* stop = dst + (bm.getSize() >> 2);
19 while (dst < stop) {
28 const uint16_t* stop = src + bm.width(); local
29 while (src < stop) {
42 const uint16_t* stop = src + count; local
44 while (src < stop)
  /development/samples/KeyChainDemo/src/com/example/android/keychain/
SecureWebServerService.java 49 * Stop the SSL web server and remove the on-going notification
54 sws.stop();
67 * Create an on-going notification. It will stop the server when the user

Completed in 922 milliseconds

1 2 3 4 56 7 8 91011>>