HomeSort by relevance Sort by last modified time
    Searched refs:OID (Results 1 - 25 of 28) sorted by null

1 2

  /external/dropbear/libtomcrypt/src/misc/crypt/
crypt_find_hash_oid.c 24 if (hash_descriptor[x].name != NULL && hash_descriptor[x].OIDlen == IDlen && !XMEMCMP(hash_descriptor[x].OID, ID, sizeof(unsigned long) * IDlen)) {
  /external/smack/src/org/xbill/DNS/
CERTRecord.java 50 /** Certificate format defined by OID */
51 public static final int OID = 254;
69 types.add(OID, "OID");
105 public static final int OID = CertificateType.OID;
  /external/clang/lib/CodeGen/
CGObjCRuntime.h 79 const ObjCInterfaceDecl *OID,
82 const ObjCImplementationDecl *OID,
86 const ObjCInterfaceDecl *OID,
143 virtual void GenerateClass(const ObjCImplementationDecl *OID) = 0;
222 const ObjCInterfaceDecl *OID) = 0;
CGObjCRuntime.cpp 29 const ObjCInterfaceDecl *OID,
65 const ObjCInterfaceDecl *OID,
67 return LookupFieldBitOffset(CGM, OID, 0, Ivar) /
72 const ObjCImplementationDecl *OID,
74 return LookupFieldBitOffset(CGM, OID->getClassInterface(), OID, Ivar) /
86 const ObjCInterfaceDecl *OID,
118 uint64_t FieldBitOffset = LookupFieldBitOffset(CGF.CGM, OID, 0, Ivar);
CGObjCGNU.cpp 405 llvm::Constant *GeneratePropertyList(const ObjCImplementationDecl *OID,
503 const ObjCInterfaceDecl *OID);
    [all...]
CGObjCMac.cpp     [all...]
CGObjC.cpp 291 ObjCInterfaceDecl *OID = 0;
311 OID = ObjTy->getInterface();
312 assert(OID && "Invalid Objective-C class message send");
313 Receiver = Runtime.GetClass(*this, OID);
384 Receiver, Args, OID,
    [all...]
CGDebugInfo.cpp 155 if (const ObjCImplementationDecl *OID =
157 OS << OID->getName();
158 } else if (const ObjCInterfaceDecl *OID =
160 OS << OID->getName();
    [all...]
CodeGenModule.cpp     [all...]
  /external/clang/lib/AST/
DeclPrinter.cpp 927 void DeclPrinter::VisitObjCImplementationDecl(ObjCImplementationDecl *OID) {
928 std::string I = OID->getNameAsString();
929 ObjCInterfaceDecl *SID = OID->getSuperClass();
936 if (OID->ivar_size() > 0) {
939 for (ObjCImplementationDecl::ivar_iterator I = OID->ivar_begin(),
940 E = OID->ivar_end(); I != E; ++I) {
946 VisitDeclContext(OID, false);
950 void DeclPrinter::VisitObjCInterfaceDecl(ObjCInterfaceDecl *OID) {
951 std::string I = OID->getNameAsString();
952 ObjCInterfaceDecl *SID = OID->getSuperClass()
    [all...]
DeclObjC.cpp 152 const ObjCInterfaceDecl *OID = cast<ObjCInterfaceDecl>(this);
155 Cat = OID->visible_categories_begin(),
156 CatEnd = OID->visible_categories_end();
165 I = OID->all_referenced_protocol_begin(),
166 E = OID->all_referenced_protocol_end(); I != E; ++I)
171 if (const ObjCInterfaceDecl *superClass = OID->getSuperClass())
705 const ObjCInterfaceDecl *OID) {
710 if (OID) {
711 selfTy = Context.getObjCInterfaceType(OID);
    [all...]
ASTContext.cpp     [all...]
  /external/dropbear/libtomcrypt/src/pk/rsa/
rsa_sign_hash.c 93 SEQUENCE {hashoid OID
99 LTC_SET_ASN1(digestinfo, 0, LTC_ASN1_OBJECT_IDENTIFIER, hash_descriptor[hash_idx].OID, hash_descriptor[hash_idx].OIDlen);
rsa_verify_hash.c 122 /* now we must decode out[0...outlen-1] using ASN.1, test the OID and then test the hash */
125 SEQUENCE {hashoid OID
141 /* test OID */
143 (XMEMCMP(digestinfo[0].data, hash_descriptor[hash_idx].OID, sizeof(unsigned long) * hash_descriptor[hash_idx].OIDlen) == 0) &&
  /external/dropbear/libtomcrypt/src/pk/dsa/
dsa_encrypt_key.c 112 LTC_ASN1_OBJECT_IDENTIFIER, hash_descriptor[hash].OIDlen, hash_descriptor[hash].OID,
  /external/dropbear/libtomcrypt/src/pk/ecc/
ecc_encrypt_key.c 112 LTC_ASN1_OBJECT_IDENTIFIER, hash_descriptor[hash].OIDlen, hash_descriptor[hash].OID,
  /libcore/luni/src/main/java/org/apache/harmony/security/x509/
NameConstraints.java 138 private byte[] getExtensionValue(X509Certificate cert, String OID) {
140 byte[] bytes = cert.getExtensionValue(OID);
  /prebuilts/tools/common/mkidentity/
mkidentity-prebuilt.jar 
  /external/clang/lib/Edit/
RewriteObjCFoundationAPI.cpp 145 const ObjCInterfaceDecl *OID = ObjTy->getInterface();
149 if (OID->getName() == "NSMapTable" ||
150 OID->getName() == "NSLocale")
151 return OID;
    [all...]
  /external/dropbear/libtomcrypt/src/headers/
tomcrypt_hash.h 159 /** ASN.1 OID */
160 unsigned long OID[16];
  /external/clang/lib/Rewrite/Frontend/
RewriteObjC.cpp 758 static std::string getIvarAccessString(ObjCIvarDecl *OID) {
759 const ObjCInterfaceDecl *ClassDecl = OID->getContainingInterface();
764 S += OID->getName();
787 ObjCIvarDecl *OID = PID->getPropertyIvarDecl();
789 if (!OID)
803 RewriteObjCMethodDecl(OID->getContainingInterface(),
809 // return objc_getProperty(self, _cmd, offsetof(ClassDecl, OID), 1)
    [all...]
RewriteModernObjC.cpp     [all...]
  /external/clang/lib/Sema/
SemaDeclObjC.cpp 381 if (ObjCInterfaceDecl *OID = dyn_cast<ObjCInterfaceDecl>(ContDeclOfMethodDecl))
382 ImplDeclOfMethodDecl = OID->getImplementation();
    [all...]
  /external/clang/tools/libclang/
CIndex.cpp     [all...]
  /prebuilts/devtools/tools/lib/
bcprov-jdk15on-1.48.jar 

Completed in 324 milliseconds

1 2