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

1 2 34 5 6 7 8 91011>>

  /frameworks/base/core/java/android/speech/tts/
SilencePlaybackQueueItem.java 42 void stop(boolean isError) { method in class:SilencePlaybackQueueItem
AudioPlaybackQueueItem.java 94 mPlayer.stop();
102 void stop(boolean isError) { method in class:AudioPlaybackQueueItem
  /frameworks/base/media/tests/MediaFrameworkTest/src/com/android/mediaframeworktest/unit/
MediaPlayerStopStateUnitTest.java 25 * 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();
  /frameworks/base/packages/Keyguard/src/com/android/keyguard/
BiometricSensorUnlock.java 33 * unlock completes, {@link BiometricSensorUnlock#stop} has been called, or an error has
34 * forced the biometric unlock to stop.
55 public boolean stop(); method in interface:BiometricSensorUnlock
  /frameworks/base/services/input/
InputManager.cpp 45 stop();
71 status_t InputManager::stop() { function in class:android::InputManager
74 ALOGW("Could not stop InputReader thread due to error %d.", result);
79 ALOGW("Could not stop InputDispatcher thread due to error %d.", result);
  /frameworks/base/services/java/com/android/server/location/
CountryDetectorBase.java 62 * Stop detecting the country. The detector should release all system services and be ready to
65 public abstract void stop(); method in class:CountryDetectorBase
  /ndk/tests/device/test-gnustl-full/unit/cppunit/
cppunit_timer.h 49 void stop() { function in class:Timer
51 LARGE_INTEGER stop; local
52 QueryPerformanceCounter(&stop);
55 m_stop.HighPart += (stop.HighPart - m_restart.HighPart);
56 if (stop.LowPart < m_restart.LowPart) {
57 if (m_restart.LowPart - stop.LowPart > m_stop.LowPart) {
60 m_stop.LowPart -= m_restart.LowPart - stop.LowPart;
63 if (stop.LowPart - m_restart.LowPart > 0xFFFFFFFF - m_stop.LowPart) {
66 m_stop.LowPart += stop.LowPart - m_restart.LowPart;
70 m_stop = stop;
    [all...]
  /ndk/tests/device/test-stlport/unit/cppunit/
cppunit_timer.h 49 void stop() { function in class:Timer
51 LARGE_INTEGER stop; local
52 QueryPerformanceCounter(&stop);
55 m_stop.HighPart += (stop.HighPart - m_restart.HighPart);
56 if (stop.LowPart < m_restart.LowPart) {
57 if (m_restart.LowPart - stop.LowPart > m_stop.LowPart) {
60 m_stop.LowPart -= m_restart.LowPart - stop.LowPart;
63 if (stop.LowPart - m_restart.LowPart > 0xFFFFFFFF - m_stop.LowPart) {
66 m_stop.LowPart += stop.LowPart - m_restart.LowPart;
70 m_stop = stop;
    [all...]
  /packages/apps/Bluetooth/src/com/android/bluetooth/opp/
BluetoothOppObexSession.java 51 * should be a consequence of session.stop() For inbounds share, it should
71 void stop(); method in interface:BluetoothOppObexSession
  /packages/apps/Email/src/com/android/email/
StopWatch.java 34 * s.stop();
60 public void stop() { method in class:StopWatch
62 LogUtils.w(Logging.LOG_TAG, "StopWatch(" + mName + ") stop: "
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/i686-linux/include/c++/4.4.3/parallel/
par_loop.h 102 stop = equally_split_point(length, num_threads, iam + 1); local
104 if (start < stop)
113 for (; start < stop; ++start)
  /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()
  /sdk/eclipse/plugins/com.android.ide.eclipse.traceview/src/com/android/ide/eclipse/traceview/
TraceviewPlugin.java 50 * @see org.eclipse.ui.plugin.AbstractUIPlugin#stop(org.osgi.framework.BundleContext)
53 public void stop(BundleContext context) throws Exception { method in class:TraceviewPlugin
55 super.stop(context);
  /system/core/libsysutils/src/
ServiceManager.cpp 20 * - Stopping the service is done by writing its name to "ctl.stop"
26 * If strlen(<name>) > (PROPERTY_KEY_MAX-1)-9, then you can start/stop
27 * the service by writing to ctl.start/stop, but you won't be able to
33 /* The maximum amount of time to wait for a service to start or stop,
70 int ServiceManager::stop(const char *name) { function in class:ServiceManager
81 property_set("ctl.stop", name);
92 SLOGW("Timed out waiting for service '%s' to stop", name);
  /system/netd/
NetlinkManager.cpp 121 int NetlinkManager::stop() { function in class:NetlinkManager
124 if (mUeventHandler->stop()) {
125 ALOGE("Unable to stop uevent NetlinkHandler: %s", strerror(errno));
135 if (mRouteHandler->stop()) {
136 ALOGE("Unable to stop route NetlinkHandler: %s", strerror(errno));
147 if (mQuotaHandler->stop()) {
148 ALOGE("Unable to stop quota NetlinkHandler: %s", strerror(errno));
  /system/vold/
NetlinkManager.cpp 94 int NetlinkManager::stop() { function in class:NetlinkManager
97 if (mHandler->stop()) {
98 SLOGE("Unable to stop NetlinkHandler: %s", strerror(errno));
  /libcore/libart/src/main/java/java/lang/
Daemons.java 46 public static void stop() { method in class:Daemons
47 ReferenceQueueDaemon.INSTANCE.stop();
48 FinalizerDaemon.INSTANCE.stop();
49 FinalizerWatchdogDaemon.INSTANCE.stop();
50 HeapTrimmerDaemon.INSTANCE.stop();
51 GCDaemon.INSTANCE.stop();
89 * Waits for the runtime thread to stop. This interrupts the thread
92 public void stop() { method in class:Daemons.Daemon
171 // Take a reference, blocking until one is ready or the thread should stop
235 // Daemon.stop may have interrupted us
    [all...]
  /cts/tests/tests/permission/src/android/permission/cts/
AudioPermissionTest.java 78 mMediaRecorder.stop();
97 plyr.stop();
  /external/chromium_org/tools/perf/metrics/
smoothness.js 46 GpuBenchmarkingRenderingStats.prototype.stop = function() {
56 throw new Error('Stop was not called.');
66 throw new Error('Stop was not called.');
76 throw new Error('Stop was not called.');
110 RafRenderingStats.prototype.stop = function() {
  /external/jmonkeyengine/engine/src/core/com/jme3/cinematic/events/
SoundTrack.java 120 stop(); method
132 audioNode.stop();
144 stop(); method
  /frameworks/support/v7/mediarouter/src/android/support/v7/media/
RegisteredMediaRouteProviderWatcher.java 74 public void stop() { method in class:RegisteredMediaRouteProviderWatcher
81 // Stop all providers.
83 mProviders.get(i).stop();
123 provider.stop();
  /packages/wallpapers/MusicVisualization/src/com/android/musicvis/vis3/
Visualization3RS.java 65 public void stop() { method in class:Visualization3RS
66 super.stop();
  /cts/tests/tests/openglperf/src/android/openglperf/cts/
PlanetsSurfaceView.java 36 mWatchDog.stop();
  /external/chromium/chrome/browser/safe_browsing/
chunk_range.cc 19 ChunkRange::ChunkRange(int start, int stop) : start_(start), stop_(stop) {
23 : start_(rhs.start()), stop_(rhs.stop()) {
60 for (int chunk = range.start(); chunk <= range.stop(); ++chunk) {
79 int stop = start; local
81 stop = atoi(chunk_ranges[1].c_str());
82 if (start == 0 || stop == 0) {
87 ranges->push_back(ChunkRange(start, stop));
105 if ((chunk.stop() >= chunk_number) && (chunk.start() <= chunk_number))
109 if (chunk.stop() < chunk_number
    [all...]

Completed in 299 milliseconds

1 2 34 5 6 7 8 91011>>