• Home
  • Raw
  • Download

Lines Matching refs:context

76 …Trace([[maybe_unused]] int signo, [[maybe_unused]] siginfo_t *info, [[maybe_unused]] void *context)  in DumpStackTrace()  argument
105 static bool CallSignalActionHandler(int sig, siginfo_t *info, void *context) in CallSignalActionHandler() argument
107 return Runtime::GetCurrent()->GetSignalManager()->SignalActionHandler(sig, info, context); in CallSignalActionHandler()
110 bool SignalManager::SignalActionHandler(int sig, siginfo_t *info, void *context) in SignalActionHandler() argument
112 if (InOatCode(info, context, true)) { in SignalActionHandler()
114 if (handler->Action(sig, info, context)) { in SignalActionHandler()
121 if (InOtherCode(sig, info, context)) { in SignalActionHandler()
130 …Manager::InOatCode([[maybe_unused]] const siginfo_t *siginfo, [[maybe_unused]] const void *context, in InOatCode() argument
137 [[maybe_unused]] void *context) in InOtherCode() argument
210 [[maybe_unused]] const void *context, in GetMethodAndReturnPcAndSp() argument
239 void *context) // CODECHECK-NOLINT(C_RULE_ID_INDENT_CHECK) in DetectSEGVFromMemory() argument
246 DumpStackTrace(sig, siginfo, context); in DetectSEGVFromMemory()
259 …ol RuntimeSEGVHandler([[maybe_unused]] int sig, [[maybe_unused]] siginfo_t *siginfo, void *context) in RuntimeSEGVHandler() argument
261 return !DetectSEGVFromMemory(sig, siginfo, context); in RuntimeSEGVHandler()
264 …id RuntimeSEGVHandler([[maybe_unused]] int sig, [[maybe_unused]] siginfo_t *siginfo, void *context) in RuntimeSEGVHandler() argument
266 DetectSEGVFromMemory(sig, siginfo, context); in RuntimeSEGVHandler()
270 …ointerHandler::Action(int sig, [[maybe_unused]] siginfo_t *siginfo, [[maybe_unused]] void *context) in Action() argument
276 if (!RuntimeSEGVHandler(sig, siginfo, context)) { in Action()