/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...] |
/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/chromium_org/third_party/openssl/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))
|
/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))
|
/external/chromium_org/third_party/mesa/src/src/mesa/vbo/ |
vbo_save_draw.c | 88 node->attrtype[i]); 90 if (node->attrtype[i] != vbo->currval[i].Type || 96 vbo->currval[i].Type = node->attrtype[i]; 98 vbo_attrtype_to_integer_flag(node->attrtype[i]); 144 GLenum node_attrtype[VBO_ATTRIB_MAX]; /* copy of node->attrtype[] */ 148 memcpy(node_attrtype, node->attrtype, sizeof(node->attrtype));
|
vbo_save.h | 66 GLenum attrtype[VBO_ATTRIB_MAX]; member in struct:vbo_save_vertex_list 131 GLenum attrtype[VBO_ATTRIB_MAX]; member in struct:vbo_save_context
|
vbo_exec.h | 105 GLenum attrtype[VBO_ATTRIB_MAX]; member in struct:vbo_exec_context::__anon13424
|
vbo_exec_api.c | 168 exec->vtx.attrtype[i]); 170 if (exec->vtx.attrtype[i] != vbo->currval[i].Type || 181 vbo->currval[i].Type = exec->vtx.attrtype[i]; 183 vbo_attrtype_to_integer_flag(exec->vtx.attrtype[i]); 338 exec->vtx.attrtype[j]); 381 vbo_get_default_vals_as_float(exec->vtx.attrtype[attr]); 421 exec->vtx.attrtype[A] = T; \ [all...] |
vbo_save_api.c | 330 memcpy(node->attrtype, save->attrtype, sizeof(node->attrtype)); 518 save->attrptr[i], save->attrtype[i]); 621 save->attrtype[j]); 659 const GLfloat *id = vbo_get_default_vals_as_float(save->attrtype[attr]); 710 save->attrtype[A] = T; \ [all...] |
/external/mesa3d/src/mesa/vbo/ |
vbo_save_draw.c | 88 node->attrtype[i]); 90 if (node->attrtype[i] != vbo->currval[i].Type || 96 vbo->currval[i].Type = node->attrtype[i]; 98 vbo_attrtype_to_integer_flag(node->attrtype[i]); 144 GLenum node_attrtype[VBO_ATTRIB_MAX]; /* copy of node->attrtype[] */ 148 memcpy(node_attrtype, node->attrtype, sizeof(node->attrtype));
|
vbo_save.h | 66 GLenum attrtype[VBO_ATTRIB_MAX]; member in struct:vbo_save_vertex_list 131 GLenum attrtype[VBO_ATTRIB_MAX]; member in struct:vbo_save_context
|
vbo_exec.h | 105 GLenum attrtype[VBO_ATTRIB_MAX]; member in struct:vbo_exec_context::__anon23891
|
vbo_exec_api.c | 168 exec->vtx.attrtype[i]); 170 if (exec->vtx.attrtype[i] != vbo->currval[i].Type || 181 vbo->currval[i].Type = exec->vtx.attrtype[i]; 183 vbo_attrtype_to_integer_flag(exec->vtx.attrtype[i]); 338 exec->vtx.attrtype[j]); 381 vbo_get_default_vals_as_float(exec->vtx.attrtype[attr]); 421 exec->vtx.attrtype[A] = T; \ [all...] |
vbo_save_api.c | 330 memcpy(node->attrtype, save->attrtype, sizeof(node->attrtype)); 518 save->attrptr[i], save->attrtype[i]); 621 save->attrtype[j]); 659 const GLfloat *id = vbo_get_default_vals_as_float(save->attrtype[attr]); 710 save->attrtype[A] = T; \ [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 {
|
/external/chromium_org/third_party/WebKit/Source/bindings/scripts/ |
code_generator_v8.pm | [all...] |