Searched defs:stop (Results 1 - 14 of 14) sorted by last modified time

/system/vold/
H A DNetlinkHandler.cpp41 int NetlinkHandler::stop() { function in class:NetlinkHandler
H A DNetlinkManager.cpp95 int NetlinkManager::stop() { function in class:NetlinkManager
98 if (mHandler->stop()) {
99 SLOGE("Unable to stop NetlinkHandler: %s", strerror(errno));
H A DVolumeManager.cpp272 int VolumeManager::stop() { function in class:VolumeManager
/system/netd/server/
H A DMDnsSdListener.cpp133 void MDnsSdListener::Handler::stop(SocketClient *cli, int argc, char **argv, const char *str) { function in class:MDnsSdListener::Handler
144 if (DBG) ALOGE("%s stop used unknown requestId %d", str, requestId);
429 } else if (strcmp(cmd, "stop-discover") == 0) {
430 stop(cli, argc, argv, "discover");
458 } else if (strcmp(cmd, "stop-register") == 0) {
459 stop(cli, argc, argv, "register");
472 } else if (strcmp(cmd, "stop-resolve") == 0) {
473 stop(cli, argc, argv, "resolve");
480 } else if (strcmp(cmd, "stop-service") == 0) {
495 } else if (strcmp(cmd, "stop
[all...]
H A DNetlinkHandler.cpp50 int NetlinkHandler::stop() { function in class:NetlinkHandler
H A DNetlinkManager.cpp158 int NetlinkManager::stop() { function in class:NetlinkManager
161 if (mUeventHandler->stop()) {
162 ALOGE("Unable to stop uevent NetlinkHandler: %s", strerror(errno));
172 if (mRouteHandler->stop()) {
173 ALOGE("Unable to stop route NetlinkHandler: %s", strerror(errno));
184 if (mQuotaHandler->stop()) {
185 ALOGE("Unable to stop quota NetlinkHandler: %s", strerror(errno));
197 if (mStrictHandler->stop()) {
198 ALOGE("Unable to stop strict NetlinkHandler: %s", strerror(errno));
/system/netd/server/binder/android/net/
H A DUidRange.cpp35 UidRange::UidRange(int32_t start, int32_t stop) { argument
36 ALOG_ASSERT(start <= stop, "start UID must be less than or equal to stop UID");
38 mStop = stop;
72 ALOG_ASSERT(uid <= mStop, "start UID must be less than or equal to stop UID");
79 ALOG_ASSERT(uid <= mStop, "stop UID must be greater than or equal to start UID");
/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/core/init/
H A Dbootchart.cpp46 #define LOG_STOPFILE LOG_ROOT"/stop"
132 const char* full_name = cmdline.c_str(); // So we stop at the first NUL.
224 // Stop if /data/bootchart/stop contains 1.
225 std::string stop; local
226 if (android::base::ReadFileToString(LOG_STOPFILE, &stop) && stop == "1") {
/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/bt/bta/av/
H A Dbta_av_aact.c1530 /* stop stream if started */
2091 p_scb->p_cos->stop(p_scb->hndl, p_scb->codec_type);
2158 tBTA_AV_API_STOP stop; local
2186 stop.flush = FALSE;
2187 stop.suspend = TRUE;
2188 bta_av_str_stopped(p_scb, (tBTA_AV_DATA *)&stop);
2327 tBTA_AV_API_STOP stop; local
2483 p_scb->p_cos->stop(p_scb->hndl, p_scb->codec_type);
2485 stop.flush = FALSE;
2486 stop
[all...]
H A Dbta_av_int.h194 tBTA_AV_CO_STOP stop; member in struct:__anon36
H A Dbta_av_main.c995 tBTA_AV_API_STOP stop; local
1014 stop.flush = FALSE;
1015 stop.suspend = TRUE;
1016 bta_av_ssm_execute(p_scb, BTA_AV_AP_STOP_EVT, (tBTA_AV_DATA *)&stop);
/system/bt/vendor_libs/linux/
H A Dbt_vendor_linux.c129 static int bt_vendor_hw_cfg(int stop) argument
134 if (stop) {
135 if (osi_property_set("bluetooth.hwcfg", "stop") < 0) {
136 LOG_ERROR(LOG_TAG, "%s cannot stop btcfg service via prop", __func__);

Completed in 225 milliseconds