HomeSort by relevance Sort by last modified time
    Searched defs:Caller (Results 1 - 10 of 10) sorted by null

  /external/llvm/lib/ExecutionEngine/Interpreter/
Interpreter.h 69 CallSite Caller; // Holds the call that called subframes.
79 Caller(O.Caller), Values(std::move(O.Values)),
86 Caller = O.Caller;
  /external/llvm/lib/Transforms/IPO/
Inliner.cpp 47 STATISTIC(NumCallerCallersAnalyzed, "Number of caller-callers analyzed");
89 /// calling function, then bump up the caller's stack protection level.
90 static void AdjustCallerSSPLevel(Function *Caller, Function *Callee) {
97 AttributeSet OldSSPAttr = AttributeSet::get(Caller->getContext(),
102 Caller->removeAttributes(AttributeSet::FunctionIndex, OldSSPAttr);
103 Caller->addFnAttr(Attribute::StackProtectReq);
105 !Caller->hasFnAttribute(Attribute::StackProtectReq)) {
106 Caller->removeAttributes(AttributeSet::FunctionIndex, OldSSPAttr);
107 Caller->addFnAttr(Attribute::StackProtectStrong);
109 !Caller->hasFnAttribute(Attribute::StackProtectReq) &
    [all...]
  /frameworks/base/core/java/com/android/internal/os/
TransferPipe.java 51 interface Caller {
73 static void go(Caller caller, IInterface iface, FileDescriptor out,
75 go(caller, iface, out, prefix, args, DEFAULT_TIMEOUT);
78 static void go(Caller caller, IInterface iface, FileDescriptor out,
83 caller.go(iface, out, prefix, args);
91 caller.go(iface, tp.getWriteFd().getFileDescriptor(), prefix, args);
  /external/clang/include/clang/StaticAnalyzer/Core/BugReporter/
PathDiagnostic.h 554 : PathDiagnosticPiece(Call), Caller(callerD), Callee(nullptr),
557 PathDiagnosticCallPiece(PathPieces &oldPath, const Decl *caller)
558 : PathDiagnosticPiece(Call), Caller(caller), Callee(nullptr),
561 const Decl *Caller;
580 const Decl *getCaller() const { return Caller; }
611 const Decl *caller);
  /external/llvm/lib/Transforms/Utils/
InlineFunction.cpp 102 /// Forward the 'resume' instruction to the caller's landing pad block.
161 /// Forward the 'resume' instruction to the caller's landing pad block.
240 Function *Caller = FirstNewBlock->getParent();
249 for (Function::iterator I = FirstNewBlock, E = Caller->end(); I != E; ++I)
265 for (Function::iterator BB = FirstNewBlock, E = Caller->end(); BB != E; ++BB){
284 /// aliasing scopes from a function inlined into a caller multiple times could
293 // caller. I'm omitting that check here because it might confuse
445 // property of the callee, but also all control dependencies in the caller.
629 // already in the caller. To do this, we might need a DT of the caller
    [all...]
SimplifyLibCalls.cpp 559 Function *Caller = CI->getParent()->getParent();
560 emitOptimizationRemark(CI->getContext(), "simplify-libcalls", *Caller,
    [all...]
  /external/llvm/lib/Transforms/InstCombine/
InstCombineCalls.cpp 312 // If the caller function is nounwind, mark the call as nounwind, even if the
    [all...]
  /external/clang/lib/StaticAnalyzer/Core/
BugReporter.cpp 601 const Decl *Caller = CE->getLocationContext()->getDecl();
602 C = PathDiagnosticCallPiece::construct(PD.getActivePath(), Caller);
    [all...]
  /external/clang/lib/AST/
ExprConstant.cpp 291 /// Parent - The caller of this stack frame.
292 CallStackFrame *Caller;
549 Frame = Frame->Caller;
824 : Info(Info), Caller(Info.CurrentCall), CallLoc(CallLoc), Callee(Callee),
833 Info.CurrentCall = Caller;
858 Frame = Frame->Caller, ++CallIdx) {
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/ddk/
ndis.h     [all...]

Completed in 1052 milliseconds