HomeSort by relevance Sort by last modified time
    Searched refs:Die (Results 1 - 25 of 47) sorted by null

1 2

  /external/chromium_org/sandbox/linux/seccomp-bpf/
die.h 13 class Die {
17 #define SANDBOX_DIE(m) playground2::Die::SandboxDie(m, __FILE__, __LINE__)
20 #define SANDBOX_INFO(m) playground2::Die::SandboxInfo(m, __FILE__, __LINE__)
57 DISALLOW_IMPLICIT_CONSTRUCTORS(Die);
die.cc 18 void Die::ExitGroup() {
45 void Die::SandboxDie(const char *msg, const char *file, int line) {
50 Die::LogToStderr(msg, file, line);
58 void Die::SandboxInfo(const char *msg, const char *file, int line) {
61 Die::LogToStderr(msg, file, line);
68 void Die::LogToStderr(const char *msg, const char *file, int line) {
80 bool Die::simple_exit_ = false;
81 bool Die::suppress_info_ = false;
  /external/llvm/lib/CodeGen/AsmPrinter/
DwarfCompileUnit.h 17 #include "DIE.h"
46 /// Die - Compile unit debug information entry.
48 const OwningPtr<DIE> CUDie;
58 DIE *IndexTyDie;
62 DenseMap<const MDNode *, DIE *> MDNodeToDieMap;
70 StringMap<DIE*> GlobalNames;
74 StringMap<DIE*> GlobalTypes;
78 StringMap<std::vector<DIE*> > AccelNames;
79 StringMap<std::vector<DIE*> > AccelObjC;
80 StringMap<std::vector<DIE*> > AccelNamespace
    [all...]
DwarfCompileUnit.cpp 36 CompileUnit::CompileUnit(unsigned UID, unsigned L, DIE *D, const MDNode *N,
52 DIEEntry *CompileUnit::createDIEEntry(DIE *Entry) {
102 void CompileUnit::addFlag(DIE *Die, unsigned Attribute) {
104 Die->addValue(Attribute, dwarf::DW_FORM_flag_present,
107 addUInt(Die, Attribute, dwarf::DW_FORM_flag, 1);
112 void CompileUnit::addUInt(DIE *Die, unsigned Attribute,
117 Die->addValue(Attribute, Form, Value);
122 void CompileUnit::addSInt(DIE *Die, unsigned Attribute
    [all...]
DwarfAccelTable.h 17 #include "DIE.h"
65 class DIE;
129 eAtomTypeDIEOffset = 1u, // DIE offset, check form for encoding
130 eAtomTypeCUOffset = 2u, // DIE offset of the compiler unit header that
196 DIE *Die; // Offsets
199 HashDataContents(DIE *D, char Flags) :
200 Die(D),
204 O << " Offset: " << Die->getOffset() << "\n";
205 O << " Tag: " << dwarf::TagString(Die->getTag()) << "\n"
    [all...]
DwarfDebug.cpp 16 #include "DIE.h"
332 DIE* Die) {
335 TheCU->addAccelName(SP.getName(), Die);
340 TheCU->addAccelName(SP.getLinkageName(), Die);
347 TheCU->addAccelObjC(Class, Die);
349 TheCU->addAccelObjC(Category, Die);
351 TheCU->addAccelName(getObjCMethodName(SP.getName()), Die);
355 // Find DIE for the given subprogram and attach appropriate DW_AT_low_pc
358 DIE *DwarfDebug::updateSubprogramScopeDIE(CompileUnit *SPCU
    [all...]
DwarfDebug.h 17 #include "DIE.h"
41 class DIE;
122 /// labels are referenced is used to find debug_loc offset for a given DIE.
148 DIE *TheDIE; // Variable DIE.
161 void setDIE(DIE *D) { TheDIE = D; }
162 DIE *getDIE() const { return TheDIE; }
252 /// \brief Compute the size and offset of a DIE given an incoming Offset.
253 unsigned computeSizeAndOffset(DIE *Die, unsigned Offset)
    [all...]
DwarfAccelTable.cpp 15 #include "DIE.h"
47 void DwarfAccelTable::AddName(StringRef Name, DIE* die, char Flags) {
49 // If the string is in the list already then add this die to the list
52 DIEs.push_back(new (Allocator) HashDataContents(die, Flags));
76 return A->Die->getOffset() < B->Die->getOffset();
123 Asm->OutStreamer.AddComment("HeaderData Die Offset Base");
199 // Emit the DIE offset
200 Asm->EmitInt32((*DI)->Die->getOffset())
    [all...]
  /external/compiler-rt/lib/ubsan/
ubsan_handlers.cc 61 Die();
87 Die();
98 Die();
109 Die();
131 Die();
153 Die();
183 Die();
199 Die();
204 Die();
211 Die();
    [all...]
ubsan_handlers_cxx.cc 64 Die();
  /external/compiler-rt/lib/sanitizer_common/
sanitizer_common.cc 45 void NORETURN Die() {
64 Die();
77 Die();
93 Die();
184 Die();
sanitizer_posix_libcdep.cc 63 Die();
sanitizer_internal_defs.h 181 void NORETURN Die();
190 Die(); \
234 Die(); \
  /external/compiler-rt/lib/tsan/rtl/
tsan_suppressions.cc 47 Die();
54 Die();
60 Die();
94 Die();
tsan_symbolize_addr2line_linux.cc 54 Die();
59 Die();
78 Die();
161 Die();
168 Die();
tsan_flags.cc 106 Die();
112 Die();
tsan_platform_mac.cc 64 Die();
tsan_platform_linux.cc 159 Die();
229 Die();
270 Die();
  /external/chromium_org/chrome_frame/test/
infobar_unittests.cc 90 virtual ~MockWindowSubclass() { Die(); }
91 MOCK_METHOD0(Die, void());
97 virtual ~MockDelegate() { Die(); }
98 MOCK_METHOD0(Die, void());
139 EXPECT_CALL(*delegate, Die());
140 EXPECT_CALL(*swwd, Die());
167 EXPECT_CALL(*delegate, Die());
169 EXPECT_CALL(*swwd, Die());
253 EXPECT_CALL(*delegate, Die());
290 EXPECT_CALL(*delegate, Die());
    [all...]
  /external/chromium_org/chrome/browser/extensions/api/preference/
preference_api_prefs_unittest.cc 402 Die();
404 MOCK_METHOD0(Die, void());
416 EXPECT_CALL(*v1, Die()).Times(0);
417 EXPECT_CALL(*v1i, Die()).Times(0);
423 EXPECT_CALL(*v1, Die()).Times(1);
424 EXPECT_CALL(*v1i, Die()).Times(1);
425 EXPECT_CALL(*v2, Die()).Times(1);
426 EXPECT_CALL(*v2i, Die()).Times(1);
  /external/clang/test/Parser/
cxx-decl.cpp 165 struct DIE {
169 void test (DIE die, DIE *Die, DIE INT, DIE *FLOAT) {
170 DIE.foo(); // expected-error {{cannot use dot operator on a type}}
171 die.foo();
173 DIE->foo(); // expected-error {{cannot use arrow operator on a type}
    [all...]
  /external/compiler-rt/lib/asan/
asan_posix.cc 55 if (13 != internal_write(2, "ASAN:SIGSEGV\n", 13)) Die();
  /external/chromium_org/gpu/command_buffer/tests/
gl_gpu_memory_buffer_unittests.cc 40 Die();
48 MOCK_METHOD0(Die, void());
217 EXPECT_CALL(*gpu_memory_buffer, Die())
  /external/compiler-rt/lib/lsan/
lsan_interceptors.cc 182 Die();
207 Die();
277 Die();
  /external/compiler-rt/lib/msan/
msan.cc 128 Die();
240 Die();
249 Die();
292 Die();
327 Die();

Completed in 1020 milliseconds

1 2