Searched refs:attr (Results 1 - 25 of 1203) sorted by relevance

1234567891011>>

/external/bison/lib/
H A Dspawnattr_init.c26 posix_spawnattr_init (posix_spawnattr_t *attr) argument
30 memset (attr, '\0', sizeof (*attr));
H A Dspawnattr_destroy.c24 posix_spawnattr_destroy (posix_spawnattr_t *attr) argument
/external/elfutils/libdw/
H A Ddwarf_hasform.c39 dwarf_hasform (Dwarf_Attribute *attr, unsigned int search_form) argument
41 if (attr == NULL)
44 return attr->form == search_form;
H A Ddwarf_whatattr.c39 dwarf_whatattr (Dwarf_Attribute *attr) argument
41 return attr == NULL ? 0 : attr->code;
H A Ddwarf_whatform.c39 dwarf_whatform (Dwarf_Attribute *attr) argument
41 return attr == NULL ? 0 : attr->form;
H A Ddwarf_formaddr.c39 dwarf_formaddr (Dwarf_Attribute *attr, Dwarf_Addr *return_addr) argument
41 if (attr == NULL)
44 if (unlikely (attr->form != DW_FORM_addr))
50 if (__libdw_read_address (attr->cu->dbg,
51 cu_sec_idx (attr->cu), attr->valp,
52 attr->cu->address_size, return_addr))
H A Ddwarf_formflag.c39 dwarf_formflag (Dwarf_Attribute *attr, bool *return_bool) argument
41 if (attr == NULL)
44 if (attr->form == DW_FORM_flag_present)
50 if (unlikely (attr->form != DW_FORM_flag))
56 *return_bool = *attr->valp != 0;
H A Ddwarf_attr_integrate.c44 Dwarf_Attribute *attr = INTUSE(dwarf_attr) (die, search_name, result); local
45 if (attr != NULL)
46 return attr;
48 attr = INTUSE(dwarf_attr) (die, DW_AT_abstract_origin, result);
49 if (attr == NULL)
50 attr = INTUSE(dwarf_attr) (die, DW_AT_specification, result);
51 if (attr == NULL)
54 die = INTUSE(dwarf_formref_die) (attr, &die_mem);
H A Ddwarf_formudata.c38 __libdw_formptr (Dwarf_Attribute *attr, int sec_index, argument
42 if (attr == NULL)
45 const Elf_Data *d = attr->cu->dbg->sectiondata[sec_index];
53 if (attr->form == DW_FORM_sec_offset)
55 if (__libdw_read_offset (attr->cu->dbg, attr->cu->dbg,
56 cu_sec_idx (attr->cu), attr->valp,
57 attr->cu->offset_size, &offset, sec_index, 0))
60 else if (attr
97 dwarf_formudata(Dwarf_Attribute *attr, Dwarf_Word *return_uval) argument
[all...]
H A Ddwarf_hasattr_integrate.c47 Dwarf_Attribute *attr = INTUSE(dwarf_attr) (die, DW_AT_abstract_origin, local
49 if (attr == NULL)
50 attr = INTUSE(dwarf_attr) (die, DW_AT_specification, &attr_mem);
51 if (attr == NULL)
54 die = INTUSE(dwarf_formref_die) (attr, &die_mem);
H A Ddwarf_formref.c39 __libdw_formref (Dwarf_Attribute *attr, Dwarf_Off *return_offset) argument
41 const unsigned char *datap = attr->valp;
42 const unsigned char *endp = attr->cu->endp;
44 if (attr->valp == NULL)
50 switch (attr->form)
59 *return_offset = *attr->valp;
65 *return_offset = read_2ubyte_unaligned (attr->cu->dbg, attr->valp);
71 *return_offset = read_4ubyte_unaligned (attr->cu->dbg, attr
104 dwarf_formref(Dwarf_Attribute *attr, Dwarf_Off *return_offset) argument
[all...]
/external/valgrind/drd/tests/
H A Dpth_mutex_reinit.c15 pthread_mutexattr_t attr; local
17 pthread_mutexattr_init(&attr);
18 pthread_mutexattr_settype(&attr, PTHREAD_MUTEX_NORMAL);
19 pthread_mutex_init(&m, &attr);
20 pthread_mutexattr_destroy(&attr);
24 pthread_mutexattr_init(&attr);
25 pthread_mutexattr_settype(&attr, PTHREAD_MUTEX_RECURSIVE);
26 pthread_mutex_init(&m, &attr);
27 pthread_mutexattr_destroy(&attr);
H A Dpth_process_shared_mutex.c16 pthread_mutexattr_t attr; local
18 pthread_mutexattr_init(&attr);
19 pthread_mutexattr_setpshared(&attr, PTHREAD_PROCESS_SHARED);
20 pthread_mutex_init(&mutex, &attr);
21 pthread_mutexattr_destroy(&attr);
/external/skia/include/svg/parser/
H A DSkSVGAttribute.h28 #define SVG_ATTRIBUTE(attr) { #attr, SK_OFFSETOF(BASE_CLASS, f_##attr) }
31 #define SVG_ATTRIBUTE(attr) { #attr }
35 #define SVG_ADD_ATTRIBUTE(attr) \
36 if (f_##attr.size() > 0) \
37 parser._addAttributeLen(#attr, f_##attr.c_str(), f_##attr
[all...]
/external/elfutils/tests/
H A Drun-show-abbrev.sh25 abbrev[0]: attr[0]: code = 16, form = 6, offset = 0
26 abbrev[0]: attr[1]: code = 18, form = 1, offset = 2
27 abbrev[0]: attr[2]: code = 17, form = 1, offset = 4
28 abbrev[0]: attr[3]: code = 3, form = 8, offset = 6
29 abbrev[0]: attr[4]: code = 27, form = 8, offset = 8
30 abbrev[0]: attr[5]: code = 37, form = 8, offset = 10
31 abbrev[0]: attr[6]: code = 19, form = 11, offset = 12
33 abbrev[19]: attr[0]: code = 1, form = 19, offset = 19
34 abbrev[19]: attr[1]: code = 63, form = 12, offset = 21
35 abbrev[19]: attr[
[all...]
/external/chromium-trace/catapult/third_party/Paste/paste/util/
H A Dthreadinglocal.py25 def __getattr__(self, attr, g=thread.get_ident):
27 return self.__dict__['__objs'][g()][attr]
31 % (attr, g()))
33 def __setattr__(self, attr, value, g=thread.get_ident):
34 self.__dict__['__objs'].setdefault(g(), {})[attr] = value
36 def __delattr__(self, attr, g=thread.get_ident):
38 del self.__dict__['__objs'][g()][attr]
42 % (attr, g()))
/external/strace/
H A Dbpf.c44 } attr = {}; local
50 if (size > sizeof(attr))
51 size = sizeof(attr);
52 if (umoven_or_printaddr(tcp, addr, size, &attr))
56 printxval(bpf_map_types, attr.map_type, "BPF_MAP_TYPE_???");
58 attr.key_size, attr.value_size, attr.max_entries);
71 } attr = {}; local
77 if (size > sizeof(attr))
96 } attr = {}; local
119 } attr = {}; local
153 } attr = {}; local
[all...]
/external/mesa3d/src/glx/apple/
H A Dapple_visual.c71 CGLPixelFormatAttribute attr[MAX_ATTR]; local
78 attr[numattr++] = kCGLPFAOpenGLProfile;
79 attr[numattr++] = kCGLOGLPVersion_3_2_Core;
86 attr[numattr++] = kCGLPFAOffScreen;
87 attr[numattr++] = kCGLPFAColorSize;
88 attr[numattr++] = 32;
93 attr[numattr++] = kCGLPFARendererID;
94 attr[numattr++] = kCGLRendererGenericFloatID;
101 attr[numattr++] = kCGLPFAAccelerated;
109 attr[numatt
[all...]
/external/compiler-rt/test/asan/TestCases/Linux/
H A Dpthread_create_version.cc16 pthread_attr_t attr; local
17 pthread_attr_init(&attr);
18 pthread_attr_setstack(&attr, p, sz);
19 pthread_create(&t, &attr, ThreadFunc, nullptr);
/external/webrtc/webrtc/system_wrappers/source/
H A Dcritical_section_posix.cc21 pthread_mutexattr_t attr; local
22 (void) pthread_mutexattr_init(&attr);
23 (void) pthread_mutexattr_settype(&attr, PTHREAD_MUTEX_RECURSIVE);
24 (void) pthread_mutex_init(&mutex_, &attr);
/external/wpa_supplicant_8/hostapd/src/wps/
H A Dwps_validate.c1030 struct wps_parse_attr attr; local
1036 if (wps_parse_msg(&buf, &attr) < 0) {
1041 if (wps_validate_network_idx(attr.network_idx, 1) ||
1042 wps_validate_ssid(attr.ssid, attr.ssid_len, 1) ||
1043 wps_validate_auth_type(attr.auth_type, 1) ||
1044 wps_validate_encr_type(attr.encr_type, 1) ||
1045 wps_validate_network_key_index(attr.network_key_idx, 0) ||
1046 wps_validate_network_key(attr.network_key, attr
1085 struct wps_parse_attr attr; local
1124 struct wps_parse_attr attr; local
1182 struct wps_parse_attr attr; local
1229 struct wps_parse_attr attr; local
1258 struct wps_parse_attr attr; local
1287 struct wps_parse_attr attr; local
1343 struct wps_parse_attr attr; local
1398 struct wps_parse_attr attr; local
1450 struct wps_parse_attr attr; local
1486 struct wps_parse_attr attr; local
1524 struct wps_parse_attr attr; local
1555 struct wps_parse_attr attr; local
1591 struct wps_parse_attr attr; local
1622 struct wps_parse_attr attr; local
1658 struct wps_parse_attr attr; local
1689 struct wps_parse_attr attr; local
1726 struct wps_parse_attr attr; local
1764 struct wps_parse_attr attr; local
1800 struct wps_parse_attr attr; local
1837 struct wps_parse_attr attr; local
1871 struct wps_parse_attr attr; local
1906 struct wps_parse_attr attr; local
1940 struct wps_parse_attr attr; local
[all...]
/external/wpa_supplicant_8/src/wps/
H A Dwps_validate.c1030 struct wps_parse_attr attr; local
1036 if (wps_parse_msg(&buf, &attr) < 0) {
1041 if (wps_validate_network_idx(attr.network_idx, 1) ||
1042 wps_validate_ssid(attr.ssid, attr.ssid_len, 1) ||
1043 wps_validate_auth_type(attr.auth_type, 1) ||
1044 wps_validate_encr_type(attr.encr_type, 1) ||
1045 wps_validate_network_key_index(attr.network_key_idx, 0) ||
1046 wps_validate_network_key(attr.network_key, attr
1085 struct wps_parse_attr attr; local
1124 struct wps_parse_attr attr; local
1182 struct wps_parse_attr attr; local
1229 struct wps_parse_attr attr; local
1258 struct wps_parse_attr attr; local
1287 struct wps_parse_attr attr; local
1343 struct wps_parse_attr attr; local
1398 struct wps_parse_attr attr; local
1450 struct wps_parse_attr attr; local
1486 struct wps_parse_attr attr; local
1524 struct wps_parse_attr attr; local
1555 struct wps_parse_attr attr; local
1591 struct wps_parse_attr attr; local
1622 struct wps_parse_attr attr; local
1658 struct wps_parse_attr attr; local
1689 struct wps_parse_attr attr; local
1726 struct wps_parse_attr attr; local
1764 struct wps_parse_attr attr; local
1800 struct wps_parse_attr attr; local
1837 struct wps_parse_attr attr; local
1871 struct wps_parse_attr attr; local
1906 struct wps_parse_attr attr; local
1940 struct wps_parse_attr attr; local
[all...]
/external/wpa_supplicant_8/wpa_supplicant/src/wps/
H A Dwps_validate.c1030 struct wps_parse_attr attr; local
1036 if (wps_parse_msg(&buf, &attr) < 0) {
1041 if (wps_validate_network_idx(attr.network_idx, 1) ||
1042 wps_validate_ssid(attr.ssid, attr.ssid_len, 1) ||
1043 wps_validate_auth_type(attr.auth_type, 1) ||
1044 wps_validate_encr_type(attr.encr_type, 1) ||
1045 wps_validate_network_key_index(attr.network_key_idx, 0) ||
1046 wps_validate_network_key(attr.network_key, attr
1085 struct wps_parse_attr attr; local
1124 struct wps_parse_attr attr; local
1182 struct wps_parse_attr attr; local
1229 struct wps_parse_attr attr; local
1258 struct wps_parse_attr attr; local
1287 struct wps_parse_attr attr; local
1343 struct wps_parse_attr attr; local
1398 struct wps_parse_attr attr; local
1450 struct wps_parse_attr attr; local
1486 struct wps_parse_attr attr; local
1524 struct wps_parse_attr attr; local
1555 struct wps_parse_attr attr; local
1591 struct wps_parse_attr attr; local
1622 struct wps_parse_attr attr; local
1658 struct wps_parse_attr attr; local
1689 struct wps_parse_attr attr; local
1726 struct wps_parse_attr attr; local
1764 struct wps_parse_attr attr; local
1800 struct wps_parse_attr attr; local
1837 struct wps_parse_attr attr; local
1871 struct wps_parse_attr attr; local
1906 struct wps_parse_attr attr; local
1940 struct wps_parse_attr attr; local
[all...]
/external/mockito/cglib-and-asm/src/org/mockito/asm/
H A DAttribute.java127 Attribute attr = new Attribute(type);
128 attr.value = new byte[len];
129 System.arraycopy(cr.b, off, attr.value, 0, len);
130 return attr;
173 Attribute attr = this;
174 while (attr != null) {
176 attr = attr.next;
208 Attribute attr = this;
210 while (attr !
[all...]
/external/strace/tests/
H A Dsched_xetattr.c52 } attr; member in union:__anon16582
60 sched.attr.size,
61 sched.attr.sched_flags ? "SCHED_FLAG_RESET_ON_FORK" : "0",
62 sched.attr.sched_nice,
63 sched.attr.sched_priority,
64 sched.attr.sched_runtime,
65 sched.attr.sched_deadline,
66 sched.attr.sched_period);
68 sched.attr.sched_flags |= 1;
73 sched.attr
[all...]

Completed in 686 milliseconds

1234567891011>>