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

1234

/system/core/include/sysutils/
H A DServiceManager.h25 int start(const char *name);
/system/core/libcorkscrew/arch-x86/
H A Dptrace-x86.c30 if (try_get_word_ptrace(pid, mi->start + offsetof(Elf32_Ehdr, e_phoff), &elf_phoff)
31 && try_get_word_ptrace(pid, mi->start + offsetof(Elf32_Ehdr, e_ehsize),
33 && try_get_word_ptrace(pid, mi->start + offsetof(Elf32_Ehdr, e_phnum),
38 uintptr_t elf_phdr = mi->start + elf_phoff + i * elf_phentsize;
49 *eh_frame_hdr = mi->start + elf_phdr_offset;
50 ALOGV("Parsed .eh_frame_hdr info for %s: start=0x%08x", mi->name, *eh_frame_hdr);
/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/include/corkscrew/
H A Dsymbol_table.h28 uintptr_t start; member in struct:__anon36
/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/core/libcorkscrew/arch-arm/
H A Dptrace-arm.c34 if (try_get_word_ptrace(pid, mi->start + offsetof(Elf32_Ehdr, e_phoff), &elf_phoff)
35 && try_get_word_ptrace(pid, mi->start + offsetof(Elf32_Ehdr, e_ehsize),
37 && try_get_word_ptrace(pid, mi->start + offsetof(Elf32_Ehdr, e_phnum),
42 uintptr_t elf_phdr = mi->start + elf_phoff + i * elf_phentsize;
56 *out_exidx_start = mi->start + elf_phdr_offset;
58 ALOGV("Parsed EXIDX header info for %s: start=0x%08x, size=%d", mi->name,
/system/core/libcutils/
H A Dtrace.c63 char* start = value; local
67 while (start != NULL) {
68 char* end = strchr(start, ',');
75 if (strcmp(cmdline, start) == 0) {
79 start = end;
/system/core/libcorkscrew/
H A Dmap_info.c39 unsigned long int start; local
44 &start, &end, permissions, &name_pos) != 3) {
53 mi->start = start;
61 ALOGV("Parsed map: start=0x%08x, end=0x%08x, "
63 mi->start, mi->end,
98 unsigned long int start; local
102 if (sscanf(line, "%lx-%lx %4s %*x %*x:%*x %*d%n", &start, &end,
118 mi->start = start;
[all...]
H A Dsymbol_table.c48 if (asym->start > bsym->start) return 1;
49 if (asym->start < bsym->start) return -1;
57 if (addr < symbol->start) return -1;
171 table->symbols[symbol_index].start = dynsyms[i].st_value;
175 table->symbols[symbol_index].start, table->symbols[symbol_index].end);
189 table->symbols[symbol_index].start = syms[i].st_value;
193 table->symbols[symbol_index].start, table->symbols[symbol_index].end);
/system/core/libutils/
H A DLinearAllocator.cpp97 void* start() { function in class:android::LinearAllocator::Page
102 return (void*) (((size_t)start()) + pageSize);
132 void* LinearAllocator::start(Page* p) { function in class:android::LinearAllocator
160 mNext = start(mCurrentPage);
174 return start(page);
186 if (ptr >= start(mCurrentPage) && ptr < end(mCurrentPage)
/system/core/sh/
H A Dnodes.c.pat122 struct nodelist *start;
125 lpp = &start;
135 return start;
/system/media/camera/tests/
H A Dcamera_metadata_tests_fake_vendor.h158 unsigned int start, end; local
163 start = fakevendor_section_bounds[section][0];
165 count += end - start;
172 unsigned int start, end, tag; local
176 start = fakevendor_section_bounds[section][0];
178 for (tag = start; tag < end; tag++) {
/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/netd/
H A DNetlinkHandler.h30 int start(void);
H A DNetlinkManager.h43 int start();
/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 (prev && start == prev->end && is_library(prev->name)) {
77 info->start = start;
116 return a->start < b->start
117 || (a->start == b->start
[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...]
/system/extras/tests/ext4/
H A Drand_emmc_perf.c39 struct timeval start; member in struct:stats
73 timersub(&stats_buf[i].end, &stats_buf[i].start, &t);
100 timersub(&stats_buf[i].end, &stats_buf[i].start, &t); /* Xi */
124 gettimeofday(&stats_buf[i].start, NULL);
148 struct timeval start, end, res; local
154 gettimeofday(&start, NULL);
170 timersub(&end, &start, &res);
177 timersub(&end, &start, &res);
/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;
/system/core/libsparse/
H A Dbacked_block.c145 struct backed_block_list *to, struct backed_block *start,
150 if (start == NULL) {
151 start = from->data_blocks;
155 for (end = start; end && end->next; end = end->next)
159 if (start == NULL || end == NULL) {
165 if (from->data_blocks == start) {
169 if (bb->next == start) {
177 to->data_blocks = start;
181 if (!bb->next || bb->next->block > start->block) {
183 bb->next = start;
144 backed_block_list_move(struct backed_block_list *from, struct backed_block_list *to, struct backed_block *start, struct backed_block *end) argument
[all...]

Completed in 320 milliseconds

1234