/external/lldb/source/Plugins/Process/MacOSX-Kernel/ |
H A D | RegisterContextKDP_arm.h | 41 DoReadEXC (lldb::tid_t tid, int flavor, EXC &exc); 53 DoWriteEXC (lldb::tid_t tid, int flavor, const EXC &exc);
|
H A D | RegisterContextKDP_i386.h | 39 DoReadEXC (lldb::tid_t tid, int flavor, EXC &exc); 48 DoWriteEXC (lldb::tid_t tid, int flavor, const EXC &exc);
|
H A D | RegisterContextKDP_x86_64.h | 40 DoReadEXC (lldb::tid_t tid, int flavor, EXC &exc); 49 DoWriteEXC (lldb::tid_t tid, int flavor, const EXC &exc);
|
H A D | RegisterContextKDP_arm.cpp | 66 RegisterContextKDP_arm::DoReadEXC (lldb::tid_t tid, int flavor, EXC &exc) 130 RegisterContextKDP_arm::DoWriteEXC (lldb::tid_t tid, int flavor, const EXC &exc)
|
H A D | RegisterContextKDP_i386.cpp | 66 RegisterContextKDP_i386::DoReadEXC (lldb::tid_t tid, int flavor, EXC &exc) 114 RegisterContextKDP_i386::DoWriteEXC (lldb::tid_t tid, int flavor, const EXC &exc)
|
H A D | RegisterContextKDP_x86_64.cpp | 66 RegisterContextKDP_x86_64::DoReadEXC (lldb::tid_t tid, int flavor, EXC &exc) 114 RegisterContextKDP_x86_64::DoWriteEXC (lldb::tid_t tid, int flavor, const EXC &exc)
|
/external/lldb/source/Plugins/Process/Utility/ |
H A D | RegisterContextMach_arm.h | 38 DoReadEXC (lldb::tid_t tid, int flavor, EXC &exc); 50 DoWriteEXC (lldb::tid_t tid, int flavor, const EXC &exc);
|
H A D | RegisterContextMach_i386.h | 37 DoReadEXC (lldb::tid_t tid, int flavor, EXC &exc); 46 DoWriteEXC (lldb::tid_t tid, int flavor, const EXC &exc);
|
H A D | RegisterContextMach_x86_64.h | 37 DoReadEXC (lldb::tid_t tid, int flavor, EXC &exc); 46 DoWriteEXC (lldb::tid_t tid, int flavor, const EXC &exc);
|
H A D | RegisterContextMach_i386.cpp | 48 RegisterContextMach_i386::DoReadEXC (lldb::tid_t tid, int flavor, EXC &exc) 67 RegisterContextMach_i386::DoWriteEXC (lldb::tid_t tid, int flavor, const EXC &exc)
|
H A D | RegisterContextMach_x86_64.cpp | 48 RegisterContextMach_x86_64::DoReadEXC (lldb::tid_t tid, int flavor, EXC &exc) 67 RegisterContextMach_x86_64::DoWriteEXC (lldb::tid_t tid, int flavor, const EXC &exc)
|
H A D | RegisterContextDarwin_i386.h | 116 struct EXC struct in class:RegisterContextDarwin_i386 136 EXCWordCount = sizeof(EXC)/sizeof(uint32_t) 148 EXC exc; 239 DoReadEXC (lldb::tid_t tid, int flavor, EXC &exc) = 0; 248 DoWriteEXC (lldb::tid_t tid, int flavor, const EXC &exc) = 0;
|
H A D | RegisterContextDarwin_x86_64.h | 120 struct EXC struct in class:RegisterContextDarwin_x86_64 140 EXCWordCount = sizeof(EXC)/sizeof(uint32_t) 152 EXC exc; 243 DoReadEXC (lldb::tid_t tid, int flavor, EXC &exc) = 0; 252 DoWriteEXC (lldb::tid_t tid, int flavor, const EXC &exc) = 0;
|
H A D | RegisterContextMach_arm.cpp | 50 RegisterContextMach_arm::DoReadEXC (lldb::tid_t tid, int flavor, EXC &exc) 76 RegisterContextMach_arm::DoWriteEXC (lldb::tid_t tid, int flavor, const EXC &exc)
|
H A D | RegisterContextDarwin_arm.h | 147 struct EXC struct in class:RegisterContextDarwin_arm 179 EXCWordCount = sizeof(EXC)/sizeof(uint32_t), 192 EXC exc; 297 DoReadEXC (lldb::tid_t tid, int flavor, EXC &exc) = 0; 309 DoWriteEXC (lldb::tid_t tid, int flavor, const EXC &exc) = 0;
|
H A D | RegisterContextDarwin_i386.cpp | 218 #define EXC_OFFSET(reg) (LLVM_EXTENSION offsetof (RegisterContextDarwin_i386::EXC, reg) + sizeof (RegisterContextDarwin_i386::GPR) + sizeof (RegisterContextDarwin_i386::FPU)) 228 #define DEFINE_EXC(reg) #reg, NULL, sizeof(((RegisterContextDarwin_i386::EXC *)NULL)->reg), EXC_OFFSET(reg), eEncodingUint, eFormatHex 229 #define REG_CONTEXT_SIZE (sizeof (RegisterContextDarwin_i386::GPR) + sizeof (RegisterContextDarwin_i386::FPU) + sizeof (RegisterContextDarwin_i386::EXC))
|
H A D | RegisterContextDarwin_x86_64.cpp | 240 #define EXC_OFFSET(reg) (LLVM_EXTENSION offsetof (RegisterContextDarwin_x86_64::EXC, reg) + sizeof (RegisterContextDarwin_x86_64::GPR) + sizeof (RegisterContextDarwin_x86_64::FPU)) 249 #define DEFINE_EXC(reg) #reg, NULL, sizeof(((RegisterContextDarwin_x86_64::EXC *)NULL)->reg), EXC_OFFSET(reg), eEncodingUint, eFormatHex 251 #define REG_CONTEXT_SIZE (sizeof (RegisterContextDarwin_x86_64::GPR) + sizeof (RegisterContextDarwin_x86_64::FPU) + sizeof (RegisterContextDarwin_x86_64::EXC))
|
H A D | RegisterContextDarwin_arm.cpp | 196 #define DBG_OFFSET(reg) ((LLVM_EXTENSION offsetof (RegisterContextDarwin_arm::DBG, reg) + sizeof (RegisterContextDarwin_arm::GPR) + sizeof (RegisterContextDarwin_arm::FPU) + sizeof (RegisterContextDarwin_arm::EXC))) 199 #define REG_CONTEXT_SIZE (sizeof (RegisterContextDarwin_arm::GPR) + sizeof (RegisterContextDarwin_arm::FPU) + sizeof (RegisterContextDarwin_arm::EXC))
|
/external/lldb/tools/debugserver/source/MacOSX/i386/ |
H A D | DNBArchImplI386.h | 66 typedef __i386_exception_state_t EXC; typedef in class:DNBArchImplI386 98 e_regSetWordSizeEXC = sizeof(EXC) / sizeof(int), 117 EXC exc;
|
H A D | DNBArchImplI386.cpp | 1022 #define EXC_OFFSET(reg) (offsetof (DNBArchImplI386::EXC, __##reg) + offsetof (DNBArchImplI386::Context, exc)) 1029 #define EXC_SIZE(reg) (sizeof(((DNBArchImplI386::EXC *)NULL)->__##reg)) 1584 DNBLogThreadedIf (LOG_THREAD, "DNBArchImplI386::GetRegisterContext (buf = %p, len = %llu) error: EXC regs failed to read: %u", buf, (uint64_t)buf_len, kret);
|
/external/lldb/tools/debugserver/source/MacOSX/x86_64/ |
H A D | DNBArchImplX86_64.h | 65 typedef __x86_64_exception_state_t EXC; typedef in class:DNBArchImplX86_64 97 e_regSetWordSizeEXC = sizeof(EXC) / sizeof(int), 116 EXC exc;
|
/external/lldb/tools/debugserver/source/MacOSX/arm/ |
H A D | DNBArchImpl.h | 117 typedef arm_exception_state_t EXC; typedef in class:DNBArchMachARM 134 EXC exc;
|
/external/icu/icu4j/tools/build/src/com/ibm/icu/dev/tool/docs/ |
H A D | APIInfo.java | 41 public static final int EXC = 11; field in class:APIInfo 110 public void setExceptions(String val) { setType(EXC, val); } 136 public String getExceptions() { return get(EXC, true); } 170 case EXC: return exc; 208 case EXC: exc = val; break;
|
H A D | CheckAPI.java | 93 private static final int EXC = 11; field in class:CheckAPI 124 case EXC: return exc; 146 case EXC: exc = val; break;
|
/external/lldb/source/Plugins/ObjectFile/Mach-O/ |
H A D | ObjectFileMachO.cpp | 138 DoReadEXC (lldb::tid_t tid, int flavor, EXC &exc) 156 DoWriteEXC (lldb::tid_t tid, int flavor, const EXC &exc) 246 DoReadEXC (lldb::tid_t tid, int flavor, EXC &exc) 264 DoWriteEXC (lldb::tid_t tid, int flavor, const EXC &exc) 364 DoReadEXC (lldb::tid_t tid, int flavor, EXC &exc) 388 DoWriteEXC (lldb::tid_t tid, int flavor, const EXC &exc)
|