Searched refs:start (Results 1 - 25 of 109) sorted by relevance

12345

/system/core/include/sysutils/
H A DServiceManager.h25 int start(const char *name);
/system/core/nexus/
H A DOpenVpnController.cpp43 int OpenVpnController::start() { function in class:OpenVpnController
44 return VpnController::start();
61 if (mServiceManager->start(svc))
H A DOpenVpnController.h34 int start();
H A DWifiScanner.h38 int start(bool active);
H A DWifiStatusPoller.h35 int start();
H A DDhcpClient.h50 int start(Controller *c);
H A DController.h51 virtual int start();
/system/core/mkbootimg/
H A Dbootimg.h84 unsigned start; /* starting block number */
/system/netd/
H A DNetlinkHandler.h30 int start(void);
H A DNetlinkManager.h37 int start();
H A DNetlinkManager.cpp50 int NetlinkManager::start() { function in class:NetlinkManager
82 if (mHandler->start()) {
83 LOGE("Unable to start NetlinkHandler: %s", strerror(errno));
/system/vold/
H A DNetlinkHandler.h28 int start(void);
H A DNetlinkManager.h37 int start();
H A DNetlinkManager.cpp50 int NetlinkManager::start() { function in class:NetlinkManager
82 if (mHandler->start()) {
83 SLOGE("Unable to start NetlinkHandler: %s", strerror(errno));
H A DNetlinkHandler.cpp36 int NetlinkHandler::start() { function in class:NetlinkHandler
/system/core/debuggerd/
H A Dutility.c61 if((pc >= mi->start) && (pc < mi->end)){
73 if((pc >= mi->start) && (pc < mi->end)){
76 *rel_pc = pc - mi->start;
H A Dutility.h32 unsigned start; member in struct:mapinfo
/system/core/fastboot/
H A Dengine.c78 double start; member in struct:Action
90 fprintf(stderr,"OKAY [%7.3fs]\n", (split - a->start));
91 a->start = split;
117 a->start = -1;
185 fprintf(stderr,"OKAY [%7.3fs]\n", (split - a->start));
186 a->start = split;
283 double start = -1; local
285 a->start = now();
286 if (start < 0) start
[all...]
/system/core/sh/
H A Dnodes.c.pat122 struct nodelist *start;
125 lpp = &start;
135 return start;
H A Dexpand.c82 int begoff; /* offset of start of region */
343 * Expand arithmetic expression. Backup to start of expression,
349 char *p, *start; local
362 * scan backwards looking for the start of arithmetic. If the
372 start = stackblock();
374 while (*p != CTLARI && p >= start)
378 if (p > start && *(p-1) == CTLESC)
379 for (p = start; *p != CTLARI; p++)
387 begoff = p - start;
398 recordregion(begoff, p - 1 - start,
913 recordregion(int start, int end, int inquotes) argument
948 char *start; local
1127 char *start; local
[all...]
/system/extras/tests/sdcard/
H A Dsysutil.cpp73 // @param start Buffer where the data should be written to.
77 int readStringFromFile(const char *filename, char *const start, size_t size, bool must_exist=true) argument
79 if (NULL == start || size == 0)
83 char *end = start;
140 return end - start;
146 int writeStringToFile(const char *filename, const char *start, bool must_exist=true) argument
160 const size_t len = strlen(start);
167 ssize_t s = write(fd, start, size);
179 start += s;
446 char *start local
[all...]
H A Dsdcard_perf_test.cpp290 testCase->openTimer()->start();
318 testCase->readTimer()->start();
395 testCase->testTimer()->start();
416 testCase->openTimer()->start();
429 testCase->truncateTimer()->start();
451 testCase->writeTimer()->start();
469 testCase->syncTimer()->start();
475 testCase->syncTimer()->start();
494 testCase->testTimer()->start();
530 testCase->testTimer()->start();
[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
65 // watch.start();
77 // Time of the snapshot and its nature (start of the interval or end of it).
88 // measured (1 sample == 1 start + 1 stop). Used
101 void start();
134 size_t mNum; // # of intervals == # of start() calls.
/system/core/include/cutils/
H A Dmspace.h114 mspace. The memory between start and end are guaranteed not to
122 void(*handler)(void *start, void *end, void *arg), void *harg);
/system/core/libsysutils/src/
H A DServiceManager.cpp12 int ServiceManager::start(const char *name) { function in class:ServiceManager
19 property_set("ctl.start", name);
28 SLOGW("Timed out waiting for service '%s' to start", name);

Completed in 147 milliseconds

12345