Searched refs:attr (Results 351 - 375 of 940) sorted by relevance

<<11121314151617181920>>

/external/libxml2/
H A DHTMLtree.c101 xmlAttrPtr attr = cur->properties; local
107 while (attr != NULL) {
108 if ((attr->children != NULL) &&
109 (attr->children->type == XML_TEXT_NODE) &&
110 (attr->children->next == NULL)) {
111 value = attr->children->content;
112 if ((!xmlStrcasecmp(attr->name, BAD_CAST"http-equiv"))
116 && (!xmlStrcasecmp(attr->name, BAD_CAST"content")))
121 attr = attr
234 xmlAttrPtr attr = cur->properties; local
[all...]
/external/linux-tools-perf/src/tools/perf/util/
H A Dutil.c22 void event_attr_init(struct perf_event_attr *attr) argument
25 attr->exclude_host = 1;
27 attr->exclude_guest = 1;
29 attr->size = sizeof(*attr);
/external/openssh/openbsd-compat/
H A Dsys-tree.h387 #define RB_PROTOTYPE_INTERNAL(name, type, field, cmp, attr) \
388 attr void name##_RB_INSERT_COLOR(struct name *, struct type *); \
389 attr void name##_RB_REMOVE_COLOR(struct name *, struct type *, struct type *);\
390 attr struct type *name##_RB_REMOVE(struct name *, struct type *); \
391 attr struct type *name##_RB_INSERT(struct name *, struct type *); \
392 attr struct type *name##_RB_FIND(struct name *, struct type *); \
393 attr struct type *name##_RB_NFIND(struct name *, struct type *); \
394 attr struct type *name##_RB_NEXT(struct type *); \
395 attr struct type *name##_RB_PREV(struct type *); \
396 attr struc
[all...]
/external/v8/src/base/platform/
H A Dcondition-variable.cc25 pthread_condattr_t attr; local
26 int result = pthread_condattr_init(&attr);
28 result = pthread_condattr_setclock(&attr, CLOCK_MONOTONIC);
30 result = pthread_cond_init(&native_handle_, &attr);
32 result = pthread_condattr_destroy(&attr);
/external/valgrind/drd/tests/
H A Dannotate_smart_pointer.cpp143 pthread_attr_t attr; local
144 pthread_attr_init(&attr);
145 pthread_attr_setstacksize(&attr, PTHREAD_STACK_MIN + 4096);
146 pthread_create(&m_tid, &attr, pf, arg);
147 pthread_attr_destroy(&attr);
/external/wpa_supplicant_8/hostapd/src/eap_common/
H A Deap_sim_common.h205 struct eap_sim_attrs *attr, int aka, int encr);
208 struct eap_sim_attrs *attr, int aka);
218 u8 * eap_sim_msg_add_full(struct eap_sim_msg *msg, u8 attr,
220 u8 * eap_sim_msg_add(struct eap_sim_msg *msg, u8 attr,
222 u8 * eap_sim_msg_add_mac(struct eap_sim_msg *msg, u8 attr);
/external/wpa_supplicant_8/src/eap_common/
H A Deap_sim_common.h205 struct eap_sim_attrs *attr, int aka, int encr);
208 struct eap_sim_attrs *attr, int aka);
218 u8 * eap_sim_msg_add_full(struct eap_sim_msg *msg, u8 attr,
220 u8 * eap_sim_msg_add(struct eap_sim_msg *msg, u8 attr,
222 u8 * eap_sim_msg_add_mac(struct eap_sim_msg *msg, u8 attr);
/external/wpa_supplicant_8/wpa_supplicant/src/eap_common/
H A Deap_sim_common.h205 struct eap_sim_attrs *attr, int aka, int encr);
208 struct eap_sim_attrs *attr, int aka);
218 u8 * eap_sim_msg_add_full(struct eap_sim_msg *msg, u8 attr,
220 u8 * eap_sim_msg_add(struct eap_sim_msg *msg, u8 attr,
222 u8 * eap_sim_msg_add_mac(struct eap_sim_msg *msg, u8 attr);
/external/selinux/libsepol/cil/src/
H A Dcil_post.c575 static int __evaluate_type_expression(struct cil_typeattribute *attr, struct cil_db *db) argument
579 attr->types = cil_malloc(sizeof(*attr->types));
580 rc = __cil_expr_list_to_bitmap(attr->expr_list, attr->types, db->num_types, db);
583 ebitmap_destroy(attr->types);
584 free(attr->types);
585 attr->types = NULL;
598 struct cil_typeattribute *attr = (struct cil_typeattribute *)datum; local
599 if (attr
627 __evaluate_role_expression(struct cil_roleattribute *attr, struct cil_db *db) argument
650 struct cil_roleattribute *attr = (struct cil_roleattribute *)datum; local
1013 struct cil_typeattribute *attr = node->data; local
1021 struct cil_roleattribute *attr = node->data; local
1061 struct cil_typeattribute *attr = (struct cil_typeattribute *)datum; local
1095 struct cil_roleattribute *attr = roletype->role; local
[all...]
/external/toybox/toys/pending/
H A Dip.c559 struct rtattr *attr = NULL; local
594 attr = NLMSG_TAIL(&request.mhdr);
607 attr->rta_len = (void *)NLMSG_TAIL(&request.mhdr) - (void *)attr;
811 struct rtattr *attr = IFLA_RTA(iface); local
848 for (; RTA_OK(attr, len); attr = RTA_NEXT(attr, len)) {
849 switch(attr->rta_type) {
851 snprintf(link->iface, IFNAMSIZ, "%s",(char *) RTA_DATA(attr));
1471 struct rtattr *rta, *attr[RTA_MAX+1] = {0,}; local
1604 struct rtattr *rta, *attr[RTA_MAX+1] = {0,}; local
1735 struct rtattr *rta, *attr[RTA_MAX+1] = {0,}; local
2225 struct rtattr *rta, *attr[RTA_MAX+1] = {0,}; local
[all...]
/external/libvncserver/x11vnc/
H A Duserinput.c98 int bs_restore(int idx, int *nbatch, sraRegionPtr rmask, XWindowAttributes *attr, int clip, int nopad, int *valid, int verb);
142 XWindowAttributes attr; local
177 if (! valid_window(c, &attr, 1)) {
181 *x = attr.x;
182 *y = attr.y;
183 *w = attr.width;
184 *h = attr.height;
188 if (attr.border_width > 0) {
189 *w += 2 * attr.border_width;
190 *h += 2 * attr
1187 XWindowAttributes attr; local
3236 XWindowAttributes attr; local
4264 XWindowAttributes attr; local
4340 XWindowAttributes attr; local
5735 bs_restore(int idx, int *nbatch, sraRegionPtr rmask, XWindowAttributes *attr, int clip, int nopad, int *valid, int verb) argument
7012 valid_wr(int idx, Window win, XWindowAttributes *attr) argument
7132 bs_save(int idx, int *nbatch, XWindowAttributes *attr, int clip, int only_if_tracking, int *valid, int verb) argument
7238 su_save(int idx, int *nbatch, XWindowAttributes *attr, int clip, int *valid, int verb) argument
7340 bs_restore(int idx, int *nbatch, sraRegionPtr rmask, XWindowAttributes *attr, int clip, int nopad, int *valid, int verb) argument
7443 su_restore(int idx, int *nbatch, sraRegionPtr rmask, XWindowAttributes *attr, int clip, int nopad, int *valid, int verb) argument
7582 XWindowAttributes attr; local
8469 XWindowAttributes attr; local
8641 XWindowAttributes attr; local
8889 XWindowAttributes attr; local
[all...]
/external/mesa3d/src/gallium/auxiliary/translate/
H A Dtranslate_generic.c614 unsigned attr; local
616 for (attr = 0; attr < nr_attrs; attr++) {
618 uint8_t *dst = (uint8_t *)vert + tg->attrib[attr].output_offset;
620 if (tg->attrib[attr].type == TRANSLATE_ELEMENT_NORMAL) {
625 if (tg->attrib[attr].instance_divisor) {
626 index = instance_id / tg->attrib[attr].instance_divisor;
635 index = MIN2(index, tg->attrib[attr].max_index);
638 src = tg->attrib[attr]
[all...]
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/asn1/cms/
H A DAttributeTable.java49 Attribute attr)
51 addAttribute(attr.getAttrType(), attr);
48 AttributeTable( Attribute attr) argument
/external/chromium-trace/trace-viewer/tracing/third_party/vinn/third_party/parse5/test/fixtures/
H A Dtokenizer_test.js30 nextToken.attrs.forEach(function (attr) {
31 reformatedAttrs[attr.name] = attr.value;
/external/clang/lib/Sema/
H A DAttributeList.cpp58 if (AttributeList *attr = FreeLists[index]) {
59 FreeLists[index] = attr->NextInPool;
60 return attr;
/external/google-breakpad/src/common/
H A Ddwarf_cu_to_module.h239 void ProcessAttributeSigned(enum DwarfAttribute attr,
242 void ProcessAttributeUnsigned(enum DwarfAttribute attr,
245 void ProcessAttributeString(enum DwarfAttribute attr,
/external/iproute2/ip/
H A Diplink_vlan.c144 static void vlan_print_map(FILE *f, char *name, struct rtattr *attr) argument
152 rem = RTA_PAYLOAD(attr);
153 for (i = RTA_DATA(attr); RTA_OK(i, rem); i = RTA_NEXT(i, rem)) {
/external/javassist/src/main/javassist/bytecode/
H A DFieldInfo.java195 ConstantAttribute attr
197 if (attr == null)
200 return attr.getConstantValue();
/external/libdrm/libkms/
H A Ddumb.c72 const enum kms_bo_type type, const unsigned *attr,
79 for (i = 0; attr[i]; i += 2) {
80 switch (attr[i]) {
70 dumb_bo_create(struct kms_driver *kms, const unsigned width, const unsigned height, const enum kms_bo_type type, const unsigned *attr, struct kms_bo **out) argument
H A Dexynos.c59 const enum kms_bo_type type, const unsigned *attr,
67 for (i = 0; attr[i]; i += 2) {
68 switch (attr[i]) {
57 exynos_bo_create(struct kms_driver *kms, const unsigned width, const unsigned height, const enum kms_bo_type type, const unsigned *attr, struct kms_bo **out) argument
H A Dintel.c74 const enum kms_bo_type type, const unsigned *attr,
82 for (i = 0; attr[i]; i += 2) {
83 switch (attr[i]) {
72 intel_bo_create(struct kms_driver *kms, const unsigned width, const unsigned height, const enum kms_bo_type type, const unsigned *attr, struct kms_bo **out) argument
H A Dnouveau.c75 const enum kms_bo_type type, const unsigned *attr,
83 for (i = 0; attr[i]; i += 2) {
84 switch (attr[i]) {
73 nouveau_bo_create(struct kms_driver *kms, const unsigned width, const unsigned height, const enum kms_bo_type type, const unsigned *attr, struct kms_bo **out) argument
H A Dradeon.c77 const enum kms_bo_type type, const unsigned *attr,
85 for (i = 0; attr[i]; i += 2) {
86 switch (attr[i]) {
75 radeon_bo_create(struct kms_driver *kms, const unsigned width, const unsigned height, const enum kms_bo_type type, const unsigned *attr, struct kms_bo **out) argument
H A Dvmwgfx.c72 const enum kms_bo_type type, const unsigned *attr,
78 for (i = 0; attr[i]; i += 2) {
79 switch (attr[i]) {
70 vmwgfx_bo_create(struct kms_driver *kms, const unsigned width, const unsigned height, const enum kms_bo_type type, const unsigned *attr, struct kms_bo **out) argument
/external/libxml2/python/
H A Dlibxml.py343 def __getattr__(self, attr):
344 if attr == "parent":
349 elif attr == "properties":
354 elif attr == "children":
359 elif attr == "last":
364 elif attr == "next":
369 elif attr == "prev":
374 elif attr == "content":
376 elif attr == "name":
378 elif attr
[all...]

Completed in 810 milliseconds

<<11121314151617181920>>