/freebsd/contrib/bsnmp/snmpd/ |
H A D | snmpmod.h | 79 #define NEXT_OBJECT_OID_LINK_INDEX_TYPE(LIST, OID, SUB, LINK, INDEX, TYPE) ({\ argument 83 if (index_compare(OID, SUB, &_lelem->INDEX) < 0) \ 88 #define FIND_OBJECT_OID_LINK_INDEX_TYPE(LIST, OID, SUB, LINK, INDEX, TYPE) ({\ argument 92 if (index_compare(OID, SUB, &_lelem->INDEX) == 0) \ 149 #define FIND_OBJECT_OID_LINK_INDEX(LIST, OID, SUB, LINK, INDEX) ({ \ argument 153 if (index_compare(OID, SUB, &_lelem->INDEX) == 0) \ 158 #define NEXT_OBJECT_OID_LINK_INDEX(LIST, OID, SUB, LINK, INDEX) ({ \ argument 162 if (index_compare(OID, SUB, &_lelem->INDEX) < 0) \ 167 #define FIND_OBJECT_INT_LINK_INDEX(LIST, OID, SUB, LINK, INDEX) ({ \ argument 170 if ((OID)->len - SUB != 1) \ [all …]
|
H A D | tree.def | 52 (2 sysObjectId OID op_system_group GET) 62 (2 sysORID OID GET) 179 (3 begemotSnmpdTransportOid OID GET) 181 (2 begemotSnmpdTransUdp OID op_transport_dummy) 182 (3 begemotSnmpdTransLsock OID op_transport_dummy) 183 (4 begemotSnmpdTransInet OID op_transport_dummy) 197 (1 begemotSnmpdAgentFreeBSD OID op_dummy) 210 (1 snmpTrapOID OID op_snmp_trap) 213 (1 coldStart OID op_snmp_trap) 214 (2 warmStart OID op_snmp_trap) [all …]
|
/freebsd/crypto/openssl/fuzz/ |
H A D | mkfuzzoids.pl | 34 my $OID = $1; 37 $OID =~ s|0x|\\x|g; 38 $OID =~ s|,||g; 40 print "$OBJname=\"$OID\"\n";
|
/freebsd/contrib/bsnmp/ |
H A D | oid-list | 3 This file documents the OID assignments under BSNMP's private OID. 6 an official OID for Fokus: enterprises 12325 and assigned the sub-OID 1 7 to the software I develop. Under this OID there are: 41 If you need an OID and don't know where to stuck it in, I can assign you one -
|
/freebsd/contrib/bearssl/src/x509/ |
H A D | asn1.t0 | 56 "Invalid OID" puts cr exitvm ; 78 \ Decode an OID from source, and encode it. First byte is length, 79 \ followed by encoded ASN.1 DER value. The OID is encoded in the 81 : OID 102 \ Define a new data word for an encoded OID. The OID is read from the 104 : OID: 105 new-data-block next-word define-data-word postpone OID ; 350 OID: rsaEncryption 1.2.840.113549.1.1.1 352 OID: sha1WithRSAEncryption 1.2.840.113549.1.1.5 353 OID: sha224WithRSAEncryption 1.2.840.113549.1.1.14 [all …]
|
H A D | x509_minimal.t0 | 136 * then a failure is reported). The hash OID and length are stored 662 \ Read the OID. If the OID could not be read (too 664 read-OID drop 986 OID: basicConstraints 2.5.29.19 987 OID: keyUsage 2.5.29.15 988 OID: subjectAltName 2.5.29.17 989 OID: certificatePolicies 2.5.29.32 992 OID: id-qt-cps 1.3.6.1.5.5.7.2.1 995 OID: authorityKeyIdentifier 2.5.29.35 996 OID: subjectKeyIdentifier 2.5.29.14 [all …]
|
H A D | x509_decoder.t0 | 131 OID: basicConstraints 2.5.29.19 195 \ OID, since we only support RSA keys. 198 read-OID ifnot ERR_X509_UNSUPPORTED fail then 224 \ field should be an OID. 246 \ with an OID, an optional boolean, and a value; the value is 257 read-OID drop 284 read-OID if
|
/freebsd/usr.sbin/bsnmpd/modules/snmp_hostres/ |
H A D | hostres_tree.def | 72 (2 hrStorageType OID GET) 123 (2 hrDeviceType OID GET) 125 (4 hrDeviceID OID GET) 132 (1 hrProcessorFrwID OID GET) 169 (4 hrFSType OID GET) 232 (3 hrSWRunID OID GET) 255 (3 hrSWInstalledID OID GET)
|
/freebsd/contrib/llvm-project/clang/lib/CodeGen/ |
H A D | CGObjCRuntime.h | 81 const ObjCInterfaceDecl *OID, 84 const ObjCImplementationDecl *OID, 88 const ObjCInterfaceDecl *OID, 158 virtual void GenerateClass(const ObjCImplementationDecl *OID) = 0; 188 const ObjCInterfaceDecl *OID, 273 const ObjCInterfaceDecl *OID) = 0;
|
H A D | CGObjCRuntime.cpp | 32 const ObjCInterfaceDecl *OID, in ComputeIvarBaseOffset() argument 34 return CGM.getContext().lookupFieldBitOffset(OID, nullptr, Ivar) / in ComputeIvarBaseOffset() 39 const ObjCImplementationDecl *OID, in ComputeIvarBaseOffset() argument 41 return CGM.getContext().lookupFieldBitOffset(OID->getClassInterface(), OID, in ComputeIvarBaseOffset() 55 const ObjCInterfaceDecl *OID, in EmitValueForIvarAtOffset() argument 61 QualType InterfaceTy{OID->getTypeForDecl(), 0}; in EmitValueForIvarAtOffset() 89 CGF.CGM.getContext().lookupFieldBitOffset(OID, nullptr, Ivar); in EmitValueForIvarAtOffset()
|
H A D | CGObjCGNU.cpp | 583 const ObjCInterfaceDecl *OID) override; 1252 const ObjCInterfaceDecl *OID = nullptr; in GetClassVar() local 1254 if ((OID = dyn_cast<ObjCInterfaceDecl>(Result))) in GetClassVar() 1260 assert(OID && "Failed to find ObjCInterfaceDecl"); in GetClassVar() 1261 const ObjCInterfaceDecl *OIDDef = OID->getDefinition(); in GetClassVar() 1263 OID = OIDDef; in GetClassVar() 1266 if (OID->hasAttr<DLLImportAttr>()) in GetClassVar() 1268 else if (OID->hasAttr<DLLExportAttr>()) in GetClassVar() 1714 void GenerateClass(const ObjCImplementationDecl *OID) override { in GenerateClass() argument 1720 const_cast<ObjCInterfaceDecl *>(OID->getClassInterface()); in GenerateClass() [all …]
|
/freebsd/contrib/llvm-project/clang/lib/AST/ |
H A D | DeclPrinter.cpp | 1427 void DeclPrinter::VisitObjCImplementationDecl(ObjCImplementationDecl *OID) { in VisitObjCImplementationDecl() argument 1428 std::string I = OID->getNameAsString(); in VisitObjCImplementationDecl() 1429 ObjCInterfaceDecl *SID = OID->getSuperClass(); in VisitObjCImplementationDecl() 1437 if (OID->ivar_size() > 0) { in VisitObjCImplementationDecl() 1441 for (const auto *I : OID->ivars()) { in VisitObjCImplementationDecl() 1448 else if (SID || (OID->decls_begin() != OID->decls_end())) { in VisitObjCImplementationDecl() 1452 VisitDeclContext(OID, false); in VisitObjCImplementationDecl() 1458 void DeclPrinter::VisitObjCInterfaceDecl(ObjCInterfaceDecl *OID) { in VisitObjCInterfaceDecl() argument 1459 std::string I = OID->getNameAsString(); in VisitObjCInterfaceDecl() 1460 ObjCInterfaceDecl *SID = OID->getSuperClass(); in VisitObjCInterfaceDecl() [all …]
|
/freebsd/contrib/ntp/ntpsnmpd/ |
H A D | README | 20 Please note that currently I use a private MIB OID (enterprises.5597 is the Meinberg top level OEM … 21 The final OID has to be registered with IANA and this is done by the RFC Editor when the NTPv4 MIB …
|
H A D | ntpsnmpd-opts.def | 66 currently uses a private MIB OID, 68 which is the Meinberg top level OEM OID, and 71 The final OID has to be registered with IANA
|
/freebsd/contrib/bsnmp/snmp_usm/ |
H A D | usm_tree.def | 73 (4 usmUserCloneFrom OID GET SET) 74 (5 usmUserAuthProtocol OID GET SET) 77 (8 usmUserPrivProtocol OID GET SET)
|
/freebsd/crypto/openssl/doc/man3/ |
H A D | OSSL_ALGORITHM.pod | 57 This is the name of the algorithm's OBJECT IDENTIFIER (OID), as given by the 64 This is the OID itself for C<rsaEncryption>, in canonical decimal text form. 115 get a text representation of the OID, which may be a long or short name for 116 OIDs that are registered, or the OID itself in canonical decimal text form 120 I<algorithm_names> include known names as well as the OID itself in
|
H A D | OBJ_nid2obj.pod | 49 a representation of the ASN1 OBJECT IDENTIFIER (OID) type. 116 For example the OID for commonName has the following definitions: 133 form of an OID. 136 corresponding ASN.1 OBJECT IDENTIFIER encoding (for example no OID currently 142 represent both an internal, constant, OID and a dynamically-created one.
|
H A D | ASN1_generate_nconf.pod | 74 =item B<OBJECT>, B<OID> 192 SEQUENCE consisting of a BOOL an OID and a UTF8String: 199 field2 = OID:commonName 246 # algorithm ID for RSA is just an OID and a NULL 248 algorithm=OID:rsaEncryption
|
H A D | X509_ALGOR_dup.pod | 23 X509_ALGOR_set0() sets the algorithm OID of B<alg> to B<aobj> and the 31 algorithm OID in B<*paobj> and the associated parameter in B<*pptype>
|
/freebsd/usr.sbin/bsnmpd/modules/snmp_bridge/ |
H A D | bridge_tree.def | 79 (1 newRoot OID op_snmp_trap) 80 (2 topologyChange OID op_snmp_trap) 90 (3 dot1dBasePortCircuit OID GET) 182 (1 begemotBridgeNewRoot OID op_snmp_trap) 183 (2 begemotBridgeTopologyChange OID op_snmp_trap)
|
/freebsd/crypto/openssl/providers/common/der/ |
H A D | DSA.asn1 | 12 -- OID for DSA public key 17 -- OID for DSA signature generated with SHA-1 hash
|
/freebsd/crypto/openssl/crypto/objects/ |
H A D | obj_xref.txt | 1 # OID cross reference table. 27 # Alternative deprecated OIDs. By using the older "rsa" OID this
|
/freebsd/contrib/bsnmp/snmp_mibII/ |
H A D | mibII_tree.def | 61 (22 ifSpecific OID GET) 112 (9 ipCidrRouteInfo OID GET) # SET 256 (3 linkDown OID op_snmp_trap) 257 (4 linkUp OID op_snmp_trap)
|
/freebsd/share/snmp/mibs/ |
H A D | FREEBSD-MIB.txt | 80 "Subtree to register FreeBSD versions. The OID for a FreeBSD 82 from the release number to this base OID. Examples:
|
/freebsd/etc/gss/ |
H A D | mech | 2 # Name OID Library name Kernel module
|