HomeSort by relevance Sort by last modified time
    Searched defs:attr (Results 1 - 25 of 3142) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/elfutils/libdw/
dwarf_attr_integrate.c 44 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);
dwarf_hasattr_integrate.c 47 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);
dwarf_peel_type.c 56 Dwarf_Attribute *attr = INTUSE (dwarf_attr_integrate) (die, DW_AT_type, local
58 if (attr == NULL)
61 if (INTUSE (dwarf_formref_die) (attr, result) == NULL)
  /external/iproute2/examples/bpf/
bpf_sys.h 14 union bpf_attr attr = { local
20 return syscall(__NR_bpf, BPF_MAP_LOOKUP_ELEM, &attr, sizeof(attr));
  /external/libxml2/python/tests/
attribs.py 16 <!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/strace/
print_mq_attr.c 50 mq_attr_t attr; local
51 if (umove_or_printaddr(tcp, addr, &attr))
56 zero_extend_signed_to_ull(attr.mq_flags),
59 tprintf("%#llx", zero_extend_signed_to_ull(attr.mq_flags));
61 sign_extend_unsigned_to_ll(attr.mq_maxmsg),
62 sign_extend_unsigned_to_ll(attr.mq_msgsize),
63 sign_extend_unsigned_to_ll(attr.mq_curmsgs));
  /external/strace/tests/
mq.c 45 struct mq_attr attr; local
52 if (mq_getattr(0, &attr))
56 (long long) attr.mq_maxmsg,
57 (long long) attr.mq_msgsize);
59 if (mq_setattr(0, &attr, NULL))
63 (long long) attr.mq_maxmsg,
64 (long long) attr.mq_msgsize);
  /external/strace/tests-m32/
mq.c 45 struct mq_attr attr; local
52 if (mq_getattr(0, &attr))
56 (long long) attr.mq_maxmsg,
57 (long long) attr.mq_msgsize);
59 if (mq_setattr(0, &attr, NULL))
63 (long long) attr.mq_maxmsg,
64 (long long) attr.mq_msgsize);
  /external/strace/tests-mx32/
mq.c 45 struct mq_attr attr; local
52 if (mq_getattr(0, &attr))
56 (long long) attr.mq_maxmsg,
57 (long long) attr.mq_msgsize);
59 if (mq_setattr(0, &attr, NULL))
63 (long long) attr.mq_maxmsg,
64 (long long) attr.mq_msgsize);
  /external/valgrind/drd/tests/
pth_mutex_reinit.c 15 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);
pth_process_shared_mutex.c 16 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);
recursive_mutex.c 39 pthread_mutexattr_t attr; local
42 pthread_mutexattr_init(&attr);
43 pthread_mutexattr_settype(&attr, PTHREAD_MUTEX_RECURSIVE_NP);
44 pthread_mutex_init(&m, &attr);
45 pthread_mutexattr_destroy(&attr);
53 pthread_mutexattr_t attr; local
56 pthread_mutexattr_init(&attr);
57 pthread_mutexattr_settype(&attr, PTHREAD_MUTEX_ERRORCHECK_NP);
58 pthread_mutex_init(&m, &attr);
59 pthread_mutexattr_destroy(&attr);
    [all...]
  /system/extras/simpleperf/
event_attr.h 30 const perf_event_attr* attr; member in struct:EventAttrWithId
35 void DumpPerfEventAttr(const perf_event_attr& attr, size_t indent = 0);
39 bool IsTimestampSupported(const perf_event_attr& attr);
40 bool IsCpuSupported(const perf_event_attr& attr);
42 std::string GetEventNameByAttr(const perf_event_attr& attr);
  /external/compiler-rt/test/msan/
pthread_getattr_np_deadlock.cc 9 pthread_attr_t attr; local
10 int res = pthread_getattr_np(pthread_self(), &attr);
  /external/ltp/testcases/open_posix_testsuite/conformance/interfaces/mq_open/
12-1.c 10 * 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) {
  /external/ltp/testcases/open_posix_testsuite/conformance/interfaces/pthread_join/speculative/
6-1.c 47 pthread_attr_t attr; local
50 pthread_attr_init(&attr);
51 pthread_attr_setdetachstate(&attr, PTHREAD_CREATE_DETACHED);
53 if (pthread_create(&new_th, &attr, a_thread_func, NULL) != 0) {
  /external/clang/include/clang/Basic/
AttrKinds.h 1 //===----- Attr.h - Enum values for C Attribute Kinds ----------*- C++ -*-===//
11 /// \brief Defines the clang::attr::Kind enum.
20 namespace attr { namespace in namespace:clang
24 #define ATTR(X) X,
31 } // end namespace attr
  /external/compiler-rt/test/asan/TestCases/Linux/
pthread_create_version.cc 16 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/compiler-rt/test/tsan/
lots_of_threads.c 16 pthread_attr_t attr; local
17 pthread_attr_init(&attr);
18 pthread_attr_setstacksize(&attr, 16 << 20);
19 pthread_attr_setdetachstate(&attr, PTHREAD_CREATE_DETACHED);
21 pthread_create(&t[i], &attr, thr, 0);
22 pthread_attr_destroy(&attr);
  /external/libcups/cups/
ppd-attr.c 34 *attr; /* Current attribute */ local
58 if ((attr = (ppd_attr_t *)cupsArrayFind(ppd->sorted_attrs, &key)) != NULL)
66 while (attr && _cups_strcasecmp(spec, attr->spec))
68 if ((attr = (ppd_attr_t *)cupsArrayNext(ppd->sorted_attrs)) != NULL &&
69 _cups_strcasecmp(attr->name, name))
70 attr = NULL;
75 return (attr);
90 ppd_attr_t *attr; /* Current attribute */ local
104 while ((attr = (ppd_attr_t *)cupsArrayNext(ppd->sorted_attrs)) != NULL
    [all...]
  /external/ltp/testcases/open_posix_testsuite/conformance/interfaces/pthread_attr_setinheritsched/
4-1.c 32 pthread_attr_t attr; local
34 rc = pthread_attr_init(&attr);
40 rc = pthread_attr_setinheritsched(&attr, INVALIDSCHED);
45 rc = pthread_attr_destroy(&attr);
  /external/ltp/testcases/open_posix_testsuite/conformance/interfaces/pthread_attr_setschedpolicy/
4-1.c 32 pthread_attr_t attr; local
35 rc = pthread_attr_init(&attr);
41 rc = pthread_attr_setschedpolicy(&attr, INVALIDPOLICY);
47 pthread_attr_destroy(&attr);
5-1.c 34 pthread_attr_t attr; local
36 rc = pthread_attr_init(&attr);
43 rc = pthread_attr_setschedpolicy(&attr, policy);
49 (void)pthread_attr_destroy(&attr);
  /external/ltp/testcases/open_posix_testsuite/conformance/interfaces/pthread_attr_setscope/
4-1.c 32 pthread_attr_t attr; local
34 rc = pthread_attr_init(&attr);
40 rc = pthread_attr_setscope(&attr, INVALIDSCOPE);
45 rc = pthread_attr_destroy(&attr);
5-1.c 30 pthread_attr_t attr; local
33 rc1 = pthread_attr_init(&attr);
39 rc1 = pthread_attr_setscope(&attr, PTHREAD_SCOPE_SYSTEM);
40 rc2 = pthread_attr_setscope(&attr, PTHREAD_SCOPE_PROCESS);
57 pthread_attr_destroy(&attr);

Completed in 412 milliseconds

1 2 3 4 5 6 7 8 91011>>