Searched defs:pc (Results 1 - 10 of 10) sorted by relevance

/system/core/libcorkscrew/
H A Dbacktrace-helper.c24 backtrace_frame_t* add_backtrace_entry(uintptr_t pc, backtrace_frame_t* backtrace, argument
35 frame->absolute_pc = pc;
H A Dbacktrace.c51 uintptr_t pc = _Unwind_GetIP(context); local
52 if (pc) {
57 add_backtrace_entry(rewind_pc_arch(&state->memory, pc), state->backtrace,
214 static void init_backtrace_symbol(backtrace_symbol_t* symbol, uintptr_t pc) { argument
215 symbol->relative_pc = pc;
293 snprintf(buffer, bufferSize, "#%02d pc %08x %.*s (%.*s+%u)",
297 snprintf(buffer, bufferSize, "#%02d pc %08x %.*s (%.*s)",
302 snprintf(buffer, bufferSize, "#%02d pc %08x %.*s",
/system/core/libpixelflinger/codeflinger/
H A DARMAssembler.h43 uint32_t* pc() const;
76 virtual void B(int cc, uint32_t* pc);
77 virtual void BL(int cc, uint32_t* pc);
143 inline branch_target_t() : label(0), pc(0) { }
145 : label(l), pc(p) { }
147 uint32_t* pc; member in struct:android::ARMAssembler::branch_target_t
H A DARMAssemblerProxy.cpp98 void ARMAssemblerProxy::B(int cc, uint32_t* pc) { argument
99 mTarget->B(cc, pc);
101 void ARMAssemblerProxy::BL(int cc, uint32_t* pc) { argument
102 mTarget->BL(cc, pc);
H A DARMAssembler.cpp60 uint32_t* ARMAssembler::pc() const function in class:android::ARMAssembler
86 size_t count = pc()-base();
144 uint32_t* pc = mPC; local
147 mPC = pc;
153 uint32_t* pc = mPC; local
156 mPC = pc;
171 int32_t offset = int32_t(target_pc - (bt.pc+2));
172 *bt.pc |= offset & 0xFFFFFF;
175 mAssembly->resize( int(pc()-base())*4 );
180 ALOGI(format, name, int(pc()
271 B(int cc, uint32_t* pc) argument
277 BL(int cc, uint32_t* pc) argument
[all...]
H A DGGLAssembler.h174 uint32_t* pc() const { return 0; } // XXX function in class:android::GGLAssembler
/system/core/libcorkscrew/arch-x86/
H A Dbacktrace-x86.c76 uintptr_t rewind_pc_arch(const memory_t* memory, uintptr_t pc) { argument
78 return pc;
/system/core/include/private/
H A Dandroid_filesystem_config.h235 struct fs_path_config *pc; local
238 pc = dir ? android_dirs : android_files;
240 for(; pc->prefix; pc++){
241 int len = strlen(pc->prefix);
244 if(!strncmp(pc->prefix, path, len)) break;
248 if (pc->prefix[len -1] == '*') {
249 if(!strncmp(pc->prefix, path, len - 1)) break;
251 if(!strncmp(pc->prefix, path, len)) break;
254 *uid = pc
[all...]
/system/core/libcorkscrew/arch-arm/
H A Dbacktrace-arm.c108 extern _Unwind_Ptr __gnu_Unwind_Find_exidx(_Unwind_Ptr pc, int *pcount);
110 static uintptr_t find_exidx(uintptr_t pc, size_t* out_exidx_size) { argument
112 uintptr_t start = (uintptr_t)__gnu_Unwind_Find_exidx((_Unwind_Ptr)pc, &count);
124 const map_info_t* map_info_list, uintptr_t pc) {
125 if (!pc) {
126 ALOGV("get_exception_handler: pc is zero, no handler");
135 exidx_start = find_exidx(pc, &exidx_size);
137 mi = find_map_info(map_info_list, pc);
163 if (pc < entry_pc) {
175 if (pc >
123 get_exception_handler(const memory_t* memory, const map_info_t* map_info_list, uintptr_t pc) argument
443 try_get_half_word(const memory_t* memory, uint32_t pc, uint16_t* out_value) argument
452 rewind_pc_arch(const memory_t* memory, uintptr_t pc) argument
496 uintptr_t pc = index ? rewind_pc_arch(memory, state->gregs[R_PC]) local
[all...]
/system/core/sh/
H A Dparser.c1401 int pc; local
1412 switch (pc = pgetc()) {
1417 if ((pc = pgetc()) == '\n') {
1431 if (pc != '\\' && pc != '`' && pc != '$'
1432 && (!ISDBLQUOTE() || pc != '"'))
1449 STPUTC(pc, pout);

Completed in 97 milliseconds