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

1 2

  /system/update_engine/common/
terminator.cc 17 #include "update_engine/common/terminator.h"
23 volatile sig_atomic_t Terminator::exit_status_ = 1; // default exit status
24 volatile sig_atomic_t Terminator::exit_blocked_ = 0;
25 volatile sig_atomic_t Terminator::exit_requested_ = 0;
27 void Terminator::Init() {
33 void Terminator::Init(int exit_status) {
38 void Terminator::Exit() {
42 void Terminator::HandleSignal(int signum) {
50 Terminator::set_exit_blocked(false);
51 if (Terminator::exit_requested())
    [all...]
terminator_unittest.cc 17 #include "update_engine/common/terminator.h"
29 Terminator::Init();
30 ASSERT_FALSE(Terminator::exit_blocked());
31 ASSERT_FALSE(Terminator::exit_requested());
34 // Makes sure subsequent non-Terminator tests don't get accidentally
36 Terminator::Init();
53 Terminator::set_exit_blocked(true);
54 Terminator::HandleSignal(SIGTERM);
55 ASSERT_TRUE(Terminator::exit_requested());
59 Terminator::set_exit_blocked(true)
    [all...]
terminator.h 27 class Terminator {
29 // Initializes the terminator and sets up signal handlers.
36 // Set to true if the terminator should block termination requests in an
  /external/llvm/lib/Target/SystemZ/
SystemZLongBranch.cpp 94 // Represents the state of a block terminator.
96 // If this terminator is a relaxable branch, this points to the branch
100 // The address that we currently assume the terminator has.
103 // The current size of the terminator in bytes.
145 void skipTerminator(BlockPosition &Position, TerminatorInfo &Terminator,
149 bool mustRelaxBranch(const TerminatorInfo &Terminator, uint64_t Address);
154 void relaxBranch(TerminatorInfo &Terminator);
174 // accordingly and move Position to the end of the block's non-terminator
197 // Position describes the state immediately before Terminator.
198 // Update Terminator accordingly and move Position past it
    [all...]
  /system/update_engine/
testrunner.cc 26 #include "update_engine/common/terminator.h"
42 chromeos_update_engine::Terminator::Init(2);
main.cc 32 #include "update_engine/common/terminator.h"
107 chromeos_update_engine::Terminator::Init();
sideload_main.cc 38 #include "update_engine/common/terminator.h"
206 chromeos_update_engine::Terminator::Init();
  /external/clang/include/clang/Driver/
Job.h 93 virtual void Print(llvm::raw_ostream &OS, const char *Terminator, bool Quote,
131 void Print(llvm::raw_ostream &OS, const char *Terminator, bool Quote,
153 void Print(llvm::raw_ostream &OS, const char *Terminator,
  /external/clang/lib/Driver/
Job.cpp 154 void Command::Print(raw_ostream &OS, const char *Terminator, bool Quote,
202 // Avoiding duplicated newline terminator, since FileLists are
209 OS << Terminator;
267 void FallbackCommand::Print(raw_ostream &OS, const char *Terminator,
271 Fallback->Print(OS, Terminator, Quote, CrashInfo);
300 void JobList::Print(raw_ostream &OS, const char *Terminator, bool Quote,
303 Job.Print(OS, Terminator, Quote, CrashInfo);
  /external/llvm/lib/Analysis/
EHPersonalities.cpp 93 TerminatorInst *Terminator = Visiting->getTerminator();
94 if (auto *CatchRet = dyn_cast<CatchReturnInst>(Terminator)) {
  /external/clang/include/clang/Analysis/Analyses/
UninitializedValues.h 33 const Stmt *Terminator;
ThreadSafetyTIL.h 1585 const Terminator *terminator() const { return TermInstr; } function in class:clang::threadSafety::BasicBlock
1586 Terminator *terminator() { return TermInstr; } function in class:clang::threadSafety::BasicBlock
    [all...]
  /frameworks/compile/mclinker/include/mcld/LD/
EhFrameReader.h 43 enum TokenKind { CIE, FDE, Terminator, Unknown, NumOfTokenKinds };
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/
mstcpip.h 116 LONG NTAPI RtlIpv4StringToAddressA(PCSTR S, BOOLEAN Strict, LPSTR *Terminator, IN_ADDR *Addr);
117 LONG NTAPI RtlIpv4StringToAddressW(PCWSTR S, BOOLEAN Strict, LPWSTR *Terminator, IN_ADDR *Addr);
  /external/clang/lib/Analysis/
CFG.cpp 516 /// CXXBindTemporaryExpr as terminator, and branches to the current block
    [all...]
ThreadSafety.cpp     [all...]
  /external/llvm/include/llvm/MC/
MCInstrDesc.h 104 Terminator,
221 /// \brief Returns true if this instruction part of the terminator for
227 bool isTerminator() const { return Flags & (1 << MCID::Terminator); }
  /external/clang/lib/AST/
DeclPrinter.cpp 335 const char *Terminator = nullptr;
337 Terminator = nullptr;
340 Terminator = nullptr;
342 Terminator = nullptr;
349 Terminator = nullptr;
354 Terminator = ",";
356 Terminator = ";";
358 if (Terminator)
359 Out << Terminator;
    [all...]
  /external/llvm/include/llvm/Object/
Archive.h 34 char Terminator[2];
  /external/llvm/lib/CodeGen/
ShrinkWrap.cpp 108 /// The epilogue will be inserted before the first terminator instruction
288 // terminator.
290 for (const MachineInstr &Terminator : MBB.terminators()) {
291 if (!useOrDefCSROrFI(Terminator, RS))
293 // One of the terminator needs to happen before the restore point.
MachineBlockPlacement.cpp     [all...]
  /external/clang/include/clang/Analysis/
CFG.h 297 /// CFGTerminator - Represents CFGBlock terminator statement.
299 /// TemporaryDtorsBranch bit is set to true if the terminator marks a branch
300 /// in control flow of destructors of temporaries. In this case terminator
331 /// (2) A "terminator" statement (not in the set of statements).
334 /// Terminator: The terminator represents the type of control-flow that occurs
335 /// at the end of the basic block. The terminator is a Stmt* referring to an
343 /// currently have the following orderings based on the terminator:
345 /// Terminator Successor Ordering
401 /// Terminator - The terminator for a basic block tha
    [all...]
  /external/llvm/lib/Transforms/Scalar/
JumpThreading.cpp 233 << "' with terminator: " << *BB->getTerminator() << '\n');
248 // If the terminator is the only non-phi instruction, try to nuke it.
289 // Sum up the cost of each instruction until we get to the terminator. Don't
290 // include the terminator because the copy won't include it.
365 /// terminator with the given value as its condition, and if so what value to
423 /// predecessor based on its terminator.
736 // Look to see if the terminator is a conditional branch, switch or indirect
739 Instruction *Terminator = BB->getTerminator();
740 if (BranchInst *BI = dyn_cast<BranchInst>(Terminator)) {
744 } else if (SwitchInst *SI = dyn_cast<SwitchInst>(Terminator)) {
    [all...]
  /external/llvm/unittests/Transforms/Utils/
Cloning.cpp 253 Instruction* Terminator = IBuilder.CreateRetVoid();
264 Terminator);
  /frameworks/compile/mclinker/lib/LD/
EhFrameReader.cpp 56 // terminator
57 result.kind = Terminator;

Completed in 1383 milliseconds

1 2