Home
last modified time | relevance | path

Searched refs:taint (Results 1 – 25 of 52) sorted by relevance

123

/external/ltp/lib/
Dtst_taint.c76 unsigned int taint = -1; in tst_taint_init() local
86 taint = tst_taint_read(); in tst_taint_init()
87 if ((taint & mask) != 0) in tst_taint_init()
88 tst_brk(TBROK, "Kernel is already tainted: %u", taint); in tst_taint_init()
94 unsigned int taint = -1; in tst_taint_check() local
99 taint = tst_taint_read(); in tst_taint_check()
101 return (taint & taint_mask); in tst_taint_check()
/external/llvm-project/clang/lib/StaticAnalyzer/Checkers/
DTaint.cpp19 using namespace taint;
29 void taint::printTaint(ProgramStateRef State, raw_ostream &Out, const char *NL, in REGISTER_MAP_WITH_PROGRAMSTATE()
42 ProgramStateRef taint::addTaint(ProgramStateRef State, const Stmt *S, in addTaint()
48 ProgramStateRef taint::addTaint(ProgramStateRef State, SVal V, in addTaint()
76 ProgramStateRef taint::addTaint(ProgramStateRef State, const MemRegion *R, in addTaint()
83 ProgramStateRef taint::addTaint(ProgramStateRef State, SymbolRef Sym, in addTaint()
95 ProgramStateRef taint::removeTaint(ProgramStateRef State, SVal V) { in removeTaint()
104 ProgramStateRef taint::removeTaint(ProgramStateRef State, const MemRegion *R) { in removeTaint()
110 ProgramStateRef taint::removeTaint(ProgramStateRef State, SymbolRef Sym) { in removeTaint()
121 ProgramStateRef taint::addPartialTaint(ProgramStateRef State, in addPartialTaint()
[all …]
DDivZeroChecker.cpp23 using namespace taint;
91 std::make_unique<taint::TaintBugVisitor>(*DV)); in checkPreStmt()
DTaintTesterChecker.cpp22 using namespace taint;
DTaint.h21 namespace taint {
DArrayBoundCheckerV2.cpp29 using namespace taint;
DVLASizeChecker.cpp30 using namespace taint;
DExprInspectionChecker.cpp442 taint::isTainted(C.getState(), CE->getArg(0), C.getLocationContext()); in analyzerIsTainted()
DGenericTaintChecker.cpp38 using namespace taint;
/external/llvm-project/clang-tools-extra/test/clang-tidy/checkers/
Dmisc-no-recursion.cpp70 void taint();
74 taint(); in maybe_selfrecursion_with_two_backedges()
/external/igt-gpu-tools/runner/
Dexecutor.c177 for (typeof(*abort_taints) *taint = abort_taints; taint->bit; taint++) in tainted() local
178 bad_taints |= taint->bit; in tainted()
202 for (typeof(*abort_taints) *taint = abort_taints; taint->bit; taint++) { in handle_taint() local
203 if (taint->bit & taints) { in handle_taint()
207 taint->bit, in handle_taint()
208 taint->explanation); in handle_taint()
/external/llvm-project/clang/docs/
DDataFlowSanitizerDesign.rst12 a number of taint labels with any data stored in any memory region
31 A number of functions are provided which will create taint labels,
69 As stated above, the tool must track a large number of taint
72 union taint labels using a bitwise or operation. This will not scale
73 to clients which use hundreds or thousands of taint labels, as the
84 of a taint label is a 16-bit integer, and new labels are allocated
136 memory, which are used to store its taint label. As for LLVM SSA
/external/clang/docs/
DDataFlowSanitizerDesign.rst12 a number of taint labels with any data stored in any memory region
31 A number of functions are provided which will create taint labels,
69 As stated above, the tool must track a large number of taint
72 union taint labels using a bitwise or operation. This will not scale
73 to clients which use hundreds or thousands of taint labels, as the
84 of a taint label is a 16-bit integer, and new labels are allocated
136 memory, which are used to store its taint label. As for LLVM SSA
/external/llvm-project/llvm/test/CodeGen/AArch64/
Dspeculation-hardening.mir29 ; transfer the SP to to and it with the taint register when the default
184 ; propagate taint-to-sp operation, just put in a full speculation barrier
192 ; The following 2 instructions come from propagating the taint encoded in
193 ; sp at function entry to x16. It turns out the taint info in x16 is not
Dspeculation-hardening.ll54 ; Make sure that for a tail call, taint doesn't get put into SP twice.
/external/llvm-project/clang/test/Analysis/
Dtaint-tester.m1 // RUN: %clang_analyze_cc1 -analyzer-checker=alpha.security.taint,debug.TaintTest %s -verify
/external/clang/test/Analysis/
Dtaint-tester.m1 // RUN: %clang_cc1 -analyze -analyzer-checker=alpha.security.taint,debug.TaintTest %s -verify
/external/clang/docs/analyzer/
DDebugChecks.rst61 carries taint. At the time of this writing, taint was only introduced by the
62 checks under experimental.security.taint.TaintPropagation; this checker may
63 eventually move to the security.taint package.
/external/rust/crates/ring/tests/
Ddigest_tests.txt152 Input = "His money is twice tainted: 'taint yours and 'taint mine."
/external/ImageMagick/Magick++/lib/
DImageRef.cpp135 if (!force_ && (_image->taint == MagickFalse)) in signature()
/external/llvm-project/clang/docs/analyzer/developer-docs/
DDebugChecks.rst64 carries taint. At the time of this writing, taint was only introduced by the
65 checks under experimental.security.taint.TaintPropagation; this checker may
66 eventually move to the security.taint package.
/external/ImageMagick/MagickCore/
Dimage.h169 taint; /* has image been modified since reading */ member
Dcipher.c705 image->taint=MagickFalse; in PasskeyDecipherImage()
922 image->taint=MagickFalse; in PasskeyEncipherImage()
Dimage.c1946 if (p->taint != MagickFalse) in IsTaintImage()
3896 taint; in SyncImage() local
3912 taint=image->taint; in SyncImage()
3947 image->taint=taint; in SyncImage()
4161 image->taint=(MagickBooleanType) ParseCommandOption(MagickBooleanOptions, in SyncImageSettings()
/external/clang/include/clang/StaticAnalyzer/Checkers/
DCheckers.td54 def Taint : Package<"taint">, InPackage<SecurityAlpha>, Hidden;
354 HelpText<"Generate taint information used by other checkers">,
357 } // end "alpha.security.taint"

123