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

12

/system/core/include/sysutils/
H A DServiceManager.h26 int stop(const char *name);
/system/core/libsysutils/include/sysutils/
H A DServiceManager.h26 int stop(const char *name);
/system/vold/
H A DNetlinkHandler.h29 int stop(void);
H A DNetlinkManager.h38 int stop();
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;
/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");
H A DUidRange.h34 UidRange(int32_t start, int32_t stop);
40 * Setters for UidRange start and stop UIDs.
46 * Getters for UidRange start and stop UIDs.
/system/chre/platform/android/
H A Dinit.cc59 EventLoopManagerSingleton::get()->getEventLoop().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 DNetlinkHandler.h35 int stop(void);
H A DNetlinkManager.h47 int stop();
H A DIptablesRestoreController.cpp72 void stop() { function in class:IptablesProcess
222 existingProcess->stop();
330 process->stop();
340 process->stop();
/system/extras/tests/sdcard/
H A Dsdcard_perf_test.cpp298 testCase->openTimer()->stop();
337 testCase->readTimer()->stop();
409 testCase->testTimer()->stop();
424 testCase->openTimer()->stop();
437 testCase->truncateTimer()->stop();
470 testCase->writeTimer()->stop();
477 testCase->syncTimer()->stop();
483 testCase->syncTimer()->stop();
508 testCase->testTimer()->stop();
555 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/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/libvintf/
H A DKernelConfigParser.cpp117 const char* stop = buf + len; local
119 while (end < stop) {
/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/chre/platform/linux/
H A Dinit.cc51 EventLoopManagerSingleton::get()->getEventLoop().stop();
/system/core/logd/
H A DLogTimes.cpp239 goto stop;
251 goto stop;
279 stop:
/system/chre/core/include/chre/core/
H A Devent_loop.h126 * events to nanoapps. Only returns after stop() is called (from another
135 void stop();
/system/extras/tests/icachetest/
H A Dicache_main.cpp110 profiler.stop();
H A DProfiler.h180 void stop() noexcept {
205 void stop() noexcept { }
/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) {

Completed in 555 milliseconds

12