Searched refs:vendor (Results 1 - 25 of 345) sorted by relevance

1234567891011>>

/freebsd-10-stable/contrib/ofed/management/opensm/include/vendor/
H A Dosm_vendor.h38 * Include file used by OpenSM to pull in the correct vendor file.
43 the proper vendor specific file
48 #include <vendor/osm_vendor_test.h>
50 #include <vendor/osm_vendor_umadt.h>
54 #include <vendor/osm_vendor_mlx.h>
57 #include <vendor/osm_vendor_mlx.h>
60 #include <vendor/osm_vendor_mlx.h>
63 #include <vendor/osm_vendor_mlx.h>
65 #include <vendor/osm_vendor_ibumad.h>
67 #include <vendor/osm_vendor_a
[all...]
H A Dosm_vendor_mlx_defs.h39 #include <vendor/osm_vendor_mlx_inout.h>
41 #include <vendor/osm_vendor_api.h>
42 #include <vendor/osm_vendor_mlx_txn.h>
H A Dosm_vendor_mlx_hca.h39 #include <vendor/osm_vendor.h>
40 #include <vendor/osm_vendor_mlx_inout.h>
H A Dosm_vendor_mlx_transport.h49 #include <vendor/osm_vendor_mlx.h>
50 #include <vendor/osm_vendor_mlx_defs.h>
H A Dosm_vendor_umadt.h50 #include <vendor/umadt.h>
80 * handle returned by the vendor transport bind call.
93 * Umadt vendor transport layer uses this tag to call the appropriate
H A Dosm_mtl_bind.h40 #include <vendor/osm_vendor_mtl.h>
41 #include <vendor/osm_vendor_api.h>
60 * Nulled on init of the vendor obj. Populated on first bind.
109 * Pointer to the vendor object.
/freebsd-10-stable/contrib/wpa/src/eap_server/
H A Deap_server_methods.c21 * @vendor: EAP Vendor-Id (0 = IETF)
25 const struct eap_method * eap_server_get_eap_method(int vendor, EapType method) argument
29 if (m->vendor == vendor && m->method == method)
39 * @vendor: Buffer for returning EAP Vendor-Id
45 EapType eap_server_get_type(const char *name, int *vendor) argument
50 *vendor = m->vendor;
54 *vendor = EAP_VENDOR_IETF;
63 * @vendor
71 eap_server_method_alloc(int version, int vendor, EapType method, const char *name) argument
161 eap_server_get_name(int vendor, EapType type) argument
[all...]
H A Deap_methods.h14 const struct eap_method * eap_server_get_eap_method(int vendor,
16 struct eap_method * eap_server_method_alloc(int version, int vendor,
21 EapType eap_server_get_type(const char *name, int *vendor);
23 const char * eap_server_get_name(int vendor, EapType type);
/freebsd-10-stable/lib/libefi/
H A Defi_nextvarname.c45 efi_nextvarname(size_t *namesize, char *name, uuid_t *vendor) argument
55 req.vendor = *vendor;
62 *vendor = req.vendor;
H A Defi_setvar.c47 efi_setvar(char *name, uuid_t *vendor, uint32_t attrib, size_t datasize, argument
58 req.vendor = *vendor;
H A Defi_getvar.c47 efi_getvar(char *name, uuid_t *vendor, uint32_t *attrib, size_t *datasize, argument
58 req.vendor = *vendor;
/freebsd-10-stable/tools/tools/ifinfo/
H A Drfc1650.c86 #define vendor(name, sets) { name, sets, (sizeof sets)/(sizeof sets[0]) } macro
93 vendor("AMD", amd),
94 vendor("Intel", intel),
96 vendor("National Semiconductor", national),
97 vendor("Fujitsu", fujitsu),
98 vendor("Digital", digital),
99 vendor("Western Digital", westerndigital)
105 enum dot3Vendors vendor = DOT3CHIPSET_VENDOR(chipset); local
109 if (vendor < 1
110 || vendor >
[all...]
/freebsd-10-stable/contrib/binutils/bfd/
H A Delf-attrs.c70 /* Return the vendor name for a given object attributes section. */
72 vendor_obj_attr_name (bfd *abfd, int vendor) argument
74 return (vendor == OBJ_ATTR_PROC
81 for that vendor to record and the vendor is OBJ_ATTR_GNU. */
83 vendor_obj_attr_size (bfd *abfd, int vendor) argument
89 const char *vendor_name = vendor_obj_attr_name (abfd, vendor);
94 attr = elf_known_obj_attributes (abfd)[vendor];
99 for (list = elf_other_obj_attributes (abfd)[vendor];
105 return ((size || vendor
168 vendor_set_obj_attr_contents(bfd *abfd, bfd_byte *contents, bfd_vma size, int vendor) argument
202 int vendor; local
223 elf_new_obj_attr(bfd *abfd, int vendor, int tag) argument
261 bfd_elf_get_obj_attr_int(bfd *abfd, int vendor, int tag) argument
287 bfd_elf_add_obj_attr_int(bfd *abfd, int vendor, int tag, unsigned int i) argument
310 bfd_elf_add_obj_attr_string(bfd *abfd, int vendor, int tag, const char *s) argument
321 bfd_elf_add_obj_attr_compat(bfd *abfd, int vendor, unsigned int i, const char *s) argument
359 int vendor; local
418 _bfd_elf_obj_attrs_arg_type(bfd *abfd, int vendor, int tag) argument
460 int vendor; local
565 int vendor; local
[all...]
/freebsd-10-stable/contrib/wpa/src/eap_peer/
H A Deap_methods.h14 const struct eap_method * eap_peer_get_eap_method(int vendor, EapType method);
17 struct eap_method * eap_peer_method_alloc(int version, int vendor,
25 EapType eap_peer_get_type(const char *name, int *vendor);
26 const char * eap_get_name(int vendor, EapType type);
33 static inline EapType eap_peer_get_type(const char *name, int *vendor) argument
35 *vendor = EAP_VENDOR_IETF;
39 static inline const char * eap_get_name(int vendor, EapType type) argument
H A Deap_methods.c24 * @vendor: EAP Vendor-Id (0 = IETF)
28 const struct eap_method * eap_peer_get_eap_method(int vendor, EapType method) argument
32 if (m->vendor == vendor && m->method == method)
42 * @vendor: Buffer for returning EAP Vendor-Id
48 EapType eap_peer_get_type(const char *name, int *vendor) argument
53 *vendor = m->vendor;
57 *vendor = EAP_VENDOR_IETF;
64 * @vendor
71 eap_get_name(int vendor, EapType type) argument
279 eap_peer_method_alloc(int version, int vendor, EapType method, const char *name) argument
[all...]
/freebsd-10-stable/contrib/ofed/management/opensm/osmtest/include/
H A Dosmtest_base.h47 #include <vendor/winosm_common.h>
/freebsd-10-stable/contrib/wpa/src/eap_common/
H A Deap_common.h15 const u8 * eap_hdr_validate(int vendor, EapType eap_type,
17 struct wpabuf * eap_msg_alloc(int vendor, EapType type, size_t payload_len,
H A Deap_gpsk_common.h40 u8 vendor[4]; member in struct:eap_gpsk_csuite
48 int eap_gpsk_supported_ciphersuite(int vendor, int specifier);
49 int eap_gpsk_derive_keys(const u8 *psk, size_t psk_len, int vendor,
56 size_t eap_gpsk_mic_len(int vendor, int specifier);
57 int eap_gpsk_compute_mic(const u8 *sk, size_t sk_len, int vendor,
H A Deap_common.c52 * @vendor: Expected EAP Vendor-Id (0 = IETF)
66 const u8 * eap_hdr_validate(int vendor, EapType eap_type, argument
93 if (exp_vendor != vendor || exp_type != (u32) eap_type) {
102 if (vendor != EAP_VENDOR_IETF || *pos != eap_type) {
114 * @vendor: Vendor-Id (0 = IETF)
128 struct wpabuf * eap_msg_alloc(int vendor, EapType type, size_t payload_len, argument
135 len = sizeof(struct eap_hdr) + (vendor == EAP_VENDOR_IETF ? 1 : 8) +
146 if (vendor == EAP_VENDOR_IETF) {
150 wpabuf_put_be24(buf, vendor);
/freebsd-10-stable/crypto/heimdal/lib/kadm5/
H A Dkadm5-pwcheck.h69 const char *vendor; member in struct:kadm5_pw_policy_verifier
/freebsd-10-stable/contrib/tcsh/
H A Dtc.vers.c151 const Char *vendor = tgetenv(STRVENDOR); local
154 if (vendor == NULL)
155 vendor = STRunknown;
164 REV, VERS, PATCHLEVEL, ORIGIN, DATE, machtype, vendor, ostype,
/freebsd-10-stable/sys/cddl/compat/opensolaris/sys/
H A Dsunddi.h60 int _ddi_log_sysevent(char *vendor, char *class_name, char *subclass_name,
62 #define ddi_log_sysevent(dip, vendor, class_name, subclass_name, \
64 _ddi_log_sysevent((vendor), (class_name), (subclass_name), \
/freebsd-10-stable/sys/dev/puc/
H A Dpuc_pccard.c59 const char *vendor, *product; local
62 error = pccard_get_vendor_str(dev, &vendor);
68 if (!strcmp(vendor, "PCMCIA") && !strcmp(product, "RS-COM 2P"))
H A Dpuc_pci.c90 uint16_t vendor, device; local
93 vendor = pci_get_vendor(dev);
98 while (desc->vendor != 0xffff) {
99 if (desc->vendor == vendor && desc->device == device) {
/freebsd-10-stable/lib/libkiconv/
H A Dquirks.c67 int vendor; /* reserved for non MS mapping */ member in struct:__anon5885
118 kiconv_quirkcs(const char* base, int vendor) argument
128 if (quirk_list[i].vendor == vendor &&
190 kiconv_quirkcs(const char* base __unused, int vendor __unused)

Completed in 154 milliseconds

1234567891011>>