Searched defs:attr (Results 1 - 25 of 1094) sorted by relevance

1234567891011>>

/external/python/cpython3/Lib/test/test_importlib/namespace_pkgs/both_portions/foo/
H A Done.py0 attr = 'both_portions foo one'
1 attr = 'both_portions foo one' variable
H A Dtwo.py0 attr = 'both_portions foo two'
1 attr = 'both_portions foo two' variable
/external/python/cpython3/Lib/test/test_importlib/namespace_pkgs/module_and_namespace_package/
H A Da_test.py0 attr = 'in module'
1 attr = 'in module' variable
/external/python/cpython3/Lib/test/test_importlib/namespace_pkgs/not_a_namespace_pkg/foo/
H A Done.py0 attr = 'portion1 foo one'
1 attr = 'portion1 foo one' variable
/external/python/cpython3/Lib/test/test_importlib/namespace_pkgs/portion1/foo/
H A Done.py0 attr = 'portion1 foo one'
1 attr = 'portion1 foo one' variable
/external/python/cpython3/Lib/test/test_importlib/namespace_pkgs/portion2/foo/
H A Dtwo.py0 attr = 'portion2 foo two'
1 attr = 'portion2 foo two' variable
/external/python/cpython3/Lib/test/test_importlib/namespace_pkgs/project1/parent/child/
H A Done.py0 attr = 'parent child one'
1 attr = 'parent child one' variable
/external/python/cpython3/Lib/test/test_importlib/namespace_pkgs/project2/parent/child/
H A Dtwo.py0 attr = 'parent child two'
1 attr = 'parent child two' variable
/external/python/cpython3/Lib/test/test_importlib/namespace_pkgs/project3/parent/child/
H A Dthree.py0 attr = 'parent child three'
1 attr = 'parent child three' variable
/external/elfutils/libdw/
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_getlocation_die.c37 dwarf_getlocation_die (Dwarf_Attribute *attr, const Dwarf_Op *op, argument
40 if (attr == NULL)
57 dieoff = attr->cu->start + op->number;
62 dieoff = attr->cu->start + op->number2;
70 if (__libdw_offdie (attr->cu->dbg, dieoff, result,
71 attr->cu->type_offset != 0) == NULL)
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_formblock.c39 dwarf_formblock (Dwarf_Attribute *attr, Dwarf_Block *return_block) argument
41 if (attr == NULL)
44 const unsigned char *datap = attr->valp;
45 const unsigned char *endp = attr->cu->endp;
47 switch (attr->form)
52 return_block->length = *(uint8_t *) attr->valp;
53 return_block->data = attr->valp + 1;
59 return_block->length = read_2ubyte_unaligned (attr->cu->dbg, attr->valp);
60 return_block->data = attr
[all...]
H A Ddwarf_formsdata.c39 dwarf_formsdata (Dwarf_Attribute *attr, Dwarf_Sword *return_sval) argument
41 if (attr == NULL)
44 const unsigned char *datap = attr->valp;
45 const unsigned char *endp = attr->cu->endp;
47 switch (attr->form)
56 *return_sval = *attr->valp;
62 *return_sval = read_2ubyte_unaligned (attr->cu->dbg, attr->valp);
68 *return_sval = read_4ubyte_unaligned (attr->cu->dbg, attr
[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);
/external/strace/tests/
H A Dmq.c44 struct mq_attr attr; local
55 if (mq_getattr(0, &attr))
59 (long long) attr.mq_maxmsg,
60 (long long) attr.mq_msgsize);
62 if (mq_setattr(0, &attr, NULL))
66 (long long) attr.mq_maxmsg,
67 (long long) attr.mq_msgsize);
/external/strace/tests-m32/
H A Dmq.c44 struct mq_attr attr; local
55 if (mq_getattr(0, &attr))
59 (long long) attr.mq_maxmsg,
60 (long long) attr.mq_msgsize);
62 if (mq_setattr(0, &attr, NULL))
66 (long long) attr.mq_maxmsg,
67 (long long) attr.mq_msgsize);
/external/strace/tests-mx32/
H A Dmq.c44 struct mq_attr attr; local
55 if (mq_getattr(0, &attr))
59 (long long) attr.mq_maxmsg,
60 (long long) attr.mq_msgsize);
62 if (mq_setattr(0, &attr, NULL))
66 (long long) attr.mq_maxmsg,
67 (long long) attr.mq_msgsize);
/external/valgrind/drd/tests/
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/compiler-rt/test/msan/
H A Dpthread_getattr_np_deadlock.cc9 pthread_attr_t attr; local
10 int res = pthread_getattr_np(pthread_self(), &attr);
/external/libxml2/python/tests/
H A Dattribs.py16 <!ATTLIST test abc:attr CDATA #FIXED "def" >
21 attr = elem.hasNsProp('attr', 'http://abc.org') variable
22 if attr == None or attr.serialize()[:-1] != """<!ATTLIST test abc:attr CDATA #FIXED "def">""":
23 print("Failed to find defaulted attribute abc:attr")
/external/ltp/testcases/open_posix_testsuite/conformance/interfaces/mq_open/
H A D12-1.c10 * Test that if O_CREAT is set and attr == NULL, implementation defined
14 * with attr == NULL.
35 struct mq_attr attr; local
46 if (mq_getattr(queue, &attr) != 0) {

Completed in 550 milliseconds

1234567891011>>