/art/runtime/arch/arm64/ |
fault_handler_arm64.cc | 62 VLOG(signals) << "sp: " << *out_sp; 81 VLOG(signals) << "pc: " << std::hex 99 VLOG(signals) << "Generating null pointer exception"; 122 VLOG(signals) << "checking suspend"; 125 VLOG(signals) << "inst2: " << std::hex << inst2 << " checkinst2: " << checkinst2; 137 VLOG(signals) << "inst1: " << std::hex << inst1 << " checkinst1: " << checkinst1; 145 VLOG(signals) << "suspend check match"; 156 VLOG(signals) << "removed suspend trigger invoking test suspend"; 166 VLOG(signals) << "stack overflow handler with sp at " << std::hex << &uc; 167 VLOG(signals) << "sigcontext: " << std::hex << sc [all...] |
/art/runtime/arch/mips/ |
fault_handler_mips.cc | 48 VLOG(signals) << "sp: " << *out_sp; 68 VLOG(signals) << "pc: " << std::hex 86 VLOG(signals) << "Generating null pointer exception"; 111 VLOG(signals) << "stack overflow handler with sp at " << std::hex << &uc; 112 VLOG(signals) << "sigcontext: " << std::hex << sc; 115 VLOG(signals) << "sp: " << std::hex << sp; 118 VLOG(signals) << "fault_addr: " << std::hex << fault_addr; 119 VLOG(signals) << "checking for stack overflow, sp: " << std::hex << sp << 126 VLOG(signals) << "Not a stack overflow"; 130 VLOG(signals) << "Stack overflow found" [all...] |
/art/runtime/arch/mips64/ |
fault_handler_mips64.cc | 48 VLOG(signals) << "sp: " << *out_sp; 68 VLOG(signals) << "pc: " << std::hex 86 VLOG(signals) << "Generating null pointer exception"; 111 VLOG(signals) << "stack overflow handler with sp at " << std::hex << &uc; 112 VLOG(signals) << "sigcontext: " << std::hex << sc; 115 VLOG(signals) << "sp: " << std::hex << sp; 118 VLOG(signals) << "fault_addr: " << std::hex << fault_addr; 119 VLOG(signals) << "checking for stack overflow, sp: " << std::hex << sp << 126 VLOG(signals) << "Not a stack overflow"; 130 VLOG(signals) << "Stack overflow found" [all...] |
/external/chromium-trace/catapult/third_party/gsutil/gslib/ |
sig_handling.py | 93 """Returns terminating signals that can be caught on this OS platform.""" 94 signals = [signal.SIGINT, signal.SIGTERM] 97 signals.append(signal.SIGQUIT) 98 return signals
|
/art/runtime/arch/arm/ |
fault_handler_arm.cc | 64 VLOG(signals) << "longjmp address: " << reinterpret_cast<void*>(sc->arm_pc); 73 VLOG(signals) << "sp: " << std::hex << *out_sp; 97 VLOG(signals) << "pc: " << std::hex << static_cast<void*>(ptr); 126 VLOG(signals) << "Generating null pointer exception"; 149 VLOG(signals) << "checking suspend"; 152 VLOG(signals) << "inst2: " << std::hex << inst2 << " checkinst2: " << checkinst2; 164 VLOG(signals) << "inst1: " << std::hex << inst1 << " checkinst1: " << checkinst1; 172 VLOG(signals) << "suspend check match"; 180 VLOG(signals) << "arm lr: " << std::hex << sc->arm_lr; 181 VLOG(signals) << "arm pc: " << std::hex << sc->arm_pc [all...] |
/external/skia/debugger/QT/ |
SkRasterWidget.h | 25 signals:
|
SkGLWidget.h | 38 signals:
|
/prebuilts/go/darwin-x86/src/os/signal/ |
signal.go | 5 // Package signal implements access to incoming signals. 35 // Stop relaying the signals, sigs, to any channels previously registered to 37 // (action=disableSignal) or ignore the signals (action=ignoreSignal). 69 // Ignore causes the provided signals to be ignored. If they are received by 71 // calls to Notify for the provided signals. 72 // If no signals are provided, all incoming signals will be ignored. 77 // Notify causes package signal to relay incoming signals to c. 78 // If no signals are provided, all incoming signals will be relayed to c [all...] |
/prebuilts/go/linux-x86/src/os/signal/ |
signal.go | 5 // Package signal implements access to incoming signals. 35 // Stop relaying the signals, sigs, to any channels previously registered to 37 // (action=disableSignal) or ignore the signals (action=ignoreSignal). 69 // Ignore causes the provided signals to be ignored. If they are received by 71 // calls to Notify for the provided signals. 72 // If no signals are provided, all incoming signals will be ignored. 77 // Notify causes package signal to relay incoming signals to c. 78 // If no signals are provided, all incoming signals will be relayed to c [all...] |
/tools/test/connectivity/acts/framework/acts/ |
asserts.py | 20 from acts import signals 114 signals.TestSkip is raised to mark a test case as skipped. 116 raise signals.TestSkip(reason, extras) 143 signals.TestAbortClass is raised to abort all subsequent tests in a 146 raise signals.TestAbortClass(reason, extras) 162 signals.TestAbortClass is raised to abort all subsequent tests in a 178 signals.TestAbortAll is raised to abort all subsequent tests. 180 raise signals.TestAbortAll(reason, extras) 193 signals.TestAbortAll is raised to abort all subsequent tests. 207 signals.TestFailure is raised to mark a test case as failed [all...] |
/art/runtime/ |
fault_handler.cc | 34 // Typically a signal handler should not need to deal with signals that occur within it. 36 // handled signals (implicit checks), we call a function to try to dump the stack 47 // 2. use pthread_sigmask to allow SIGSEGV and SIGABRT signals to be delivered to the 78 VLOG(signals)<< "Caught unknown SIGSEGV in ART fault handler - chaining to next handler."; 125 VLOG(signals) << "Failed to claim SEGV: " << strerror(errno); 162 // TODO: add SIGSEGV back to the nested signals when we can handle running out stack gracefully. 172 // Unblock the signals we allow so that they can be delivered in the signal handler. 199 // Catch handled signals to invoke our nested handler. 251 VLOG(signals) << "Handling fault"; 253 VLOG(signals) << "in generated code, looking for handler" [all...] |
signal_catcher.cc | 85 // Since we know the thread is just sitting around waiting for signals 161 int SignalCatcher::WaitForSignal(Thread* self, SignalSet& signals) { 164 // Signals for sigwait() must be blocked but not ignored. We 165 // block signals like SIGQUIT for all threads, so the condition 168 int signal_number = signals.Wait(); 197 // Set up mask with signals we want to handle. 198 SignalSet signals; local 199 signals.Add(SIGQUIT); 200 signals.Add(SIGUSR1); 203 int signal_number = signal_catcher->WaitForSignal(self, signals); [all...] |
/art/runtime/arch/x86/ |
fault_handler_x86.cc | 208 VLOG(signals) << "Unhandled x86 instruction with opcode " << static_cast<int>(opcode); 232 VLOG(signals) << "x86 instruction length calculated as " << (pc - startpc); 256 VLOG(signals) << "sp: " << std::hex << *out_sp; 278 VLOG(signals) << HexDump(pc, 32, true, "PC "); 318 VLOG(signals) << "Generating null pointer exception"; 344 VLOG(signals) << "Checking for suspension point"; 360 VLOG(signals) << "Not a suspension point"; 378 VLOG(signals) << "suspend check match"; 395 VLOG(signals) << "removed suspend trigger invoking test suspend"; 398 VLOG(signals) << "Not a suspend check match, first instruction mismatch" [all...] |
/prebuilts/gdb/darwin-x86/lib/python2.7/unittest/ |
__init__.py | 66 from .signals import installHandler, registerResult, removeResult, removeHandler
|
/prebuilts/gdb/linux-x86/lib/python2.7/unittest/ |
__init__.py | 66 from .signals import installHandler, registerResult, removeResult, removeHandler
|
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/unittest/ |
__init__.py | 66 from .signals import installHandler, registerResult, removeResult, removeHandler
|
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/unittest/ |
__init__.py | 66 from .signals import installHandler, registerResult, removeResult, removeHandler
|
/frameworks/base/packages/ExtServices/src/android/ext/services/notification/ |
Ranker.java | 166 Bundle signals = new Bundle(); local 168 signals.putBoolean(Adjustment.NEEDS_AUTOGROUPING_KEY, true); 169 signals.putString(Adjustment.GROUP_KEY_OVERRIDE_KEY, AUTOBUNDLE_KEY); 171 signals.putBoolean(Adjustment.NEEDS_AUTOGROUPING_KEY, false); 173 Adjustment adjustment = new Adjustment(packageName, key, IMPORTANCE_UNSPECIFIED, signals, 203 Bundle signals = new Bundle(); local 205 signals.putString(Adjustment.GROUP_KEY_OVERRIDE_KEY, AUTOBUNDLE_KEY); 207 signals.putString(Adjustment.GROUP_KEY_OVERRIDE_KEY, null); 209 return new Adjustment(packageName, key, IMPORTANCE_UNSPECIFIED, signals,
|
/external/autotest/frontend/afe/ |
management.py | 3 from django.db.models import signals 49 signals.post_syncdb.connect(create_admin_group, sender=models)
|
/prebuilts/go/darwin-x86/src/runtime/ |
os2_solaris.go | 11 _NSIG = 73 /* number of signals in sigtable array */
|
/prebuilts/go/linux-x86/src/runtime/ |
os2_solaris.go | 11 _NSIG = 73 /* number of signals in sigtable array */
|
/external/dbus-binding-generator/chromeos-dbus-bindings/ |
xml_interface_parser_unittest.cc | 84 ASSERT_EQ(1u, interface.signals.size()); 116 EXPECT_EQ(kBssRemovedSignal, interface.signals[0].name); 117 EXPECT_EQ(1u, interface.signals[0].arguments.size()); 120 EXPECT_EQ(kBssArgument, interface.signals[0].arguments[0].name); 121 EXPECT_EQ(kObjectType, interface.signals[0].arguments[0].type);
|
/external/avahi/avahi-gobject/ |
ga-record-browser.c | 29 #include "signals-marshal.h" 45 static guint signals[LAST_SIGNAL] = { 0 }; variable 159 signals[NEW] = 175 signals[REMOVED] = 191 signals[ALL_FOR_NOW] = 199 signals[CACHE_EXHAUSTED] = 207 signals[FAILURE] = 333 g_signal_emit(self, signals[signalid], 0, 339 g_signal_emit(self, signals[CACHE_EXHAUSTED], 0); 342 g_signal_emit(self, signals[ALL_FOR_NOW], 0) [all...] |
ga-service-browser.c | 32 #include "signals-marshal.h" 48 static guint signals[LAST_SIGNAL] = { 0 }; variable 161 signals[NEW] = 175 signals[REMOVED] = 189 signals[ALL_FOR_NOW] = 197 signals[CACHE_EXHAUSTED] = 205 signals[FAILURE] = 310 g_signal_emit(self, signals[signalid], 0, 315 g_signal_emit(self, signals[CACHE_EXHAUSTED], 0); 318 g_signal_emit(self, signals[ALL_FOR_NOW], 0) [all...] |
/external/mdnsresponder/mDNSPosix/ |
PosixDaemon.c | 140 sigset_t signals; local 169 (void) mDNSPosixRunEventLoopOnce(m, &timeout, &signals, &gotData); 171 if (sigismember(&signals, SIGHUP )) Reconfigure(m); 172 if (sigismember(&signals, SIGUSR1)) DumpStateLog(m); 174 if (sigismember(&signals, SIGPIPE)) LogMsg("Received SIGPIPE - ignoring"); 175 if (sigismember(&signals, SIGINT) || sigismember(&signals, SIGTERM)) break;
|