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

/system/core/libsysutils/src/
H A DServiceManager.cpp20 * - 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/core/nexus/
H A DDhcpClient.cpp102 mServiceManager->stop("dhcpcd");
114 int DhcpClient::stop() { function in class:DhcpClient
128 if (mServiceManager->stop("dhcpcd")) {
129 LOGW("Failed to stop DHCP service (%s)", strerror(errno));
H A DOpenVpnController.cpp47 int OpenVpnController::stop() { function in class:OpenVpnController
48 return VpnController::stop();
68 if (mServiceManager->stop("openvpn"))
H A DWifiScanner.cpp57 int WifiScanner::stop() { function in class:WifiScanner
H A DWifiStatusPoller.cpp49 int WifiStatusPoller::stop() { function in class:WifiStatusPoller
H A DVpnController.cpp44 int VpnController::stop() { function in class:VpnController
H A DController.cpp57 int Controller::stop() { function in class:Controller
H A DSupplicant.cpp89 int Supplicant::stop() { function in class:Supplicant
92 LOGW("Unable to stop supplicant listener (%s)", strerror(errno));
96 if (mServiceManager->stop(SUPPLICANT_SERVICE_NAME)) {
271 stop();
356 LOGW("Failed to stop driver (%s)", strerror(errno));
H A DWifiController.cpp100 int WifiController::stop() { function in class:WifiController
271 if (mSupplicant->stop()) {
272 LOGE("Supplicant stop failed (%s)", strerror(errno));
552 mStatusPoller->stop();
/system/vold/
H A DNetlinkHandler.cpp41 int NetlinkHandler::stop() { function in class:NetlinkHandler
H A DNetlinkManager.cpp89 int NetlinkManager::stop() { function in class:NetlinkManager
90 if (mHandler->stop()) {
91 SLOGE("Unable to stop NetlinkHandler: %s", strerror(errno));
H A DVolumeManager.cpp117 int VolumeManager::stop() { function in class:VolumeManager
/system/media/mca/filterfw/java/android/filterfw/core/
H A DStopWatchMap.java51 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();
H A DGraphRunner.java34 * to stop(), RESULT_BLOCKED if no filters could run due to lack
90 public abstract void stop(); method in class:GraphRunner
H A DAsyncRunner.java167 * completes running a graph, whether the completion is due to a stop() call
210 * been completed. Calling stop will close the filter graph. */
212 synchronized public void stop() { method in class:AsyncRunner
H A DSyncRunner.java149 public void stop() { method in class:SyncRunner
213 mTimer.stop(filter.getName());
/system/netd/
H A DNetlinkManager.cpp117 int NetlinkManager::stop() { function in class:NetlinkManager
120 if (mUeventHandler->stop()) {
121 LOGE("Unable to stop uevent NetlinkHandler: %s", strerror(errno));
131 if (mRouteHandler->stop()) {
132 LOGE("Unable to stop route NetlinkHandler: %s", strerror(errno));
143 if (mQuotaHandler->stop()) {
144 LOGE("Unable to stop quota NetlinkHandler: %s", strerror(errno));
H A DNetlinkHandler.cpp44 int NetlinkHandler::stop() { function in class:NetlinkHandler
/system/extras/tests/sdcard/
H A Dstopwatch.cpp92 void StopWatch::stop() function in class:android_test::StopWatch
116 stop();
146 // reallocate the measurement buffer (e.g start and stop called more
162 // stop pair. The diff is accumulated in mDuration and inserted in
170 for (size_t i = 0; i < mDataLen; i += 2) // even: start odd: stop
/system/media/wilhelm/src/android/
H A DAudioTrackProxy.h33 void stop() function in class:android::AudioTrackProxy
34 { mRaw->stop(); }
H A Dandroid_GenericPlayer.cpp83 mLooper->stop();
156 void GenericPlayer::stop() { function in class:android::GenericPlayer
157 SL_LOGD("GenericPlayer::stop()");
160 // after a stop, playback should resume from the start.
/system/media/wilhelm/src/android/util/
H A DAacAdtsExtractor.cpp224 stop();
242 status_t AacAdtsSource::stop() { function in class:android::AacAdtsSource
/system/core/adb/
H A Dsysdeps_win32.c1290 void (*stop) ( EventHook hook ); member in struct:EventHookRec_
1317 hook->stop = NULL;
1397 /* this should update start/stop/check/peek */
1734 if (hook->stop)
1735 hook->stop( hook );
2075 hook->stop = _event_socket_stop;

Completed in 323 milliseconds