/third_party/icu/icu4c/source/tools/genren/ |
H A D | genren.pl | 126 /* Error out before the following defines cause very strange and unexpected code breakage */
|
/third_party/pulseaudio/src/pulsecore/ |
H A D | core.h | 28 /* This is a bitmask that encodes the cause why a sink/source is 41 PA_SUSPEND_ALL = 0xFFFF /* Magic cause that can be used to resume forcibly */ 281 /* Converts the given suspend cause to a string. The string is written to the 283 const char *pa_suspend_cause_to_string(pa_suspend_cause_t cause, char buf[PA_SUSPEND_CAUSE_TO_STRING_BUF_SIZE]);
|
H A D | source.h | 129 /* Callbacks for doing things when the source state and/or suspend cause is 131 * implementation doesn't have anything to do on state or suspend cause 151 * state is set to SUSPENDED and the suspend cause is set to 0. */ 394 int pa_source_suspend(pa_source *s, bool suspend, pa_suspend_cause_t cause); 395 int pa_source_suspend_all(pa_core *c, bool suspend, pa_suspend_cause_t cause);
|
H A D | sink.h | 128 /* Callbacks for doing things when the sink state and/or suspend cause is 130 * implementation doesn't have anything to do on state or suspend cause 150 * state is set to SUSPENDED and the suspend cause is set to 0. */ 467 int pa_sink_suspend(pa_sink *s, bool suspend, pa_suspend_cause_t cause); 468 int pa_sink_suspend_all(pa_core *c, bool suspend, pa_suspend_cause_t cause);
|
H A D | source.c | 385 /* Here's something to think about: what to do with the suspend cause if in source_set_state() 386 * resuming the source fails? The old suspend cause will be incorrect, so we in source_set_state() 387 * can't use that. On the other hand, if we set no suspend cause (as is the in source_set_state() 389 * any cause. It might be a good idea to add a new "resume failed" suspend in source_set_state() 390 * cause, or it might just add unnecessary complexity, given that the in source_set_state() 391 * current approach of not setting any suspend cause works well enough. */ in source_set_state() 406 /* We know the state isn't changing. If the suspend cause isn't in source_set_state() 431 /* We know the state isn't changing. If the suspend cause isn't in source_set_state() 728 /* It's important to keep the suspend cause unchanged when unlinking, in pa_source_unlink() 729 * because if we remove the SESSION suspend cause her in pa_source_unlink() 838 pa_source_suspend(pa_source *s, bool suspend, pa_suspend_cause_t cause) pa_source_suspend() argument 2335 pa_source_suspend_all(pa_core *c, bool suspend, pa_suspend_cause_t cause) pa_source_suspend_all() argument [all...] |
/third_party/skia/third_party/externals/icu/source/tools/genren/ |
H A D | genren.pl | 126 /* Error out before the following defines cause very strange and unexpected code breakage */
|
/third_party/node/lib/internal/webstreams/ |
H A D | adapters.js | 141 const err = new AbortError(undefined, { cause: error }); 251 // thrown we don't want those to cause an unhandled 313 // thrown we don't want those to cause an unhandled 345 // thrown we don't want those to cause an unhandled 444 const err = new AbortError(undefined, { cause: error }); 530 // thrown we don't want those to cause an unhandled 677 // thrown we don't want those to cause an unhandled 739 // thrown we don't want those to cause an unhandled 774 // thrown we don't want those to cause an unhandled
|
/third_party/python/Lib/test/test_asyncio/ |
H A D | test_timeouts.py | 278 cause = exc.exception.__cause__ 279 assert isinstance(cause, asyncio.CancelledError)
|
/third_party/mesa3d/src/panfrost/bifrost/valhall/ |
H A D | va_pack.c | 39 invalid_instruction(const bi_instr *I, const char *cause, ...) in invalid_instruction() argument 44 va_start(ap, cause); in invalid_instruction() 45 vfprintf(stderr, cause, ap); in invalid_instruction()
|
/third_party/node/lib/internal/ |
H A D | errors.js | 1147 this.cause = error; 1610 this.cause = tokenCausedError; 1631 this.cause = error; 1727 E('ERR_VM_MODULE_LINK_FAILURE', function(message, cause) { 1728 this.cause = cause;
|
/third_party/protobuf/java/core/src/main/java/com/google/protobuf/ |
H A D | GeneratedMessageLite.java | 1167 final Throwable cause = e.getCause(); in invokeOrDie() 1168 if (cause instanceof RuntimeException) { in invokeOrDie() 1169 throw (RuntimeException) cause; in invokeOrDie() 1170 } else if (cause instanceof Error) { in invokeOrDie() 1171 throw (Error) cause; in invokeOrDie() 1174 "Unexpected exception thrown by generated accessor method.", cause); in invokeOrDie()
|
H A D | GeneratedMessageV3.java | 1196 // TODO(xiangl): Taken care of following code, it may cause in writeUntil() 1862 final Throwable cause = e.getCause(); in invokeOrDie() 1863 if (cause instanceof RuntimeException) { in invokeOrDie() 1864 throw (RuntimeException) cause; in invokeOrDie() 1865 } else if (cause instanceof Error) { in invokeOrDie() 1866 throw (Error) cause; in invokeOrDie() 1869 "Unexpected exception thrown by generated accessor method.", cause); in invokeOrDie()
|
H A D | GeneratedMessage.java | 1028 // TODO(xiangl): Taken care of following code, it may cause in writeUntil() 1988 final Throwable cause = e.getCause(); in invokeOrDie() 1989 if (cause instanceof RuntimeException) { in invokeOrDie() 1990 throw (RuntimeException) cause; in invokeOrDie() 1991 } else if (cause instanceof Error) { in invokeOrDie() 1992 throw (Error) cause; in invokeOrDie() 1995 "Unexpected exception thrown by generated accessor method.", cause); in invokeOrDie()
|
H A D | CodedOutputStream.java | 961 OutOfSpaceException(Throwable cause) { in OutOfSpaceException() argument 962 super(MESSAGE, cause); in OutOfSpaceException() 965 OutOfSpaceException(String explanationMessage, Throwable cause) { in OutOfSpaceException() argument 966 super(MESSAGE + ": " + explanationMessage, cause); in OutOfSpaceException() 982 final void inefficientWriteStringNoTag(String value, UnpairedSurrogateException cause) in inefficientWriteStringNoTag() argument 987 cause); in inefficientWriteStringNoTag()
|
/third_party/libunwind/libunwind/tests/ |
H A D | x64-test-dwarf-expressions.S | 33 # these registers and cause this test to fail mysteriously.
|
/third_party/node/lib/internal/crypto/ |
H A D | aes.js | 239 { name: 'OperationError', cause: err });
|
/third_party/node/lib/internal/fs/ |
H A D | recursive_watch.js | 267 const onAbort = () => reject(new AbortError(undefined, { cause: signal.reason }));
|
/third_party/node/lib/internal/streams/ |
H A D | duplexify.js | 218 throw new AbortError(undefined, { cause: signal.reason });
|
/third_party/node/lib/internal/test_runner/reporter/ |
H A D | spec.js | 61 const err = error.code === 'ERR_TEST_FAILURE' ? error.cause : error;
|
/third_party/node/test/parallel/ |
H A D | test-vm-module-errors.js | 160 cause: error,
|
/third_party/ltp/utils/benchmark/kernbench-0.42/ |
H A D | kernbench | 83 echo Maximal loads will not measure cpu throughput and may cause a swapstorm!
|
/third_party/python/PCbuild/ |
H A D | find_msbuild.bat | 15 @rem case can cause us to break immediately.
|
/third_party/python/Python/ |
H A D | pythonrun.c | 1256 "The above exception was the direct cause " 1350 PyObject *cause = PyException_GetCause(value); in print_exception_cause_and_context() local 1351 if (cause) { in print_exception_cause_and_context() 1353 if (!print_exception_seen_lookup(ctx, cause)) { in print_exception_cause_and_context() 1354 err = print_chained(ctx, cause, cause_message, "cause"); in print_exception_cause_and_context() 1356 Py_DECREF(cause); in print_exception_cause_and_context()
|
/third_party/node/lib/internal/util/ |
H A D | inspect.js | 1246 let cause; 1248 ({ cause } = err); 1250 // If 'cause' is a getter that throws, ignore it. 1253 // Remove stack frames identical to frames in cause. 1254 if (cause != null && isError(cause)) { 1255 const causeStack = getStackString(cause); 1262 const msg = ` ... ${skipped} lines matching cause stack trace ...`; 1373 if ('cause' in err && 1374 (keys.length === 0 || !ArrayPrototypeIncludes(keys, 'cause'))) { [all...] |
/third_party/python/Lib/test/ |
H A D | test_traceback.py | 1257 "\nThe above exception was the direct cause " 1352 # When both a cause and a context are set, only the cause should be 1626 f'The above exception was the direct cause of the following exception:\n' 2410 cause = Exception("cause") 2411 raise Exception("uh oh") from cause 2417 exc_cause = traceback.TracebackException(Exception, cause, None) 2475 cause = Exception("cause") [all...] |