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

/system/vold/
H A DNetlinkHandler.cpp39 int NetlinkHandler::stop() { function in class:NetlinkHandler
H A DNetlinkManager.cpp97 int NetlinkManager::stop() { function in class:NetlinkManager
100 if (mHandler->stop()) {
101 PLOG(ERROR) << "Unable to stop NetlinkHandler";
H A DIdleMaint.cpp199 bool stop = false, aborted = false; local
202 while (!stop && !aborted) {
203 stop = true;
211 stop = false;
216 if (stop) break;
H A DVolumeManager.cpp169 int VolumeManager::stop() { function in class:VolumeManager
/system/core/libsysutils/src/
H A DServiceManager.cpp35 // 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/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(mStart <= uid, "stop UID must be greater than or equal to start UID");
/system/core/base/
H A Dchrono_utils_test.cpp60 auto stop = boot_clock::now(); local
63 auto expected = std::chrono::duration_cast<std::chrono::milliseconds>(stop - start);
/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/libvintf/
H A DKernelConfigParser.cpp117 const char* stop = buf + len; local
119 while (end < stop) {
/system/netd/server/
H A DNetlinkManager.cpp163 int NetlinkManager::stop() { function in class:android::net::NetlinkManager
166 if (mUeventHandler->stop()) {
167 ALOGE("Unable to stop uevent NetlinkHandler: %s", strerror(errno));
177 if (mRouteHandler->stop()) {
178 ALOGE("Unable to stop route NetlinkHandler: %s", strerror(errno));
189 if (mQuotaHandler->stop()) {
190 ALOGE("Unable to stop quota NetlinkHandler: %s", strerror(errno));
202 if (mStrictHandler->stop()) {
203 ALOGE("Unable to stop strict NetlinkHandler: %s", strerror(errno));
H A DIptablesRestoreController.cpp72 void stop() { function in class:IptablesProcess
222 existingProcess->stop();
330 process->stop();
340 process->stop();
H A DNetlinkHandler.cpp54 int NetlinkHandler::stop() { function in class:android::net::NetlinkHandler
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...]
/system/tpm/trunks/
H A Dtpm_state_test.cc77 uint32_t stop = PT_GROUP * (group + 1); local
78 for (uint32_t i = property; i < stop; ++i) {
95 uint32_t stop = TPM_ALG_LAST + 1; local
96 for (uint32_t i = property; i < stop; ++i) {
/system/chre/core/
H A Devent_loop.cc283 void EventLoop::stop() { function in class:chre::EventLoop
/system/bt/bta/av/
H A Dbta_av_main.cc984 tBTA_AV_API_STOP stop; local
998 stop.flush = false;
999 stop.suspend = true;
1000 stop.reconfig_stop = false;
1001 bta_av_ssm_execute(p_scb, BTA_AV_AP_STOP_EVT, (tBTA_AV_DATA*)&stop);
H A Dbta_av_aact.cc1354 /* stop stream if started */
1943 p_scb->p_cos->stop(p_scb->hndl, p_scb->PeerAddress());
2012 tBTA_AV_API_STOP stop; local
2048 stop.flush = false;
2049 stop.suspend = true;
2050 stop.reconfig_stop = false;
2051 bta_av_str_stopped(p_scb, (tBTA_AV_DATA*)&stop);
2070 stop.flush = false;
2071 stop.suspend = false;
2072 stop
2394 tBTA_AV_API_STOP stop; local
[all...]
H A Dbta_av_int.h206 tBTA_AV_CO_STOP stop; member in struct:__anon36
/system/core/logcat/
H A Dlogcat.cpp98 volatile std::atomic_bool stop; // quick exit flag member in struct:android_logcat_context_internal
466 " regex filter but still stop at number of matches.\n"
607 context->stop = true;
628 context->stop = true;
698 // We count on the basename file to be the definitive end, so stop here.
1612 if (context->stop) goto close;
1620 while (!context->stop &&
1657 if (context->stop) break;
1705 context->stop = false;
1739 context->stop
[all...]
/system/nfc/src/nfc/include/
H A Dnfc_api.h733 tNFC_STOP_DEVT stop; member in union:__anon2498
1096 ** Description This function is called to stop the discovery process or

Completed in 4419 milliseconds