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

1234

/system/core/include/sysutils/
H A DServiceManager.h25 int start(const char *name);
/system/extras/fatblock/
H A Dfs.c29 offset_t start, offset_t len, int type)
34 extent->start = start;
42 struct extent *fs_find_extent(struct fs *fs, offset_t start, offset_t len, argument
54 end = start + len;
58 e_start = e->start;
62 if (start >= e_end)
68 if (e_start <= start) {
70 e_rel_start = start - e_start;
74 rel_len = e_end - start;
28 fs_add_extent(struct fs *fs, struct extent *extent, offset_t start, offset_t len, int type) argument
115 cluster_t clusters_needed, start; local
[all...]
H A Dfatblock.h36 offset_t start; member in struct:extent
68 int fs_read(struct fs *fs, char *buf, offset_t start, offset_t len);
/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);
/system/core/mkbootimg/
H A Dbootimg.h84 unsigned start; /* starting block number */
/system/vold/
H A DNetlinkHandler.h28 int start(void);
H A DNetlinkManager.h37 int start();
H A DNetlinkHandler.cpp37 int NetlinkHandler::start() { function in class:NetlinkHandler
H A DNetlinkManager.cpp50 int NetlinkManager::start() { function in class:NetlinkManager
82 if (mHandler->start()) {
83 SLOGE("Unable to start NetlinkHandler: %s", strerror(errno));
/system/netd/
H A DNetlinkHandler.h30 int start(void);
H A DNetlinkManager.h42 int start();
H A DDnsProxyListener.h52 void start();
84 void start();
/system/core/debuggerd/
H A Dutility.c62 if((pc >= mi->start) && (pc < mi->end)){
75 if((pc >= mi->start) && (pc < mi->end)){
78 *rel_pc -= mi->start;
/system/media/mca/filterfw/java/android/filterfw/core/
H A DStopWatchMap.java43 public void start() { method in class:StopWatch
46 "Calling start with StopWatch already running");
80 public void start(String stopWatchName) { method in class:StopWatchMap
87 mStopWatches.get(stopWatchName).start();
/system/core/fastboot/
H A Dengine.c79 double start; member in struct:Action
91 fprintf(stderr,"OKAY [%7.3fs]\n", (split - a->start));
92 a->start = split;
124 a->start = -1;
191 cur_product, a->prod, (split - a->start));
192 a->start = split;
202 fprintf(stderr,"OKAY [%7.3fs]\n", (split - a->start));
203 a->start = split;
321 double start = -1; local
323 a->start
[all...]
/system/extras/showmap/
H A Dshowmap.c16 unsigned start; member in struct:mapinfo
41 unsigned long start; local
47 if (sscanf(line, "%lx-%lx %*s %*x %*x:%*x %*d%n", &start, &end, &name_pos) != 2) {
59 if ((start >= 0x10000000) && (start < 0x40000000)) {
61 } else if (prev && start == prev->end && is_library(prev->name)) {
79 info->start = start;
118 return a->start < b->start
[all...]
/system/core/sh/
H A Dnodes.c.pat122 struct nodelist *start;
125 lpp = &start;
135 return start;
/system/extras/tests/lib/testUtil/
H A DtestUtil.c265 struct timespec start, current, delta; local
269 clock_gettime(CLOCK_MONOTONIC, &start);
276 delta = tsDelta(&start, &current);
291 struct timespec start, current, delta; local
294 clock_gettime(CLOCK_MONOTONIC, &start);
301 delta = tsDelta(&start, &current);
324 const unsigned char *ptr = buf, *start = buf; local
329 if (((ptr - start) % bytesPerLine) == 0) {
336 (long long) (ptr - start) + xDumpOffset);
/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...]
/system/media/wilhelm/src/android/
H A DAudioTrackProxy.h35 void start() function in class:android::AudioTrackProxy
36 { mRaw->start(); }
/system/core/libnl_2/
H A Dattr.c77 struct nlattr *start = (struct nlattr *)nlmsg_tail(msg->nm_nlh); local
84 return start;
88 int nla_nest_end(struct nl_msg *msg, struct nlattr *start) argument
91 start->nla_len = (unsigned char *)nlmsg_tail(nlmsg_hdr(msg)) -
92 (unsigned char *)start;

Completed in 445 milliseconds

1234