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

1 2 3 4 5

  /external/compiler-rt/test/sanitizer_common/TestCases/Linux/
abort_on_error.cc 14 void Die();
18 __sanitizer::Die();
  /system/connectivity/shill/supplicant/
mock_supplicant_bss_proxy.cc 24 Die();
mock_supplicant_bss_proxy.h 32 MOCK_METHOD0(Die, void()); // So we can EXPECT the dtor.
  /external/webrtc/webrtc/common_audio/vad/mock/
mock_vad.h 22 virtual ~MockVad() { Die(); }
23 MOCK_METHOD0(Die, void());
  /external/webrtc/webrtc/modules/audio_coding/neteq/mock/
mock_buffer_level_filter.h 22 virtual ~MockBufferLevelFilter() { Die(); }
23 MOCK_METHOD0(Die,
mock_delay_peak_detector.h 22 virtual ~MockDelayPeakDetector() { Die(); }
23 MOCK_METHOD0(Die, void());
mock_dtmf_buffer.h 23 virtual ~MockDtmfBuffer() { Die(); }
24 MOCK_METHOD0(Die, void());
mock_dtmf_tone_generator.h 22 virtual ~MockDtmfToneGenerator() { Die(); }
23 MOCK_METHOD0(Die, void());
mock_audio_decoder.h 23 virtual ~MockAudioDecoder() { Die(); }
24 MOCK_METHOD0(Die, void());
mock_delay_manager.h 25 virtual ~MockDelayManager() { Die(); }
26 MOCK_METHOD0(Die, void());
mock_expand.h 34 virtual ~MockExpand() { Die(); }
35 MOCK_METHOD0(Die, void());
mock_packet_buffer.h 24 virtual ~MockPacketBuffer() { Die(); }
25 MOCK_METHOD0(Die, void());
  /external/libchrome/sandbox/linux/seccomp-bpf/
die.h 15 #define SANDBOX_DIE(m) sandbox::Die::SandboxDie(m, __FILE__, __LINE__)
19 #define RAW_SANDBOX_DIE(m) sandbox::Die::RawSandboxDie(m)
22 #define SANDBOX_INFO(m) sandbox::Die::SandboxInfo(m, __FILE__, __LINE__)
24 class SANDBOX_EXPORT Die {
63 DISALLOW_IMPLICIT_CONSTRUCTORS(Die);
die.cc 5 #include "sandbox/linux/seccomp-bpf/die.h"
24 void Die::ExitGroup() {
55 void Die::SandboxDie(const char* msg, const char* file, int line) {
64 void Die::RawSandboxDie(const char* msg) {
71 void Die::SandboxInfo(const char* msg, const char* file, int line) {
77 void Die::LogToStderr(const char* msg, const char* file, int line) {
90 bool Die::simple_exit_ = false;
91 bool Die::suppress_info_ = false;
  /external/v8/test/unittests/libplatform/
worker-thread-unittest.cc 20 virtual ~MockTask() { Die(); }
22 MOCK_METHOD0(Die, void());
36 EXPECT_CALL(*task, Die());
default-platform-unittest.cc 17 virtual ~MockTask() { Die(); }
19 MOCK_METHOD0(Die, void());
48 EXPECT_CALL(*task, Die());
72 EXPECT_CALL(*task1, Die());
79 EXPECT_CALL(*task2, Die());
101 EXPECT_CALL(*task1, Die());
107 EXPECT_CALL(*task2, Die());
110 EXPECT_CALL(*task3, Die());
125 EXPECT_CALL(*task, Die());
  /external/llvm/lib/CodeGen/AsmPrinter/
DwarfUnit.h 22 #include "llvm/CodeGen/DIE.h"
80 DIE &UnitDie;
93 DIE *IndexTyDie;
97 DenseMap<const MDNode *, DIE *> MDNodeToDieMap;
106 /// DW_AT_containing_type attribute. This attribute points to a DIE that
107 /// corresponds to the MDNode mapped with the subprogram DIE.
108 DenseMap<DIE *, const DINode *> ContainingTypeMap;
116 bool applySubprogramDefinitionAttributes(const DISubprogram *SP, DIE &SPDie);
133 DIE &getUnitDie() { return UnitDie; }
151 virtual void addGlobalName(StringRef Name, DIE &Die, const DIScope *Context)
    [all...]
DwarfFile.cpp 30 DIEAbbrev &DwarfFile::assignAbbrevNumber(DIE &Die) {
32 DIEAbbrev Abbrev = Die.generateAbbrev();
38 Die.setAbbrevNumber(Existing->getNumber());
46 Die.setAbbrevNumber(Abbreviations.size());
61 DIE &Die = TheU->getUnitDie();
67 Asm->emitDwarfDIE(Die);
71 // Compute the size and offset for each DIE.
77 // DIE within each compile unit. All offsets are CU relative
    [all...]
DwarfFile.h 30 class DIE;
57 DenseMap<const MDNode *, DIE *> AbstractSPDies;
62 DenseMap<const MDNode *, DIE *> DITypeNodeToDieMap;
71 /// \brief Compute the size and offset of a DIE given an incoming Offset.
72 unsigned computeSizeAndOffset(DIE &Die, unsigned Offset);
79 /// Compute the abbreviation for \c Die, look up its unique number, and
81 DIEAbbrev &assignAbbrevNumber(DIE &Die);
106 DenseMap<const MDNode *, DIE *> &getAbstractSPDies()
    [all...]
DIEHash.h 18 #include "llvm/CodeGen/DIE.h"
27 /// attributes onto a DIE.
29 // Collection of all attributes used in hashing a particular DIE.
88 uint64_t computeCUSignature(const DIE &Die);
91 uint64_t computeTypeSignature(const DIE &Die);
93 // Helper routines to process parts of a DIE.
95 /// \brief Adds the parent context of \param Die to the hash.
96 void addParentContext(const DIE &Die)
    [all...]
DIEHash.cpp 20 #include "llvm/CodeGen/DIE.h"
33 static StringRef getDIEStringAttr(const DIE &Die, uint16_t Attr) {
36 for (const auto &V : Die.values())
81 void DIEHash::addParentContext(const DIE &Parent) {
87 SmallVector<const DIE *, 1> Parents;
88 const DIE *Cur = &Parent;
98 for (SmallVectorImpl<const DIE *>::reverse_iterator I = Parents.rbegin(),
101 const DIE &Die = **I
    [all...]
  /external/webrtc/webrtc/modules/audio_coding/neteq/
comfort_noise_unittest.cc 26 EXPECT_CALL(db, Die()); // Called when |db| goes out of scope.
normal_unittest.cc 43 EXPECT_CALL(db, Die()); // Called when |db| goes out of scope.
88 EXPECT_CALL(db, Die()); // Called when |db| goes out of scope.
89 EXPECT_CALL(expand, Die()); // Called when |expand| goes out of scope.
120 EXPECT_CALL(db, Die()); // Called when |db| goes out of scope.
121 EXPECT_CALL(expand, Die()); // Called when |expand| goes out of scope.
  /system/core/crash_reporter/
warn_collector.l 99 static void Die(const char *format, ...) {
110 Die("%s exited with status %d\n", crash_reporter_command, status);
156 Die("fopen %s failed: %s\n", warn_dump_path, strerror(errno));
175 Die("could not open %s: %s\n", path, strerror(errno));
183 Die("could not lseek %s: %s\n", path, strerror(errno));
187 Die("inotify_init: %s\n", strerror(errno));
189 Die("inotify_add_watch: %s\n", strerror(errno));
206 Die("read: %s", strerror(errno));
238 Die("inotify: %s\n", strerror(errno));
302 Die("could not create %s: %s\n"
    [all...]
  /external/webrtc/webrtc/modules/audio_coding/codecs/mock/
mock_audio_encoder.h 22 ~MockAudioEncoder() override { Die(); }
23 MOCK_METHOD0(Die, void());

Completed in 354 milliseconds

1 2 3 4 5