Searched refs:EXC (Results 1 - 25 of 27) sorted by relevance

12

/external/lldb/source/Plugins/Process/MacOSX-Kernel/
H A DRegisterContextKDP_arm.h41 DoReadEXC (lldb::tid_t tid, int flavor, EXC &exc);
53 DoWriteEXC (lldb::tid_t tid, int flavor, const EXC &exc);
H A DRegisterContextKDP_i386.h39 DoReadEXC (lldb::tid_t tid, int flavor, EXC &exc);
48 DoWriteEXC (lldb::tid_t tid, int flavor, const EXC &exc);
H A DRegisterContextKDP_x86_64.h40 DoReadEXC (lldb::tid_t tid, int flavor, EXC &exc);
49 DoWriteEXC (lldb::tid_t tid, int flavor, const EXC &exc);
H A DRegisterContextKDP_arm.cpp66 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 DRegisterContextKDP_i386.cpp66 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 DRegisterContextKDP_x86_64.cpp66 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 DRegisterContextMach_arm.h38 DoReadEXC (lldb::tid_t tid, int flavor, EXC &exc);
50 DoWriteEXC (lldb::tid_t tid, int flavor, const EXC &exc);
H A DRegisterContextMach_i386.h37 DoReadEXC (lldb::tid_t tid, int flavor, EXC &exc);
46 DoWriteEXC (lldb::tid_t tid, int flavor, const EXC &exc);
H A DRegisterContextMach_x86_64.h37 DoReadEXC (lldb::tid_t tid, int flavor, EXC &exc);
46 DoWriteEXC (lldb::tid_t tid, int flavor, const EXC &exc);
H A DRegisterContextMach_i386.cpp48 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 DRegisterContextMach_x86_64.cpp48 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 DRegisterContextDarwin_i386.h116 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 DRegisterContextDarwin_x86_64.h120 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 DRegisterContextMach_arm.cpp50 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 DRegisterContextDarwin_arm.h147 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 DRegisterContextDarwin_i386.cpp218 #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 DRegisterContextDarwin_x86_64.cpp240 #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 DRegisterContextDarwin_arm.cpp196 #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 DDNBArchImplI386.h66 typedef __i386_exception_state_t EXC; typedef in class:DNBArchImplI386
98 e_regSetWordSizeEXC = sizeof(EXC) / sizeof(int),
117 EXC exc;
H A DDNBArchImplI386.cpp1022 #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 DDNBArchImplX86_64.h65 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 DDNBArchImpl.h117 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 DAPIInfo.java41 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 DCheckAPI.java93 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 DObjectFileMachO.cpp138 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)

Completed in 176 milliseconds

12