/freebsd/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/java_api/src/ |
H A D | TestStateMachine.java | 77 } catch (Exception e) { in beforeOpen() 88 } catch (Exception e) { in beforeOpen() 99 } catch (Exception e) { in beforeOpen() 108 } catch (Exception e) { in beforeOpen() 117 } catch (Exception e) { in beforeOpen() 128 } catch (Exception e) { in beforeOpen() 137 } catch (Exception e) { in beforeOpen() 148 } catch (Exception e) { in beforeOpen() 159 } catch (Exception e) { in beforeOpen() 167 } catch (Exception e) { in beforeOpen() [all …]
|
H A D | TestEnable.java | 64 } catch (Exception e) { in main() 75 } catch (Exception e) { in main() 86 } catch (Exception e) { in main() 99 } catch (Exception e) { in main() 110 } catch (Exception e) { in main() 126 } catch (Exception e) { in main()
|
H A D | TestGetAggregate.java | 165 } catch (Exception e) { in startIncludedTest() 182 } catch (Exception e) { in startIncludedTest() 199 } catch (Exception e) { in startClearedTest() 216 } catch (Exception e) { in startClearedTest()
|
H A D | TestBean.java | 99 } catch (Exception e) { in getXMLEncoder() 120 } catch (Exception e) { in getXMLDecoder() 527 } catch (Exception e) { in getProgram$File() 559 } catch (Exception e) { in getString() 580 } catch (Exception e) { in checkEquality() 597 } catch (Exception e) { in performSerializationTest() 632 } catch (Exception e) { in performBeanTest() 681 } catch (Exception e) { in main()
|
/freebsd/sys/contrib/dev/acpica/components/utilities/ |
H A D | utexcep.c | 181 const ACPI_EXCEPTION_INFO *Exception; in AcpiFormatException() local 187 Exception = AcpiUtValidateException (Status); in AcpiFormatException() 188 if (!Exception) in AcpiFormatException() 198 return (Exception->Name); in AcpiFormatException() 223 const ACPI_EXCEPTION_INFO *Exception = NULL; in ACPI_EXPORT_SYMBOL() local 240 Exception = &AcpiGbl_ExceptionNames_Env [SubStatus]; in ACPI_EXPORT_SYMBOL() 248 Exception = &AcpiGbl_ExceptionNames_Pgm [SubStatus]; in ACPI_EXPORT_SYMBOL() 256 Exception = &AcpiGbl_ExceptionNames_Tbl [SubStatus]; in ACPI_EXPORT_SYMBOL() 264 Exception = &AcpiGbl_ExceptionNames_Aml [SubStatus]; in ACPI_EXPORT_SYMBOL() 272 Exception = &AcpiGbl_ExceptionNames_Ctrl [SubStatus]; in ACPI_EXPORT_SYMBOL() [all …]
|
/freebsd/contrib/bearssl/T0/ |
H A D | T0Comp.cs | 162 } catch (Exception e) { in Main() 313 throw new Exception( in T0Comp() 317 throw new Exception( in T0Comp() 333 throw new Exception( in T0Comp() 337 throw new Exception( in T0Comp() 341 throw new Exception( in T0Comp() 377 throw new Exception(string.Format( in T0Comp() 399 throw new Exception( in T0Comp() 405 throw new Exception( in T0Comp() 410 throw new Exception("min/max in wrong order"); in T0Comp() [all …]
|
H A D | WordBuilder.cs | 75 throw new Exception("control-flow stack is not empty"); in Build() 161 throw new Exception("not an origin"); in CSPopOrig() 174 throw new Exception("not a destination"); in CSPopDest() 251 throw new Exception("no such local: " + name); in GetLocal() 265 throw new Exception("no such local: " + name); in PutLocal() 275 throw new Exception(String.Format( in DefLocal()
|
H A D | WordInterpreted.cs | 133 throw new Exception(string.Format( in MergeSA() 150 throw new Exception("recursive call detected in '" in AnalyseFlow() 180 throw new Exception(string.Format( in AnalyseFlow() 198 throw new Exception(string.Format( in AnalyseFlow() 256 throw new Exception(string.Format( in AnalyseFlow()
|
H A D | Opcode.cs | 44 throw new Exception("Not a call opcode"); in ResolveTarget() 54 throw new Exception("Not a jump opcode"); in ResolveJump()
|
H A D | OpcodeCall.cs | 44 throw new Exception("Opcode already resolved"); in ResolveTarget() 57 throw new Exception("Unresolved call target"); in GetReference()
|
H A D | Word.cs | 99 throw new Exception(String.Format( in Run() 135 throw new Exception("Word does not yield code elements"); in GenerateCodeElements()
|
/freebsd/lib/libdevdctl/ |
H A D | exception.cc | 56 Exception::FormatLog(const char *fmt, va_list ap) in FormatLog() 64 Exception::Exception(const char *fmt, ...) in Exception() function in DevdCtl::Exception 73 Exception::Exception() in Exception() function in DevdCtl::Exception 78 Exception::Log() const in Log() 87 : Exception(), in ParseException()
|
H A D | exception.h | 52 class Exception 61 Exception(const char *fmt, ...); 74 Exception(); 86 Exception::GetString() in GetString() 96 class ParseException : public Exception
|
H A D | consumer.cc | 197 } catch (const Exception &exp) { in NextEvent() 243 throw Exception("Consumer::EventsPending(): " in EventsPending() 247 throw Exception("Consumer::EventsPending(): " in EventsPending()
|
/freebsd/contrib/wpa/wpa_supplicant/examples/ |
H A D | p2p-nfc.py | 72 except Exception as e: 172 except Exception as e: 184 except Exception as e: 197 except Exception as e: 223 except Exception as e: 230 except Exception as e: 289 except Exception as e: 305 except Exception as e: 335 except Exception as e: 358 except Exception as e: [all …]
|
H A D | wps-nfc.py | 61 except Exception as e: 167 except Exception as e: 194 except Exception as e: 220 except Exception as e: 233 except Exception as e: 259 except Exception as e: 266 except Exception as e: 379 except Exception as e: 510 except Exception as e:
|
/freebsd/contrib/llvm-project/llvm/lib/ObjectYAML/ |
H A D | MinidumpYAML.cpp | 72 case StreamType::Exception: in getKind() 73 return StreamKind::Exception; in getKind() 100 case StreamKind::Exception: in create() 380 void yaml::MappingTraits<minidump::Exception>::mapping( in mapping() 381 yaml::IO &IO, minidump::Exception &Exception) { in mapping() argument 382 mapRequiredHex(IO, "Exception Code", Exception.ExceptionCode); in mapping() 383 mapOptionalHex(IO, "Exception Flags", Exception.ExceptionFlags, 0); in mapping() 384 mapOptionalHex(IO, "Exception Record", Exception.ExceptionRecord, 0); in mapping() 385 mapOptionalHex(IO, "Exception Address", Exception.ExceptionAddress, 0); in mapping() 386 mapOptional(IO, "Number of Parameters", Exception.NumberParameters, 0); in mapping() [all …]
|
/freebsd/contrib/llvm-project/llvm/include/llvm/ObjectYAML/ |
H A D | MinidumpYAML.h | 29 Exception, enumerator 113 : Stream(StreamKind::Exception, minidump::StreamType::Exception), in ExceptionStream() 118 : Stream(StreamKind::Exception, minidump::StreamType::Exception), in ExceptionStream() 122 return S->Kind == StreamKind::Exception; in classof() 262 LLVM_YAML_DECLARE_MAPPING_TRAITS(llvm::minidump::Exception)
|
/freebsd/contrib/wpa/wpa_supplicant/ |
H A D | eapol_test.py | 27 raise Exception("Failed to connect to eapol_test (%s)" % ifname) 34 raise Exception("ADD_NETWORK failed") 40 raise Exception("REMOVE_NETWORK failed") 46 raise Exception("SET_NETWORK failed") 52 raise Exception("SET_NETWORK failed")
|
/freebsd/cddl/usr.sbin/zfsd/ |
H A D | zfsd_exception.cc | 63 : DevdCtl::Exception(), in ZfsdException() 75 : DevdCtl::Exception(), in ZfsdException() 87 : DevdCtl::Exception(), in ZfsdException()
|
/freebsd/contrib/ntp/sntp/unity/auto/ |
H A D | unity_test_summary.py | 33 raise Exception("Empty test result file: %s" % result_file) 107 raise Exception("Couldn't parse test results: %s" % summary) 122 raise Exception("No *.testpass or *.testfail files found in '%s'" % targets_dir) 134 except Exception as e:
|
/freebsd/contrib/sqlite3/ |
H A D | Replace.cs | 78 Exception = 4 enumerator 211 catch (Exception e) in Main() 218 return (int)ExitCode.Exception; in Main()
|
/freebsd/contrib/wpa/hostapd/ |
H A D | wps-ap-nfc.py | 57 except Exception as e: 137 except Exception as e: 164 except Exception as e: 239 except Exception as e: 327 except Exception as e:
|
/freebsd/tests/sys/common/ |
H A D | sender.py | 106 except Exception as e: 113 raise Exception from e 185 except Exception as e: 192 raise Exception from e
|
/freebsd/tests/sys/netpfil/pf/ |
H A D | sctp.py | 93 raise Exception("Failed to create socket") 111 raise Exception("Failed to bind: %d" % ctypes.get_errno()) 115 raise Exception("Failed to listen") 123 raise Exception("Failed to accept") 159 raise Exception("Failed to open socket") 172 raise Exception("Failed to connect") 195 raise Exception(ctypes.get_errno()) 240 raise Exception("Failed to send message")
|