Searched refs:start (Results 1 - 25 of 73) sorted by path

123

/system/core/adb/
H A Dsysdeps.h422 static __inline__ int adb_thread_create( adb_thread_t *pthread, adb_thread_func_t start, void* arg ) argument
429 return pthread_create( pthread, &attr, start, arg );
H A Dsysdeps_win32.c815 * a_start is the pointer where we start reading data
816 * a_end is the pointer where we start writing data, unless it is BUFFER_SIZE,
817 * then you start writing at b_end
1289 int (*start) ( EventHook hook ); member in struct:EventHookRec_
1316 hook->start = NULL;
1397 /* this should update start/stop/check/peek */
1673 if (hook->start && !hook->start(hook)) {
2074 hook->start = _event_socket_start;
2130 hook->start
[all...]
/system/core/cpio/
H A Dmkbootfs.c267 void archive(const char *start, const char *prefix) argument
272 strcpy(in, start);
/system/core/debuggerd/
H A Dtombstone.c235 uint32_t offset = stack_content - (mi->start + symbol->start);
358 if (addr >= map->start && addr < map->end) {
377 _LOG(log, false, " %08x-%08x %s\n", next->start, next->end, next->name);
382 _LOG(log, false, " %08x-%08x %s\n", map->start, map->end, map->name);
387 _LOG(log, false, " %08x-%08x %s\n", prev->start, prev->end, prev->name);
569 * If we filled the buffer, we want to start at "next", which has
570 * the oldest entry. If we didn't, we want to start at zero.
/system/core/fastboot/
H A Dengine.c98 double start; member in struct:Action
186 fprintf(stderr,"OKAY [%7.3fs]\n", (split - a->start));
187 a->start = split;
219 a->start = -1;
473 cur_product, a->prod, (split - a->start));
474 a->start = split;
484 fprintf(stderr,"OKAY [%7.3fs]\n", (split - a->start));
485 a->start = split;
605 double start = -1; local
607 a->start
[all...]
/system/core/include/corkscrew/
H A Dmap_info.h32 uintptr_t start; member in struct:map_info
H A Dsymbol_table.h28 uintptr_t start; member in struct:__anon298
/system/core/include/diskconfig/
H A Ddiskconfig.h66 struct chs start; /* bytes 1-3 */ member in struct:pc_partition
/system/core/include/sysutils/
H A DServiceManager.h25 int start(const char *name);
/system/core/init/
H A Dkeywords.h83 KEYWORD(start, COMMAND, 1, do_start)
/system/core/libcorkscrew/arch-arm/
H A Dbacktrace-arm.c91 /* Get the EXIDX section start and size for the module that contains a
110 uintptr_t start = (uintptr_t)__gnu_Unwind_Find_exidx((_Unwind_Ptr)pc, &count); local
112 return start;
196 pc, mi->name, mi->start, exidx_start, exidx_size, handler, handler_index);
H A Dptrace-arm.c33 if (try_get_word_ptrace(pid, mi->start + offsetof(Elf32_Ehdr, e_phoff), &elf_phoff)
34 && try_get_word_ptrace(pid, mi->start + offsetof(Elf32_Ehdr, e_phnum),
39 uintptr_t elf_phdr = mi->start + elf_phoff + i * elf_phentsize;
53 *out_exidx_start = mi->start + elf_phdr_offset;
55 ALOGV("Parsed EXIDX header info for %s: start=0x%08x, size=%d", mi->name,
/system/core/libcorkscrew/
H A Dbacktrace.c176 // Wait for the other thread to start dumping the stack, or time out.
184 ALOGV("Waiting for thread %d to start dumping the stack...", tid);
187 ALOGV("Timed out waiting for thread %d to start dumping the stack.", tid);
255 symbol->relative_pc = frame->absolute_pc - mi->start;
285 symbol->relative_pc = frame->absolute_pc - mi->start;
291 symbol->relative_symbol_addr = s->start;
H A Dmap_info.c37 unsigned long int start; local
41 if (sscanf(line, "%lx-%lx %4s %*x %*x:%*x %*d%n", &start, &end,
57 mi->start = start;
64 ALOGV("Parsed map: start=0x%08x, end=0x%08x, "
66 mi->start, mi->end, mi->is_readable, mi->is_executable, mi->name);
102 while (mi && !(addr >= mi->start && addr < mi->end)) {
H A Dptrace.c86 if (try_get_word_ptrace(pid, mi->start, &elf_magic) && elf_magic == ELF_MAGIC) {
141 symbol = find_symbol(data->symbol_table, addr - mi->start);
H A Dsymbol_table.c42 if (asym->start > bsym->start) return 1;
43 if (asym->start < bsym->start) return -1;
51 if (addr < symbol->start) return -1;
164 table->symbols[symbol_index].start = dynsyms[i].st_value;
168 table->symbols[symbol_index].start, table->symbols[symbol_index].end);
182 table->symbols[symbol_index].start = syms[i].st_value;
186 table->symbols[symbol_index].start, table->symbols[symbol_index].end);
H A Dtest.c34 uintptr_t offset = frames[i].absolute_pc - symbol->start;
/system/core/libcutils/
H A Dtztime.c996 struct rule start; local
1004 if ((name = getrule(name, &start)) == NULL)
1030 starttime = transtime(janfirst, year, &start,
/system/core/libdiskconfig/
H A Dconfig_mbr.c29 /* start and len are in LBA units */
32 uint32_t start, uint32_t len)
37 memset(&pentry->start, 0xff, sizeof(struct chs));
41 memset(&pentry->start, 0, sizeof(struct chs));
47 pentry->start_lba = start;
137 * ext_lba == The start of the toplevel extended partition (pointed to by the
154 * lba counter since that is where the logical data partition will start */
191 /* The start lba for next partition is an offset from the beginning
31 cfg_pentry(struct pc_partition *pentry, uint8_t status, uint8_t type, uint32_t start, uint32_t len) argument
/system/core/liblog/
H A Dfake_log_device.c479 const char* start = p; local
481 if ((p-start) > 0) {
482 v->iov_base = (void*)start;
483 v->iov_len = p-start;
484 totalLen += p-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;
/system/core/libpixelflinger/arch-mips/
H A Dt32cb16blend.S54 ext $t0,\dreg,\shift+5,6 # start green extraction dst[\shift:10..5]
62 ext $t0,\dreg,\shift,5 # start blue extraction dst[\shift:4..0]
/system/core/libpixelflinger/codeflinger/
H A Ddisassem.c583 int start; local
587 start = -1;
591 if (start != -1) {
597 if (start == loop - 1)
598 di->di_printf("r%d", start);
600 di->di_printf("r%d-r%d", start, loop - 1);
601 start = -1;
605 start = loop;
/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...]
H A Dbacked_block.h61 struct backed_block_list *to, struct backed_block *start,

Completed in 535 milliseconds

123