HomeSort by relevance Sort by last modified time
    Searched defs:stop (Results 76 - 100 of 2582) sorted by null

1 2 34 5 6 7 8 91011>>

  /frameworks/av/media/libstagefright/
CallbackMediaSource.cpp 31 status_t CallbackMediaSource::stop() { function in class:android::CallbackMediaSource
32 return mSource->stop();
  /frameworks/av/services/oboeservice/
AAudioThread.cpp 88 aaudio_result_t AAudioThread::stop() { function in class:AAudioThread
90 ALOGE("stop() but no thread running");
96 ALOGE("stop() - pthread_join() returned %d %s", err, strerror(err));
  /frameworks/base/core/java/android/speech/tts/
PlaybackQueueItem.java 29 * Stop the playback.
31 * @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
  /frameworks/base/libs/hwui/utils/
Timing.h 28 struct timeval stop; local
29 gettimeofday(&stop, nullptr);
30 long long elapsed = (stop.tv_sec * 1000000) - (mStart.tv_sec * 1000000) +
31 (stop.tv_usec - mStart.tv_usec);
  /frameworks/base/tools/preload2/src/com/android/preload/ui/
NullProgressMonitor.java 38 public void stop() {} method in class:NullProgressMonitor
  /frameworks/opt/net/wifi/service/java/com/android/server/wifi/
DefaultModeManager.java 42 * Stop is not used in default mode.
44 public void stop() { }; method in class:DefaultModeManager
  /hardware/interfaces/automotive/vehicle/2.0/default/impl/vhal_v2_0/
CommBase.h 42 virtual void stop() {} function in class:android::hardware::automotive::vehicle::V2_0::impl::CommBase
  /hardware/interfaces/broadcastradio/common/tests/
WorkerThread_test.cpp 41 atomic<time_point<steady_clock>> stop; local
47 stop = steady_clock::now();
55 auto delta = stop.load() - start;
  /packages/apps/Camera2/src/com/android/camera/stats/profiler/
Profile.java 20 * A profile is the primary mechanism used to start, stop,
41 * Stop the profile.
43 public void stop(); method in interface:Profile
46 * Stop the profile for a given reason.
48 public void stop(String reason); method in interface:Profile
  /packages/apps/DeskClock/src/com/android/deskclock/
RingtonePreviewKlaxon.java 29 public static void stop(Context context) { method in class:RingtonePreviewKlaxon
30 LogUtils.i("RingtonePreviewKlaxon.stop()");
31 getAsyncRingtonePlayer(context).stop();
35 stop(context);
  /packages/services/BuiltInPrintService/jni/include/
ifc_status_monitor.h 55 void (*stop)(const struct ifc_status_monitor_st *this_p); member in struct:ifc_status_monitor_st
  /prebuilts/gdb/darwin-x86/lib/python2.7/hotshot/
__init__.py 23 self.stop = p.stop
38 def stop(self): member in class:Profile
39 """Stop the profiler."""
40 self._prof.stop()
  /prebuilts/gdb/linux-x86/lib/python2.7/hotshot/
__init__.py 23 self.stop = p.stop
38 def stop(self): member in class:Profile
39 """Stop the profiler."""
40 self._prof.stop()
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/hotshot/
__init__.py 23 self.stop = p.stop
38 def stop(self): member in class:Profile
39 """Stop the profiler."""
40 self._prof.stop()
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/hotshot/
__init__.py 23 self.stop = p.stop
38 def stop(self): member in class:Profile
39 """Stop the profiler."""
40 self._prof.stop()
  /system/core/libsysutils/src/
ServiceManager.cpp 35 // and stopping a service is done by writing its name to "ctl.stop". If a
37 // or stop it.
40 /* The maximum amount of time to wait for a service to start or stop,
78 int ServiceManager::stop(const char *name) { function in class:ServiceManager
90 android::base::SetProperty("ctl.stop", name);
101 SLOGW("Timed out waiting for service '%s' to stop", name);
  /system/vold/
NetlinkHandler.cpp 39 int NetlinkHandler::stop() { function in class:NetlinkHandler
  /tools/tradefederation/core/src/com/android/tradefed/device/
ILogcatReceiver.java 28 public void stop(); method in interface:ILogcatReceiver
DeviceMonitorMultiplexer.java 76 public synchronized void stop() { method in class:DeviceMonitorMultiplexer
78 monitor.stop();
  /external/universal-tween-engine/java/applets/src/aurelienribon/utils/swing/
DrawingCanvas.java 29 public void stop() { method in class:DrawingCanvas
30 timer.stop();
  /frameworks/base/packages/PrintRecommendationService/src/com/android/printservice/recommendation/plugin/mdnsFilter/
MDNSFilterPlugin.java 110 public void stop() throws Exception { method in class:MDNSFilterPlugin
111 mMDNSFilteredDiscovery.stop();
  /frameworks/base/packages/PrintRecommendationService/src/com/android/printservice/recommendation/plugin/samsung/
SamsungRecommendationPlugin.java 67 public void stop() throws Exception { method in class:SamsungRecommendationPlugin
68 mMDNSFilteredDiscovery.stop();
  /packages/apps/Car/Messenger/src/com/android/car/messenger/tts/
AndroidTTSEngine.java 41 public void stop() { method in class:AndroidTTSEngine
43 mTextToSpeech.stop();
  /cts/apps/CtsVerifier/src/com/android/cts/verifier/audio/
TrivialRecorder.java 74 public void stop() { method in class:TrivialRecorder
80 stop(); method
99 mAudioRecord.stop();
  /frameworks/base/packages/PrintRecommendationService/src/com/android/printservice/recommendation/
RemotePrintServicePlugin.java 106 * Stop the plugin. From this call on there will not be any more callbacks.
108 public void stop() throws PluginException { method in class:RemotePrintServicePlugin
112 mPlugin.stop();
116 throw new PluginException(mPlugin, "Cannot stop", e);

Completed in 1372 milliseconds

1 2 34 5 6 7 8 91011>>