Home
last modified time | relevance | path

Searched full:subtype (Results 1 – 25 of 362) sorted by relevance

12345678910>>...15

/freebsd-src/sys/contrib/edk2/Include/Protocol/
H A DDevicePath.h51 UINT8 SubType; ///< Varies by Type member
72 /// PCI Device Path SubType.
92 /// PCCARD Device Path SubType.
108 /// Memory Mapped Device Path SubType.
132 /// Hardware Vendor Device Path SubType.
153 /// Controller Device Path SubType.
169 /// BMC Device Path SubType.
194 /// ACPI Device Path SubType.
216 /// Expanded ACPI Device Path SubType.
263 /// ACPI _ADR Device Path SubType.
[all …]
/freebsd-src/sbin/nvmecontrol/modules/wdc/
H A Dwdc.c419 typedef void (*subprint_fn_t)(void *buf, uint16_t subtype, uint8_t res, uint32_t size);
427 static void print_hgst_info_write_errors(void *buf, uint16_t subtype, uint8_t res, uint32_t size);
428 static void print_hgst_info_read_errors(void *buf, uint16_t subtype, uint8_t res, uint32_t size);
429 static void print_hgst_info_verify_errors(void *buf, uint16_t subtype, uint8_t res, uint32_t size);
430 static void print_hgst_info_self_test(void *buf, uint16_t subtype, uint8_t res, uint32_t size);
431 static void print_hgst_info_background_scan(void *buf, uint16_t subtype, uint8_t res, uint32_t size…
432 static void print_hgst_info_erase_errors(void *buf, uint16_t subtype, uint8_t res, uint32_t size);
433 static void print_hgst_info_erase_counts(void *buf, uint16_t subtype, uint8_t res, uint32_t size);
434 static void print_hgst_info_temp_history(void *buf, uint16_t subtype, uint8_t res, uint32_t size);
435 static void print_hgst_info_ssd_perf(void *buf, uint16_t subtype, uint8_t res, uint32_t size);
[all …]
/freebsd-src/sbin/pfctl/
H A Dpfctl_osfp.c99 char *class, *version, *subtype, *desc, *tcpopts; in pfctl_file_fingerprints() local
108 class = version = subtype = desc = tcpopts = NULL; in pfctl_file_fingerprints()
119 if (subtype) in pfctl_file_fingerprints()
120 free(subtype); in pfctl_file_fingerprints()
125 class = version = subtype = desc = tcpopts = NULL; in pfctl_file_fingerprints()
163 GET_STR(subtype, "OS subtype", 0) || in pfctl_file_fingerprints()
243 strlcpy(fp.fp_os.fp_subtype_nm, subtype, in pfctl_file_fingerprints()
257 if (subtype) in pfctl_file_fingerprints()
258 free(subtype); in pfctl_file_fingerprints()
341 int class, version, subtype; in pfctl_get_fingerprint() local
[all …]
/freebsd-src/contrib/llvm-project/compiler-rt/lib/builtins/cpu_model/
H A Dx86.c378 unsigned *Subtype) { in getIntelProcessorTypeAndSubtype()
413 *Subtype = INTEL_COREI7_NEHALEM; in getIntelProcessorTypeAndSubtype()
421 *Subtype = INTEL_COREI7_WESTMERE; in getIntelProcessorTypeAndSubtype()
428 *Subtype = INTEL_COREI7_SANDYBRIDGE; in getIntelProcessorTypeAndSubtype()
434 *Subtype = INTEL_COREI7_IVYBRIDGE; in getIntelProcessorTypeAndSubtype()
444 *Subtype = INTEL_COREI7_HASWELL; in getIntelProcessorTypeAndSubtype()
454 *Subtype = INTEL_COREI7_BROADWELL; in getIntelProcessorTypeAndSubtype()
466 *Subtype = INTEL_COREI7_SKYLAKE; in getIntelProcessorTypeAndSubtype()
473 *Subtype = INTEL_COREI7_ROCKETLAKE; in getIntelProcessorTypeAndSubtype()
481 *Subtype in getIntelProcessorTypeAndSubtype()
306 getIntelProcessorTypeAndSubtype(unsigned Family,unsigned Model,const unsigned * Features,unsigned * Type,unsigned * Subtype) getIntelProcessorTypeAndSubtype() argument
596 getAMDProcessorTypeAndSubtype(unsigned Family,unsigned Model,const unsigned * Features,unsigned * Type,unsigned * Subtype) getAMDProcessorTypeAndSubtype() argument
[all...]
/freebsd-src/contrib/wpa/src/eap_server/
H A Deap_server_sake.c91 u8 id, size_t length, u8 subtype) in eap_sake_build_msg() argument
110 sake->subtype = subtype; in eap_sake_build_msg()
241 u8 version, session_id, subtype; in eap_sake_check() local
253 subtype = resp->subtype; in eap_sake_check()
266 wpa_printf(MSG_DEBUG, "EAP-SAKE: Received frame: subtype=%d", subtype); in eap_sake_check()
268 if (data->state == IDENTITY && subtype == EAP_SAKE_SUBTYPE_IDENTITY) in eap_sake_check()
271 if (data->state == CHALLENGE && subtype == EAP_SAKE_SUBTYPE_CHALLENGE) in eap_sake_check()
274 if (data->state == CONFIRM && subtype == EAP_SAKE_SUBTYPE_CONFIRM) in eap_sake_check()
277 if (subtype == EAP_SAKE_SUBTYPE_AUTH_REJECT) in eap_sake_check()
280 wpa_printf(MSG_INFO, "EAP-SAKE: Unexpected subtype=%d in state=%d", in eap_sake_check()
[all …]
H A Deap_server_sim.c398 u8 subtype) in eap_sim_unexpected_subtype()
400 if (subtype == EAP_SIM_SUBTYPE_CLIENT_ERROR) in eap_sim_unexpected_subtype()
405 if (subtype != EAP_SIM_SUBTYPE_START) { in eap_sim_unexpected_subtype()
407 "subtype %d", subtype); in eap_sim_unexpected_subtype()
412 if (subtype != EAP_SIM_SUBTYPE_CHALLENGE) { in eap_sim_unexpected_subtype()
414 "subtype %d", subtype); in eap_sim_unexpected_subtype()
419 if (subtype != EAP_SIM_SUBTYPE_REAUTHENTICATION) { in eap_sim_unexpected_subtype()
421 "subtype in eap_sim_unexpected_subtype()
380 eap_sim_unexpected_subtype(struct eap_sim_data * data,u8 subtype) eap_sim_unexpected_subtype() argument
737 u8 subtype; eap_sim_process() local
[all...]
H A Deap_server_aka.c725 static bool eap_aka_subtype_ok(struct eap_aka_data *data, u8 subtype) in eap_aka_subtype_ok()
727 if (subtype == EAP_AKA_SUBTYPE_CLIENT_ERROR || in eap_aka_subtype_ok()
728 subtype == EAP_AKA_SUBTYPE_AUTHENTICATION_REJECT) in eap_aka_subtype_ok()
733 if (subtype != EAP_AKA_SUBTYPE_IDENTITY) { in eap_aka_determine_identity()
735 "subtype %d", subtype); in eap_aka_determine_identity()
740 if (subtype != EAP_AKA_SUBTYPE_CHALLENGE && in eap_aka_determine_identity()
741 subtype != EAP_AKA_SUBTYPE_SYNCHRONIZATION_FAILURE) { in eap_aka_determine_identity()
743 "subtype %d", subtype); in eap_aka_determine_identity()
685 eap_aka_subtype_ok(struct eap_aka_data * data,u8 subtype) eap_aka_subtype_ok() argument
1205 u8 subtype; eap_aka_process() local
[all...]
/freebsd-src/contrib/tcpdump/
H A Dprint-lldp.c658 u_int subtype; in lldp_private_8021_print()
666 subtype = GET_U_1(tptr + 3); in lldp_private_8021_print()
668 ND_PRINT("\n\t %s Subtype (%u)", in lldp_private_8021_print()
669 tok2str(lldp_8021_subtype_values, "unknown", subtype), in lldp_private_8021_print()
670 subtype); in lldp_private_8021_print()
672 switch (subtype) { in lldp_private_8021_print()
872 u_int subtype; in lldp_private_8023_print()
877 subtype = GET_U_1(tptr + 3); in lldp_private_8023_print()
879 ND_PRINT("\n\t %s Subtype (%u)", in lldp_private_8023_print()
880 tok2str(lldp_8023_subtype_values, "unknown", subtype), in lldp_private_8023_print()
660 u_int subtype; lldp_private_8021_print() local
874 u_int subtype; lldp_private_8023_print() local
959 u_int subtype; lldp_private_iana_print() local
992 u_int subtype; lldp_private_tia_print() local
1177 u_int subtype; lldp_private_dcbx_print() local
1450 uint8_t subtype; lldp_print() local
[all...]
H A Dprint-eap.c152 u_int type, subtype, len; in eap_print()
187 subtype = GET_U_1(cp + 4); in eap_print()
189 tok2str(eap_type_values, "unknown", subtype), in eap_print()
190 subtype); in eap_print()
192 switch (subtype) { in eap_print()
236 if (subtype == EAP_TYPE_TTLS) in eap_print()
280 ND_PRINT(" subtype [%s] 0x%02x", in eap_print()
154 u_int type, subtype, len; eap_print() local
/freebsd-src/contrib/llvm-project/llvm/lib/TextAPI/
H A DArchitecture.cpp24 #define ARCHINFO(Arch, Type, Subtype, NumBits) \ in getArchitectureFromCpuType() argument
26 (CPUSubType & ~MachO::CPU_SUBTYPE_MASK) == (Subtype)) \ in getArchitectureFromCpuType()
36 #define ARCHINFO(Arch, Type, Subtype, NumBits) .Case(#Arch, AK_##Arch) in getArchitectureFromName() argument
44 #define ARCHINFO(Arch, Type, Subtype, NumBits) \ in getArchitectureName() argument
60 #define ARCHINFO(Arch, Type, Subtype, NumBits) \ in getCPUTypeFromArchitecture() argument
62 return std::make_pair(Type, Subtype); in getCPUTypeFromArchitecture()
80 #define ARCHINFO(Arch, Type, Subtype, NumBits) \ in is64Bit() argument
/freebsd-src/sys/net80211/
H A Dieee80211_adhoc.c74 int subtype, const struct ieee80211_rx_stats *, int, int);
76 int subtype, const struct ieee80211_rx_stats *rxs, int, int);
77 static void adhoc_recv_ctl(struct ieee80211_node *, struct mbuf *, int subtype);
283 doprint(struct ieee80211vap *vap, int subtype) in doprint() argument
285 switch (subtype) { in doprint()
315 uint8_t dir, type, subtype, qos; in adhoc_input() local
340 subtype = IEEE80211_FC0_SUBTYPE_QOS_DATA; in adhoc_input()
375 subtype = wh->i_fc[0] & IEEE80211_FC0_SUBTYPE_MASK; in adhoc_input()
396 (subtype == IEEE80211_FC0_SUBTYPE_BEACON || in adhoc_input()
397 subtype in adhoc_input()
705 adhoc_recv_mgmt(struct ieee80211_node * ni,struct mbuf * m0,int subtype,const struct ieee80211_rx_stats * rxs,int rssi,int nf) adhoc_recv_mgmt() argument
1004 ahdemo_recv_mgmt(struct ieee80211_node * ni,struct mbuf * m0,int subtype,const struct ieee80211_rx_stats * rxs,int rssi,int nf) ahdemo_recv_mgmt() argument
1050 adhoc_recv_ctl(struct ieee80211_node * ni,struct mbuf * m,int subtype) adhoc_recv_ctl() argument
[all...]
H A Dieee80211_wds.c67 static void wds_recv_mgmt(struct ieee80211_node *, struct mbuf *, int subtype,
417 uint8_t dir, type, subtype, qos; in wds_input() local
441 subtype = IEEE80211_FC0_SUBTYPE_QOS_DATA; in wds_input()
478 subtype = wh->i_fc[0] & IEEE80211_FC0_SUBTYPE_MASK; in wds_input()
499 if (IEEE80211_HAS_SEQ(type, subtype)) { in wds_input()
581 if (subtype == IEEE80211_FC0_SUBTYPE_QOS_DATA) in wds_input()
621 if (subtype == IEEE80211_FC0_SUBTYPE_NODATA || in wds_input()
622 subtype == IEEE80211_FC0_SUBTYPE_QOS_NULL) in wds_input()
706 ieee80211_mgt_subtype_name(subtype), in wds_input()
716 vap->iv_recv_mgmt(ni, m, subtype, rx in wds_input()
743 wds_recv_mgmt(struct ieee80211_node * ni,struct mbuf * m0,int subtype,const struct ieee80211_rx_stats * rxs,int rssi,int nf) wds_recv_mgmt() argument
[all...]
H A Dieee80211_sta.c75 int subtype, const struct ieee80211_rx_stats *, int rssi, int nf);
76 static void sta_recv_ctl(struct ieee80211_node *, struct mbuf *, int subtype);
514 doprint(struct ieee80211vap *vap, int subtype) in doprint() argument
516 switch (subtype) { in doprint()
546 uint8_t dir, type, subtype, qos; in sta_input() local
598 subtype = IEEE80211_FC0_SUBTYPE_QOS_DATA; in sta_input()
607 subtype = wh->i_fc[0] & IEEE80211_FC0_SUBTYPE_MASK; in sta_input()
650 if ( IEEE80211_HAS_SEQ(type, subtype) && in sta_input()
792 if (subtype == IEEE80211_FC0_SUBTYPE_QOS_DATA) in sta_input()
837 if (subtype in sta_input()
1395 sta_recv_mgmt(struct ieee80211_node * ni,struct mbuf * m0,int subtype,const struct ieee80211_rx_stats * rxs,int rssi,int nf) sta_recv_mgmt() argument
2059 sta_recv_ctl(struct ieee80211_node * ni,struct mbuf * m,int subtype) sta_recv_ctl() argument
[all...]
/freebsd-src/bin/sh/
H A Dexpand.c542 int subtype, int startloc) in subevalvar_trim() argument
555 switch (subtype) { in subevalvar_trim()
616 const char *var, int subtype, int startloc, int varflags) in subevalvar_misc() argument
626 switch (subtype) { in subevalvar_misc()
656 int subtype; in evalvar() local
670 subtype = varflags & VSTYPE; in evalvar()
694 switch (subtype) { in evalvar()
705 if (set && subtype != VSPLUS) { in evalvar()
713 strtodest(buf, flag, subtype, in evalvar()
716 varvalue(var, varflags & VSQUOTE, subtype, flag, in evalvar()
[all …]
H A Dshow.c171 int subtype; in sharg() local
187 subtype = *++p; in sharg()
188 if (subtype == VSLENGTH) in sharg()
194 if (subtype & VSNUL) in sharg()
197 switch (subtype & VSTYPE) { in sharg()
230 printf("<subtype %d>", subtype); in sharg()
/freebsd-src/sys/dev/mlx5/mlx5_en/
H A Dmlx5_en_main.c56 u32 subtype;
63 .subtype = IFM_1000_CX_SGMII,
67 .subtype = IFM_1000_KX,
71 .subtype = IFM_10G_CX4,
75 .subtype = IFM_10G_KX4,
79 .subtype = IFM_10G_KR,
83 .subtype = IFM_20G_KR2,
87 .subtype = IFM_40G_CR4,
91 .subtype = IFM_40G_KR4,
95 .subtype
51 u32 subtype; global() member
468 mlx5e_find_link_mode(u32 subtype,bool ext) mlx5e_find_link_mode() argument
[all...]
/freebsd-src/crypto/heimdal/lib/asn1/
H A Dgen_seq.c48 type = type->subtype; in generate_type_seq()
56 * Require the subtype to be a type so we can name it and use in generate_type_seq()
60 if (type->subtype->type != TType) { in generate_type_seq()
61 fprintf(stderr, "%s subtype is not a type, can't generate " in generate_type_seq()
63 s->name, (int)type->subtype->type); in generate_type_seq()
67 subname = type->subtype->symbol->gen_name; in generate_type_seq()
/freebsd-src/contrib/wpa/src/eap_peer/
H A Deap_sake.c115 int id, size_t length, u8 subtype) in eap_sake_build_msg() argument
134 sake->subtype = subtype; in eap_sake_build_msg()
379 u8 subtype, session_id, id; in eap_sake_process() local
390 subtype = req->subtype; in eap_sake_process()
394 wpa_printf(MSG_DEBUG, "EAP-SAKE: Received frame: subtype %d " in eap_sake_process()
395 "session_id %d", subtype, session_id); in eap_sake_process()
413 switch (subtype) { in eap_sake_process()
428 "unknown subtype %d", subtype); in eap_sake_process()
/freebsd-src/stand/efi/include/
H A Defidevp.h37 UINT8 SubType; member
52 #define DP_IS_END_SUBTYPE(a) ( ((a)->SubType == END_ENTIRE_DEVICE_PATH_SUBTYPE )
55 #define DevicePathSubType(a) ( (a)->SubType )
60 #define IsDevicePathEndSubType(a) ( (a)->SubType == END_ENTIRE_DEVICE_PATH_SUBTYPE )
72 (a)->SubType = END_ENTIRE_DEVICE_PATH_SUBTYPE; \
290 /* Device Logical Unit SubType. */
307 /* DNS Device Path SubType */
318 /* Uniform Resource Identifiers (URI) Device Path SubType */
/freebsd-src/stand/efi/libefi/
H A Ddevpath.c139 uint8_t subtype = DevicePathSubType(node); in efi_hw_dev_path() local
143 switch (subtype) { in efi_hw_dev_path()
172 if (asprintf(&name, "UnknownHW(%x)%s", subtype, tail) < 0) in efi_hw_dev_path()
183 uint8_t subtype = DevicePathSubType(node); in efi_acpi_dev_path() local
188 switch (subtype) { in efi_acpi_dev_path()
237 if (asprintf(&name, "UnknownACPI(%x)%s", subtype, tail) < 0) in efi_acpi_dev_path()
248 uint8_t subtype = DevicePathSubType(node); in efi_messaging_dev_path() local
253 switch (subtype) { in efi_messaging_dev_path()
327 subtype, tail) < 0) in efi_messaging_dev_path()
338 uint8_t subtype = DevicePathSubType(node); in efi_media_dev_path() local
[all …]
/freebsd-src/share/man/man5/
H A Dpf.os.551 .It subtype
52 The subtype of patchlevel of the operating system.
54 The overall textual description of the operating system, version and subtype.
173 .Ar subtype
174 is the subtype or patch level of the operating system version.
/freebsd-src/sbin/ifconfig/
H A Difmedia.c196 int subtype; in setmedia() local
209 subtype = get_media_subtype(ifmr->ifm_ulist[0], val); in setmedia()
212 IFM_TYPE(ifmr->ifm_ulist[0]) | subtype; in setmedia()
288 ifmedia_t subtype; in get_media_subtype() local
290 subtype = ifconfig_media_lookup_subtype(media, val); in get_media_subtype()
291 if (subtype != INVALID_IFMEDIA) in get_media_subtype()
292 return (subtype); in get_media_subtype()
297 errx(EXIT_FAILURE, "unknown media subtype: %s", val); in get_media_subtype()
391 printf("<unknown subtype>"); in print_media()
437 printf("<unknown subtype>"); in print_media_ifconfig()
/freebsd-src/contrib/llvm-project/llvm/lib/TargetParser/
H A DHost.cpp713 unsigned *Subtype) { in getIntelProcessorTypeAndSubtype()
759 *Subtype = X86::INTEL_COREI7_NEHALEM; in getIntelProcessorTypeAndSubtype()
767 *Subtype = X86::INTEL_COREI7_WESTMERE; in getIntelProcessorTypeAndSubtype()
774 *Subtype = X86::INTEL_COREI7_SANDYBRIDGE; in getIntelProcessorTypeAndSubtype()
780 *Subtype = X86::INTEL_COREI7_IVYBRIDGE; in getIntelProcessorTypeAndSubtype()
790 *Subtype = X86::INTEL_COREI7_HASWELL; in getIntelProcessorTypeAndSubtype()
800 *Subtype = X86::INTEL_COREI7_BROADWELL; in getIntelProcessorTypeAndSubtype()
812 *Subtype = X86::INTEL_COREI7_SKYLAKE; in getIntelProcessorTypeAndSubtype()
819 *Subtype = X86::INTEL_COREI7_ROCKETLAKE; in getIntelProcessorTypeAndSubtype()
827 *Subtype in getIntelProcessorTypeAndSubtype()
683 getIntelProcessorTypeAndSubtype(unsigned Family,unsigned Model,const unsigned * Features,unsigned * Type,unsigned * Subtype) getIntelProcessorTypeAndSubtype() argument
1049 getAMDProcessorTypeAndSubtype(unsigned Family,unsigned Model,const unsigned * Features,unsigned * Type,unsigned * Subtype) getAMDProcessorTypeAndSubtype() argument
1357 unsigned Subtype = 0; getHostCPUName() local
[all...]
/freebsd-src/contrib/llvm-project/llvm/lib/Target/ARM/MCTargetDesc/
H A DARMAsmBackendDarwin.h22 const MachO::CPUSubTypeARM Subtype;
28 Subtype((MachO::CPUSubTypeARM)cantFail( in ARMAsmBackendDarwin()
34 /*Is64Bit=*/false, cantFail(MachO::getCPUType(TT)), Subtype); in createObjectTargetWriter()
/freebsd-src/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/
H A DConversionChecker.cpp142 QualType SubType = Cast->IgnoreParenImpCasts()->getType(); in isLossOfPrecision() local
144 if (!DestType->isRealType() || !SubType->isIntegerType()) in isLossOfPrecision()
173 unsigned CorrectedSrcWidth = AC.getIntWidth(SubType); in isLossOfPrecision()
174 if (SubType->isSignedIntegerType()) in isLossOfPrecision()
194 QualType SubType = Cast->IgnoreParenImpCasts()->getType(); in isLossOfSign() local
196 if (!CastType->isUnsignedIntegerType() || !SubType->isSignedIntegerType()) in isLossOfSign()

12345678910>>...15