Searched refs:pc (Results 1 - 16 of 16) sorted by relevance

/system/core/debuggerd/
H A Dutility.c58 /* Map a pc address to the name of the containing ELF file */
59 const char *map_to_name(mapinfo *mi, unsigned pc, const char* def) argument
62 if((pc >= mi->start) && (pc < mi->end)){
70 /* Find the containing map info for the pc */
71 const mapinfo *pc_to_mapinfo(mapinfo *mi, unsigned pc, unsigned *rel_pc) argument
73 *rel_pc = pc;
75 if((pc >= mi->start) && (pc < mi->end)){
H A Dutility.h51 /* Find the containing map for the pc */
52 const mapinfo *pc_to_mapinfo (mapinfo *mi, unsigned pc, unsigned *rel_pc);
54 /* Map a pc address to the name of the containing ELF file */
55 const char *map_to_name(mapinfo *mi, unsigned pc, const char* def);
/system/core/include/private/
H A Dandroid_filesystem_config.h226 struct fs_path_config *pc; local
229 pc = dir ? android_dirs : android_files;
231 for(; pc->prefix; pc++){
232 int len = strlen(pc->prefix);
235 if(!strncmp(pc->prefix, path, len)) break;
239 if (pc->prefix[len -1] == '*') {
240 if(!strncmp(pc->prefix, path, len - 1)) break;
242 if(!strncmp(pc->prefix, path, len)) break;
245 *uid = pc
[all...]
/system/core/libpixelflinger/codeflinger/
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 LOGI(format, name, int(pc()
271 B(int cc, uint32_t* pc) argument
277 BL(int cc, uint32_t* pc) argument
[all...]
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.h66 virtual void B(int cc, uint32_t* pc);
67 virtual void BL(int cc, uint32_t* pc);
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 DARMAssemblerInterface.h133 virtual void B(int cc, uint32_t* pc) = 0;
134 virtual void BL(int cc, uint32_t* pc) = 0;
H A DGGLAssembler.h174 uint32_t* pc() const { return 0; } // XXX function in class:android::GGLAssembler
/system/core/debuggerd/arm/
H A Dunwind.c385 /* Print out the current call level, pc, and module name in the crash log */
393 _uw pc; local
403 pc = vrs->core.r[R_PC];
407 pc &= ~1;
409 // For deeper framers, rollback pc by one instruction
411 pc = vrs->core.r[R_PC];
430 if (pc & 1) {
432 pc = (pc & ~1);
433 prev_word = get_remote_word(pid, (char *) pc
[all...]
H A Dmachine.c230 unsigned int pc, lr; local
231 pc = r.ARM_pc;
234 _LOG(tfd, only_in_tombstone, "\ncode around pc:\n");
235 dump_memory(tfd, pid, (uintptr_t) pc, only_in_tombstone);
237 if (lr != pc) {
328 _LOG(tfd, !at_fault, " #%02d pc %08x %s\n", 0, r.ARM_pc,
353 " ip %08x sp %08x lr %08x pc %08x cpsr %08x\n",
/system/core/nexus/
H A DCommandListener.cpp196 android::List<char *> *pc; local
202 if (!(pc = NetworkManager::Instance()->getPropMngr()->createPropertyList(prefix))) {
210 for (it = pc->begin(); it != pc->end(); ++it) {
231 delete pc;
/system/core/libpixelflinger/
H A Dcol32cb16blend.S74 pop {r4-r10, pc} // return
H A Drotate90CW_4x4_16v6.S62 ldmfd sp!, {r4,r5, r6,r7, r8,r9, r10,r11, pc}
H A Dcol32cb16blend_neon.S150 pop {r4-r11, pc} // return
/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 231 milliseconds