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

1 2

  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/asn1/cms/
Attribute.java 16 private ASN1ObjectIdentifier attrType;
44 attrType = (ASN1ObjectIdentifier)seq.getObjectAt(0);
52 DERObjectIdentifier attrType,
55 this.attrType = new ASN1ObjectIdentifier(attrType.getId());
60 ASN1ObjectIdentifier attrType,
63 this.attrType = attrType;
69 return attrType;
86 * attrType OBJECT IDENTIFIER
    [all...]
AttributeTable.java 233 * @param attrType
237 public AttributeTable add(ASN1ObjectIdentifier attrType, ASN1Encodable attrValue)
241 newTable.addAttribute(attrType, new Attribute(attrType, new DERSet(attrValue)));
246 public AttributeTable remove(ASN1ObjectIdentifier attrType)
250 newTable.attributes.remove(attrType);
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/asn1/x509/
Attribute.java 15 private ASN1ObjectIdentifier attrType;
48 attrType = ASN1ObjectIdentifier.getInstance(seq.getObjectAt(0));
53 ASN1ObjectIdentifier attrType,
56 this.attrType = attrType;
62 return new ASN1ObjectIdentifier(attrType.getId());
79 * attrType OBJECT IDENTIFIER,
88 v.add(attrType);
  /external/libnl-headers/netlink/
attr.h 139 * @arg attrtype Attribute type.
143 #define NLA_PUT(msg, attrtype, attrlen, data) \
145 if (nla_put(msg, attrtype, attrlen, data) < 0) \
154 * @arg attrtype Attribute type.
157 #define NLA_PUT_TYPE(msg, type, attrtype, value) \
160 NLA_PUT(msg, attrtype, sizeof(type), &__tmp); \
166 * @arg attrtype Attribute type.
169 #define NLA_PUT_U8(msg, attrtype, value) \
170 NLA_PUT_TYPE(msg, uint8_t, attrtype, value)
175 * @arg attrtype Attribute type
    [all...]
  /system/core/libnl_2/
attr.c 75 struct nlattr *nla_nest_start(struct nl_msg *msg, int attrtype)
80 rc = nla_put(msg, attrtype, 0, NULL);
151 int nla_put(struct nl_msg *msg, int attrtype, int datalen, const void *data)
156 nla = nla_reserve(msg, attrtype, datalen);
166 int nla_put_u8(struct nl_msg *msg, int attrtype, uint8_t value)
168 return nla_put(msg, attrtype, sizeof(uint8_t), &value);
172 int nla_put_u16(struct nl_msg *msg, int attrtype, uint16_t value)
174 return nla_put(msg, attrtype, sizeof(uint16_t), &value);
178 int nla_put_u32(struct nl_msg *msg, int attrtype, uint32_t value)
180 return nla_put(msg, attrtype, sizeof(uint32_t), &value)
    [all...]
  /external/kernel-headers/original/linux/
rtnetlink.h 625 extern void __rta_fill(struct sk_buff *skb, int attrtype, int attrlen, const void *data);
627 #define RTA_PUT(skb, attrtype, attrlen, data) \
630 __rta_fill(skb, attrtype, attrlen, data); })
642 #define RTA_PUT_U8(skb, attrtype, value) \
644 RTA_PUT(skb, attrtype, sizeof(u8), &_tmp); })
646 #define RTA_PUT_U16(skb, attrtype, value) \
648 RTA_PUT(skb, attrtype, sizeof(u16), &_tmp); })
650 #define RTA_PUT_U32(skb, attrtype, value) \
652 RTA_PUT(skb, attrtype, sizeof(u32), &_tmp); })
654 #define RTA_PUT_U64(skb, attrtype, value)
    [all...]
  /external/webkit/LayoutTests/dom/html/level1/core/
hc_documentcreateattribute.js 97 var attrType;
111 attrType = newAttrNode.nodeType;
113 assertEquals("type",2,attrType);
  /external/webkit/LayoutTests/dom/xhtml/level1/core/
hc_documentcreateattribute.js 97 var attrType;
111 attrType = newAttrNode.nodeType;
113 assertEquals("type",2,attrType);
  /libcore/dom/src/test/java/org/w3c/domts/level1/core/
documentcreateattribute.java 69 int attrType;
76 attrType = (int) newAttrNode.getNodeType();
77 assertEquals("type", 2, attrType);
hc_documentcreateattribute.java 68 int attrType;
75 attrType = (int) newAttrNode.getNodeType();
76 assertEquals("type", 2, attrType);
  /external/openssl/crypto/x509/
x509_att.c 285 int X509_ATTRIBUTE_set1_data(X509_ATTRIBUTE *attr, int attrtype, const void *data, int len)
291 if(attrtype & MBSTRING_FLAG) {
292 stmp = ASN1_STRING_set_by_NID(NULL, data, len, attrtype,
300 if(!(stmp = ASN1_STRING_type_new(attrtype))) goto err;
302 atype = attrtype;
310 if (attrtype == 0)
313 if ((len == -1) && !(attrtype & MBSTRING_FLAG))
315 if (!ASN1_TYPE_set1(ttmp, attrtype, data))
x509.h     [all...]
  /external/kernel-headers/original/linux/netfilter/
nfnetlink.h 126 extern void __nfa_fill(struct sk_buff *skb, int attrtype,
128 #define NFA_PUT(skb, attrtype, attrlen, data) \
130 __nfa_fill(skb, attrtype, attrlen, data); })
  /external/jsilver/src/com/google/streamhtmlparser/
HtmlParserFactory.java 185 * @param attrtype the attribute type which the parser should be in
193 HtmlParser.ATTR_TYPE attrtype,
198 switch (attrtype) {
235 "Did not recognize ATTR_TYPE given: " + attrtype);
  /external/iproute2/ip/
iplink_vlan.c 43 int attrtype)
51 addattr_l(n, 1024, attrtype, NULL, 0);
  /external/llvm/lib/Target/ARM/
ARMBuildAttrs.h 21 // AttrType (below) entries in the .ARM.attributes section in the ELF.
25 enum AttrType {
  /frameworks/base/libs/androidfw/
ResourceTypes.cpp     [all...]
  /external/webkit/Source/WebCore/bindings/scripts/
CodeGeneratorV8.pm 686 my $attrType = GetTypeFromSignature($attribute->signature);
738 if ($getterStringUsesImp && $reflect && !$url && IsNodeSubType($dataNode) && $codeGenerator->IsStringType($attrType)) {
831 if ($codeGenerator->IsSVGAnimatedType($implClassName) and $codeGenerator->IsSVGTypeNeedingTearOff($attrType)) {
832 $implIncludes{"V8$attrType.h"} = 1;
833 my $svgNativeType = $codeGenerator->GetSVGTypeNeedingTearOff($attrType);
836 } elsif ($codeGenerator->IsSVGTypeNeedingTearOff($attrType) and not $implClassName =~ /List$/) {
837 $implIncludes{"V8$attrType.h"} = 1
    [all...]
  /external/clang/lib/Analysis/
ThreadSafety.cpp     [all...]
  /frameworks/base/tools/aapt/
ResourceTable.h 217 uint32_t attrType = ResTable_map::TYPE_ANY,
  /frameworks/base/include/androidfw/
ResourceTypes.h     [all...]
  /external/tcpdump/
print-radius.c 336 struct attrtype { const char *name; /* Attribute name */ struct
    [all...]
  /external/openssl/include/openssl/
x509.h     [all...]
  /external/wpa_supplicant_8/src/eap_peer/
ikev2.c 912 wpabuf_put_be16(msg, 0x800e); /* AF=1, AttrType=14 */
    [all...]
  /external/wpa_supplicant_8/src/eap_server/
ikev2.c 931 wpabuf_put_be16(msg, 0x800e); /* AF=1, AttrType=14 */

Completed in 2705 milliseconds

1 2