Searched refs:stop (Results 1 - 25 of 55) sorted by relevance

123

/system/core/include/sysutils/
H A DServiceManager.h26 int stop(const char *name);
/system/core/nexus/
H A DOpenVpnController.cpp47 int OpenVpnController::stop() { function in class:OpenVpnController
48 return VpnController::stop();
68 if (mServiceManager->stop("openvpn"))
H A DOpenVpnController.h35 int stop();
H A DWifiScanner.h39 int stop();
H A DWifiStatusPoller.h36 int stop();
H A DDhcpClient.h51 int stop();
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 DController.h52 virtual int stop();
H A DNetworkManager.cpp80 int irc = (*it)->getController()->stop();
122 mDhcp->stop();
128 mDhcp->stop();
H A DSupplicant.h49 int stop();
H A DWifiScanner.cpp57 int WifiScanner::stop() { function in class:WifiScanner
/system/vold/
H A DNetlinkHandler.h29 int stop(void);
H A DNetlinkManager.h38 int stop();
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));
/system/netd/
H A DNetlinkHandler.h31 int stop(void);
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 DNetlinkManager.h43 int stop();
/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
/system/media/wilhelm/src/android/
H A DAudioTrackProxy.h33 void stop() function in class:android::AudioTrackProxy
34 { mRaw->stop(); }
/system/extras/tests/sdcard/
H A Dsdcard_perf_test.cpp292 testCase->openTimer()->stop();
331 testCase->readTimer()->stop();
403 testCase->testTimer()->stop();
418 testCase->openTimer()->stop();
431 testCase->truncateTimer()->stop();
464 testCase->writeTimer()->stop();
471 testCase->syncTimer()->stop();
477 testCase->syncTimer()->stop();
502 testCase->testTimer()->stop();
549 testCase->testTimer()->stop();
[all...]
H A Dstopwatch.h40 // Once the watch has been created, start and stop can be called to
56 // we collect the raw start and stop time in an array that get
67 // watch.stop();
84 // Create a stop watch. Default capacity == 2 * interval_nb
88 // measured (1 sample == 1 start + 1 stop). Used
102 void stop();
/system/media/mca/samples/CameraEffectsRecordingSample/java/android/media/filterfw/samples/
H A DCameraEffectsRecordingSample.java84 mRunner.stop();
93 mRunner.stop();
/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);

Completed in 693 milliseconds

123