/freebsd-src/sys/dev/mii/ |
H A D | miidevs | 120 model AGERE ET1011 0x0001 ET1011 10/100/1000baseT PHY 121 model AGERE ET1011C 0x0004 ET1011C 10/100/1000baseT PHY 124 model ALTIMA ACXXX 0x0001 ACXXX 10/100 media interface 125 model ALTIMA AC101L 0x0012 AC101L 10/100 media interface 126 model ALTIMA AC101 0x0021 AC101 10/100 media interface 128 model ALTIMA Am79C875 0x0014 Am79C875 10/100 media interface 129 model ALTIMA Am79C874 0x0021 Am79C874 10/100 media interface 133 model yyAMD 79C972_10T 0x0001 Am79C972 internal 10BASE-T interface 134 model yyAMD 79c973phy 0x0036 Am79C973 internal 10/100 media interface 135 model yyAMD 79c901 0x0037 Am79C901 10BASE-T interface [all …]
|
/freebsd-src/contrib/kyua/model/ |
H A D | test_result_test.cpp | 29 #include "model/test_result.hpp" 60 ATF_REQUIRE_EQ(expected, model::test_result(result_type).good()); \ 82 model::test_result_broken, 84 model::test_result(model::test_result_broken, "The reason")); 87 model::test_result_expected_failure, 89 model::test_result(model::test_result_expected_failure, "The reason")); 92 model::test_result_failed, 94 model::test_result(model::test_result_failed, "The reason")); 97 model::test_result_passed, 99 model::test_result(model::test_result_passed)); [all …]
|
H A D | test_case_test.cpp | 29 #include "model/test_case.hpp" 35 #include "model/metadata.hpp" 36 #include "model/test_result.hpp" 49 const model::metadata md = model::metadata_builder() in ATF_TEST_CASE_BODY() 52 const model::test_case test_case("foo", md); in ATF_TEST_CASE_BODY() 62 const model::test_result result(model::test_result_skipped, in ATF_TEST_CASE_BODY() 64 const model::test_case test_case("__foo__", "Some description", result); in ATF_TEST_CASE_BODY() 68 const model in ATF_TEST_CASE_BODY() [all...] |
H A D | test_program_test.cpp | 29 #include "model/test_program.hpp" 42 #include "model/exceptions.hpp" 43 #include "model/metadata.hpp" 44 #include "model/test_case.hpp" 45 #include "model/test_result.hpp" 65 class lazy_test_program : public model::test_program { 73 model::test_cases_map _lazy_test_cases; 88 const model::metadata& metadata_, in lazy_test_program() 89 const model::test_cases_map& test_cases_) : in lazy_test_program() 91 metadata_, model in lazy_test_program() [all...] |
H A D | Makefile.am.inc | 34 libmodel_a_SOURCES = model/context.cpp 35 libmodel_a_SOURCES += model/context.hpp 36 libmodel_a_SOURCES += model/context_fwd.hpp 37 libmodel_a_SOURCES += model/exceptions.cpp 38 libmodel_a_SOURCES += model/exceptions.hpp 39 libmodel_a_SOURCES += model/metadata.cpp 40 libmodel_a_SOURCES += model/metadata.hpp 41 libmodel_a_SOURCES += model/metadata_fwd.hpp 42 libmodel_a_SOURCES += model/test_case.cpp 43 libmodel_a_SOURCES += model/test_case.hpp [all …]
|
H A D | metadata_test.cpp | 29 #include "model/metadata.hpp" 35 #include "model/types.hpp" 49 const model::metadata md = model::metadata_builder().build(); in ATF_TEST_CASE_BODY() 70 model::strings_set architectures; in ATF_TEST_CASE_BODY() 74 model::strings_set platforms; in ATF_TEST_CASE_BODY() 78 model::properties_map custom; in ATF_TEST_CASE_BODY() 82 model::strings_set configs; in ATF_TEST_CASE_BODY() 86 model::paths_set files; in ATF_TEST_CASE_BODY() 90 model in ATF_TEST_CASE_BODY() [all...] |
H A D | metadata.cpp | 29 #include "model/metadata.hpp" 34 #include "model/exceptions.hpp" 35 #include "model/types.hpp" 272 model::strings_set()); in set_defaults() 274 model::strings_set()); in set_defaults() 281 model::strings_set()); in set_defaults() 283 tree.set< paths_set_node >("required_files", model::paths_set()); in set_defaults() 285 tree.set< paths_set_node >("required_programs", model::paths_set()); in set_defaults() 318 /// \throw model::error If the key is not known or if the value is not valid. in lookup_rw() 326 throw model in lookup_rw() [all...] |
H A D | test_program.cpp | 29 #include "model/test_program.hpp" 34 #include "model/exceptions.hpp" 35 #include "model/metadata.hpp" 36 #include "model/test_case.hpp" 37 #include "model/test_result.hpp" 52 struct model::test_program::impl : utils::noncopyable { 66 model::metadata md; 71 model::test_cases_map test_cases; 84 const model::metadata& md_, const model::test_cases_map& test_cases_) : in impl() 102 set_test_cases(const model::test_cases_map& test_cases_) in set_test_cases() [all …]
|
H A D | test_case.cpp | 29 #include "model/test_case.hpp" 31 #include "model/metadata.hpp" 32 #include "model/test_result.hpp" 45 struct model::test_case::impl : utils::noncopyable { 55 const model::metadata* md_defaults; 58 model::metadata md; 61 optional< model::test_result > fake_result; 71 const model::metadata* md_defaults_, in impl() 72 const model::metadata& md_, in impl() 73 const optional< model::test_result >& fake_result_) : in impl() [all …]
|
H A D | test_program.hpp | 29 /// \file model/test_program.hpp 35 #include "model/test_program_fwd.hpp" 42 #include "model/metadata_fwd.hpp" 43 #include "model/test_case_fwd.hpp" 47 namespace model { namespace 58 void set_test_cases(const model::test_cases_map&); 63 const model::metadata&, const model::test_cases_map&); 71 const model::metadata& get_metadata(void) const; 73 const model::test_case& find(const std::string&) const; 74 virtual const model::test_cases_map& test_cases(void) const; [all …]
|
/freebsd-src/contrib/kyua/engine/ |
H A D | requirements_test.cpp | 29 #include "model/metadata.hpp" 52 const model::metadata md = model::metadata_builder().build(); in ATF_TEST_CASE_BODY() 61 const model::metadata md = model::metadata_builder() in ATF_TEST_CASE_BODY() 75 const model::metadata md = model::metadata_builder() in ATF_TEST_CASE_BODY() 90 const model::metadata md = model::metadata_builder() in ATF_TEST_CASE_BODY() 106 const model::metadata md = model::metadata_builder() in ATF_TEST_CASE_BODY() 123 const model::metadata md = model::metadata_builder() in ATF_TEST_CASE_BODY() 137 const model::metadata md = model::metadata_builder() in ATF_TEST_CASE_BODY() 152 const model::metadata md = model::metadata_builder() in ATF_TEST_CASE_BODY() 168 const model::metadata md = model::metadata_builder() in ATF_TEST_CASE_BODY() [all …]
|
H A D | atf_test.cpp | 41 #include "model/metadata.hpp" 42 #include "model/test_case.hpp" 43 #include "model/test_program_fwd.hpp" 44 #include "model/test_result.hpp" 76 static model::test_cases_map 86 model::metadata_builder().build(), user_config, handle); in list_one() 90 const model::test_cases_map test_cases = handle.list_tests( in list_one() 112 const model::test_cases_map test_cases = list_one( in check_list_one_fail() 116 const model::test_case& test_case = test_cases.begin()->second; in check_list_one_fail() 136 const model::test_result& exp_result, in run_one() [all …]
|
H A D | scheduler_test.cpp | 47 #include "model/context.hpp" 48 #include "model/metadata.hpp" 49 #include "model/test_case.hpp" 50 #include "model/test_program.hpp" 51 #include "model/test_result.hpp" 194 exec_print_params(const model::test_program& test_program, in exec_print_params() 221 exec_list(const model::test_program& test_program, in exec_list() 265 model::test_cases_map 288 model::test_cases_map_builder test_cases_builder; in parse_list() 312 exec_test(const model::test_program& test_program, in exec_test() [all …]
|
H A D | tap_test.cpp | 39 #include "model/metadata.hpp" 40 #include "model/test_case.hpp" 41 #include "model/test_program.hpp" 42 #include "model/test_result.hpp" 86 const model::test_result& exp_result, in run_one() 87 const model::metadata& metadata = model::metadata_builder().build(), in run_one() 91 const model::test_program_ptr program = model::test_program_builder( in run_one() 118 const model::test_program program = model::test_program_builder( in ATF_TEST_CASE_BODY() 123 const model::test_cases_map test_cases = handle.list_tests( in ATF_TEST_CASE_BODY() 127 const model::test_cases_map exp_test_cases = model::test_cases_map_builder() in ATF_TEST_CASE_BODY() [all …]
|
H A D | plain_test.cpp | 39 #include "model/metadata.hpp" 40 #include "model/test_case.hpp" 41 #include "model/test_program.hpp" 42 #include "model/test_result.hpp" 86 const model::test_result& exp_result, in run_one() 87 const model::metadata& metadata = model::metadata_builder().build(), in run_one() 91 const model::test_program_ptr program = model::test_program_builder( in run_one() 118 const model::test_program program = model::test_program_builder( in ATF_TEST_CASE_BODY() 123 const model::test_cases_map test_cases = handle.list_tests( in ATF_TEST_CASE_BODY() 127 const model::test_cases_map exp_test_cases = model::test_cases_map_builder() in ATF_TEST_CASE_BODY() [all …]
|
H A D | tap.cpp | 40 #include "model/test_case.hpp" 41 #include "model/test_program.hpp" 42 #include "model/test_result.hpp" 71 static model::test_result in tap_to_result() 76 return model::test_result(model::test_result_failed, "Bailed out"); in tap_to_result() 80 return model::test_result(model::test_result_skipped, in tap_to_result() 86 return model::test_result(model in tap_to_result() [all...] |
H A D | scanner_test.cpp | 38 #include "model/metadata.hpp" 39 #include "model/test_case.hpp" 40 #include "model/test_program.hpp" 54 class mock_test_program : public model::test_program { 59 mutable model::test_cases_map _test_cases; 67 "unused-suite", model::metadata_builder().build(), in mock_test_program() 68 model::test_cases_map()), in mock_test_program() 76 const model::test_cases_map& 80 const model::metadata metadata = model::metadata_builder().build(); in test_cases() 81 const model::test_case tc1("one", metadata); in test_cases() [all …]
|
H A D | atf_list_test.cpp | 37 #include "model/metadata.hpp" 38 #include "model/test_case.hpp" 39 #include "model/types.hpp" 53 const model::properties_map properties; in ATF_TEST_CASE_BODY() 54 const model::metadata md = engine::parse_atf_metadata(properties); in ATF_TEST_CASE_BODY() 56 const model::metadata exp_md = model::metadata_builder().build(); in ATF_TEST_CASE_BODY() 64 model::properties_map properties; in ATF_TEST_CASE_BODY() 79 const model::metadata md = engine::parse_atf_metadata(properties); in ATF_TEST_CASE_BODY() 81 const model in ATF_TEST_CASE_BODY() [all...] |
H A D | plain.cpp | 38 #include "model/test_case.hpp" 39 #include "model/test_program.hpp" 40 #include "model/test_result.hpp" 65 const model::test_program& /* test_program */, in exec_list() 75 model::test_cases_map in parse_list() 81 return model::test_cases_map_builder().add("main").build(); 96 const model::test_program& test_program, in exec_test() 123 model::test_result in compute_result() 131 return model::test_result(model in compute_result() [all...] |
/freebsd-src/contrib/kyua/store/ |
H A D | schema_inttest.cpp | 33 #include "model/context.hpp" 34 #include "model/metadata.hpp" 35 #include "model/test_program.hpp" 36 #include "model/test_result.hpp" 90 const model::context context(root, environment); in check_action_1() 112 const model::context context(root, environment); in check_action_2() 116 const model::test_program test_program_1 = model::test_program_builder( in check_action_2() 121 const model::test_result result_1(model::test_result_passed); in check_action_2() 123 const model::test_program test_program_2 = model::test_program_builder( in check_action_2() 127 model::metadata_builder() in check_action_2() [all …]
|
/freebsd-src/sys/contrib/device-tree/Bindings/arm/bcm/ |
H A D | bcm2835.yaml | 23 - raspberrypi,4-model-b 29 - raspberrypi,5-model-b 35 - raspberrypi,model-a 36 - raspberrypi,model-a-plus 37 - raspberrypi,model-b 38 - raspberrypi,model-b-i2c0 # Raspberry Pi Model B (no P5) 39 - raspberrypi,model-b-rev2 40 - raspberrypi,model-b-plus 42 - raspberrypi,model [all...] |
/freebsd-src/sys/dev/acpi_support/ |
H A D | acpi_asus.c | 120 struct acpi_asus_model *model; member 535 struct acpi_asus_model *model; in acpi_asus_probe() local 585 sc->model = &acpi_samsung_models[0]; in acpi_asus_probe() 593 sc->model = &acpi_eeepc_models[0]; in acpi_asus_probe() 603 for (model = acpi_asus_models; model->name != NULL; model++) { in acpi_asus_probe() 604 if (strncmp(Obj->String.Pointer, model->name, 3) == 0) { in acpi_asus_probe() 606 sc->model = model; in acpi_asus_probe() 623 else if (strncmp(model->name, "xxN", 3) == 0 && in acpi_asus_probe() 627 else if (strncmp(model->name, "A1x", 3) == 0 && in acpi_asus_probe() 630 else if (strncmp(model->name, "A2x", 3) == 0 && in acpi_asus_probe() [all …]
|
/freebsd-src/contrib/expat/examples/ |
H A D | element_declarations.c | 61 const XML_Content *model; 67 stackPushMalloc(Stack *stackTop, const XML_Content *model, unsigned level) { in stackPushMalloc() 72 newStackTop->model = model; in stackPushMalloc() 122 dumpContentModelElement(const XML_Content *model, unsigned level, in dumpContentModelElement() 131 printf("[%u] type=%s(%u), quant=%s(%u)", (unsigned)(model - root), in dumpContentModelElement() 132 contentTypeName(model->type), (unsigned int)model->type, in dumpContentModelElement() 133 contentQuantName(model->quant), (unsigned int)model in dumpContentModelElement() 60 const XML_Content *model; global() member 66 stackPushMalloc(Stack * stackTop,const XML_Content * model,unsigned level) stackPushMalloc() argument 121 dumpContentModelElement(const XML_Content * model,unsigned level,const XML_Content * root) dumpContentModelElement() argument 151 const XML_Content *const model = stackTop->model; dumpContentModel() local 179 handleElementDeclaration(void * userData,const XML_Char * name,XML_Content * model) handleElementDeclaration() argument [all...] |
/freebsd-src/contrib/llvm-project/compiler-rt/lib/builtins/cpu_model/ |
H A D | x86.c | 360 unsigned *Model) { in getIntelProcessorTypeAndSubtype() 362 *Model = (EAX >> 4) & 0xf; // Bits 4 - 7 in getIntelProcessorTypeAndSubtype() 367 // Examine extended model ID if family ID is 6 or F. in getIntelProcessorTypeAndSubtype() 368 *Model += ((EAX >> 16) & 0xf) << 4; // Bits 16 - 19 in getIntelProcessorTypeAndSubtype() 375 unsigned Model, in getIntelProcessorTypeAndSubtype() 385 switch (Model) { in getIntelProcessorTypeAndSubtype() 389 // Pentium Dual-Core processor, Intel Xeon processor, model in getIntelProcessorTypeAndSubtype() 391 case 0x16: // Intel Celeron processor model 16h. All processors are in getIntelProcessorTypeAndSubtype() 396 case 0x17: // Intel Core 2 Extreme processor, Intel Xeon processor, model in getIntelProcessorTypeAndSubtype() 408 // As found in a Summer 2010 model iMa in getIntelProcessorTypeAndSubtype() 290 detectX86FamilyModel(unsigned EAX,unsigned * Family,unsigned * Model) detectX86FamilyModel() argument 303 getIntelProcessorTypeAndSubtype(unsigned Family,unsigned Model,const unsigned * Features,unsigned * Type,unsigned * Subtype) getIntelProcessorTypeAndSubtype() argument 593 getAMDProcessorTypeAndSubtype(unsigned Family,unsigned Model,const unsigned * Features,unsigned * Type,unsigned * Subtype) getAMDProcessorTypeAndSubtype() argument 898 unsigned Model, Family; __cpu_indicator_init() local [all...] |
/freebsd-src/contrib/kyua/drivers/ |
H A D | report_junit_test.cpp | 38 #include "model/context.hpp" 39 #include "model/metadata.hpp" 40 #include "model/test_case.hpp" 41 #include "model/test_program.hpp" 42 #include "model/test_result.hpp" 108 const model::context context(fs::path("/root"), env); 124 const std::vector< model::test_result >& results, in add_tests() 127 model::test_program_builder test_program_builder( in add_tests() 131 model::metadata_builder builder; in add_tests() 139 const model in add_tests() [all...] |