HomeSort by relevance Sort by last modified time
    Searched refs:attr (Results 251 - 275 of 2428) sorted by null

<<11121314151617181920>>

  /prebuilts/ndk/9/platforms/android-4/arch-arm/usr/include/linux/
sysfs.h 31 #define __ATTR(_name,_mode,_show,_store) { .attr = {.name = __stringify(_name), .mode = _mode, .owner = THIS_MODULE }, .show = _show, .store = _store, }
33 #define __ATTR_RO(_name) { .attr = { .name = __stringify(_name), .mode = 0444, .owner = THIS_MODULE }, .show = _name##_show, }
35 #define __ATTR_NULL { .attr = { .name = NULL } }
37 #define attr_name(_attr) (_attr).attr.name
42 struct attribute attr; member in struct:bin_attribute
47 int (*mmap)(struct kobject *, struct bin_attribute *attr,
  /prebuilts/ndk/9/platforms/android-5/arch-arm/usr/include/linux/
sysfs.h 31 #define __ATTR(_name,_mode,_show,_store) { .attr = {.name = __stringify(_name), .mode = _mode, .owner = THIS_MODULE }, .show = _show, .store = _store, }
33 #define __ATTR_RO(_name) { .attr = { .name = __stringify(_name), .mode = 0444, .owner = THIS_MODULE }, .show = _name##_show, }
35 #define __ATTR_NULL { .attr = { .name = NULL } }
37 #define attr_name(_attr) (_attr).attr.name
42 struct attribute attr; member in struct:bin_attribute
47 int (*mmap)(struct kobject *, struct bin_attribute *attr,
  /prebuilts/ndk/9/platforms/android-8/arch-arm/usr/include/linux/
sysfs.h 31 #define __ATTR(_name,_mode,_show,_store) { .attr = {.name = __stringify(_name), .mode = _mode, .owner = THIS_MODULE }, .show = _show, .store = _store, }
33 #define __ATTR_RO(_name) { .attr = { .name = __stringify(_name), .mode = 0444, .owner = THIS_MODULE }, .show = _name##_show, }
35 #define __ATTR_NULL { .attr = { .name = NULL } }
37 #define attr_name(_attr) (_attr).attr.name
42 struct attribute attr; member in struct:bin_attribute
47 int (*mmap)(struct kobject *, struct bin_attribute *attr,
  /prebuilts/ndk/9/platforms/android-9/arch-arm/usr/include/linux/
sysfs.h 31 #define __ATTR(_name,_mode,_show,_store) { .attr = {.name = __stringify(_name), .mode = _mode, .owner = THIS_MODULE }, .show = _show, .store = _store, }
33 #define __ATTR_RO(_name) { .attr = { .name = __stringify(_name), .mode = 0444, .owner = THIS_MODULE }, .show = _name##_show, }
35 #define __ATTR_NULL { .attr = { .name = NULL } }
37 #define attr_name(_attr) (_attr).attr.name
42 struct attribute attr; member in struct:bin_attribute
47 int (*mmap)(struct kobject *, struct bin_attribute *attr,
  /prebuilts/ndk/9/platforms/android-9/arch-mips/usr/include/linux/
sysfs.h 31 #define __ATTR(_name,_mode,_show,_store) { .attr = {.name = __stringify(_name), .mode = _mode, .owner = THIS_MODULE }, .show = _show, .store = _store, }
33 #define __ATTR_RO(_name) { .attr = { .name = __stringify(_name), .mode = 0444, .owner = THIS_MODULE }, .show = _name##_show, }
35 #define __ATTR_NULL { .attr = { .name = NULL } }
37 #define attr_name(_attr) (_attr).attr.name
42 struct attribute attr; member in struct:bin_attribute
47 int (*mmap)(struct kobject *, struct bin_attribute *attr,
  /prebuilts/ndk/9/platforms/android-9/arch-x86/usr/include/linux/
sysfs.h 31 #define __ATTR(_name,_mode,_show,_store) { .attr = {.name = __stringify(_name), .mode = _mode, .owner = THIS_MODULE }, .show = _show, .store = _store, }
33 #define __ATTR_RO(_name) { .attr = { .name = __stringify(_name), .mode = 0444, .owner = THIS_MODULE }, .show = _name##_show, }
35 #define __ATTR_NULL { .attr = { .name = NULL } }
37 #define attr_name(_attr) (_attr).attr.name
42 struct attribute attr; member in struct:bin_attribute
47 int (*mmap)(struct kobject *, struct bin_attribute *attr,
  /external/libselinux/src/
procattr.c 19 pid_t pid, const char *attr)
29 rc = asprintf(&path, "/proc/%d/attr/%s", pid, attr);
32 rc = asprintf(&path, "/proc/self/task/%d/attr/%s", tid, attr);
77 pid_t pid, const char *attr)
86 rc = asprintf(&path, "/proc/%d/attr/%s", pid, attr);
89 rc = asprintf(&path, "/proc/self/task/%d/attr/%s", tid, attr);
    [all...]
  /libcore/luni/src/main/java/org/apache/harmony/xml/dom/
ElementImpl.java 22 import org.w3c.dom.Attr;
61 AttrImpl attr = attributes.get(i); local
62 if (Objects.equal(name, attr.getNodeName())) {
72 AttrImpl attr = attributes.get(i); local
73 if (Objects.equal(namespaceURI, attr.getNamespaceURI())
74 && Objects.equal(localName, attr.getLocalName())) {
83 Attr attr = getAttributeNode(name); local
85 if (attr == null) {
89 return attr.getValue()
93 Attr attr = getAttributeNodeNS(namespaceURI, localName); local
247 Attr attr = getAttributeNode(name); local
259 Attr attr = getAttributeNodeNS(namespaceURI, qualifiedName); local
394 AttrImpl attr = getAttributeNode(name); local
404 AttrImpl attr = getAttributeNodeNS(namespaceURI, localName); local
    [all...]
  /external/chromium_org/v8/src/platform/
mutex.cc 41 pthread_mutexattr_t attr; local
42 result = pthread_mutexattr_init(&attr);
44 result = pthread_mutexattr_settype(&attr, PTHREAD_MUTEX_ERRORCHECK);
46 result = pthread_mutex_init(mutex, &attr);
48 result = pthread_mutexattr_destroy(&attr);
59 pthread_mutexattr_t attr; local
60 int result = pthread_mutexattr_init(&attr);
62 result = pthread_mutexattr_settype(&attr, PTHREAD_MUTEX_RECURSIVE);
64 result = pthread_mutex_init(mutex, &attr);
66 result = pthread_mutexattr_destroy(&attr);
    [all...]
  /external/clang/include/clang/AST/
Attr.h 1 //===--- Attr.h - Classes for representing attributes ----------*- C++ -*-===//
10 // This file defines the Attr interface and subclasses.
40 /// Attr - This represents one attribute.
41 class Attr {
48 /// attribute defined in Attr.td file.
55 virtual ~Attr();
76 Attr(attr::Kind AK, SourceRange R, unsigned SpellingListIndex = 0)
82 attr::Kind getKind() const {
83 return static_cast<attr::Kind>(AttrKind)
    [all...]
  /external/elfutils/backends/
alpha_retval.c 69 Dwarf_Attribute *attr = dwarf_attr_integrate (functypedie, DW_AT_type, local
71 if (attr == NULL)
76 Dwarf_Die *typedie = dwarf_formref_die (attr, &die_mem);
84 attr = dwarf_attr_integrate (typedie, DW_AT_type, &attr_mem);
85 typedie = dwarf_formref_die (attr, &die_mem);
97 attr = dwarf_attr_integrate (typedie, DW_AT_type, &attr_mem);
98 typedie = dwarf_formref_die (attr, &die_mem);
i386_retval.c 69 Dwarf_Attribute *attr = dwarf_attr_integrate (functypedie, DW_AT_type, local
71 if (attr == NULL)
76 Dwarf_Die *typedie = dwarf_formref_die (attr, &die_mem);
84 attr = dwarf_attr_integrate (typedie, DW_AT_type, &attr_mem);
85 typedie = dwarf_formref_die (attr, &die_mem);
97 attr = dwarf_attr_integrate (typedie, DW_AT_type, &attr_mem);
98 typedie = dwarf_formref_die (attr, &die_mem);
ppc_retval.c 74 Dwarf_Attribute *attr = dwarf_attr_integrate (functypedie, DW_AT_type, local
76 if (attr == NULL)
81 Dwarf_Die *typedie = dwarf_formref_die (attr, &die_mem);
89 attr = dwarf_attr_integrate (typedie, DW_AT_type, &attr_mem);
90 typedie = dwarf_formref_die (attr, &die_mem);
103 attr = dwarf_attr_integrate (typedie, DW_AT_type, &attr_mem);
104 typedie = dwarf_formref_die (attr, &die_mem);
s390_retval.c 70 Dwarf_Attribute *attr = dwarf_attr_integrate (functypedie, DW_AT_type, local
72 if (attr == NULL)
77 Dwarf_Die *typedie = dwarf_formref_die (attr, &die_mem);
85 attr = dwarf_attr_integrate (typedie, DW_AT_type, &attr_mem);
86 typedie = dwarf_formref_die (attr, &die_mem);
99 attr = dwarf_attr (typedie, DW_AT_type, &attr_mem);
100 typedie = dwarf_formref_die (attr, &die_mem);
ppc64_retval.c 72 Dwarf_Attribute *attr = dwarf_attr_integrate (functypedie, DW_AT_type, local
74 if (attr == NULL)
79 Dwarf_Die *typedie = dwarf_formref_die (attr, &die_mem);
87 attr = dwarf_attr_integrate (typedie, DW_AT_type, &attr_mem);
88 typedie = dwarf_formref_die (attr, &die_mem);
101 attr = dwarf_attr_integrate (typedie, DW_AT_type, &attr_mem);
102 typedie = dwarf_formref_die (attr, &die_mem);
162 attr = dwarf_attr_integrate (typedie, DW_AT_type, &attr_mem);
163 typedie = dwarf_formref_die (attr, &die_mem);
  /external/wpa_supplicant_8/src/eap_common/
eap_sake_common.c 18 static int eap_sake_parse_add_attr(struct eap_sake_parse_attr *attr,
31 attr->rand_s = pos + 2;
40 attr->rand_p = pos + 2;
49 attr->mic_s = pos + 2;
58 attr->mic_p = pos + 2;
62 attr->serverid = pos + 2;
63 attr->serverid_len = pos[1] - 2;
67 attr->peerid = pos + 2;
68 attr->peerid_len = pos[1] - 2;
72 attr->spi_s = pos + 2
    [all...]
  /external/chromium_org/third_party/mesa/src/src/mesa/state_tracker/
st_atom_array.c 314 GLuint attr; local
320 for (attr = 0; attr < vpv->num_inputs; attr++) {
321 const GLuint mesaAttr = vp->index_to_input[attr];
326 if (attr == 0) {
365 GLuint attr; local
387 for (attr = 1; attr < vpv->num_inputs; attr++)
469 GLuint attr; local
    [all...]
  /external/mesa3d/src/mesa/state_tracker/
st_atom_array.c 314 GLuint attr; local
320 for (attr = 0; attr < vpv->num_inputs; attr++) {
321 const GLuint mesaAttr = vp->index_to_input[attr];
326 if (attr == 0) {
365 GLuint attr; local
387 for (attr = 1; attr < vpv->num_inputs; attr++)
469 GLuint attr; local
    [all...]
  /external/wpa_supplicant_8/src/eap_peer/
eap_sim.c 296 struct eap_sim_attrs *attr)
298 if (attr->next_pseudonym) {
306 attr->next_pseudonym,
307 attr->next_pseudonym_len);
318 data->pseudonym = os_malloc(attr->next_pseudonym_len +
326 os_memcpy(data->pseudonym, attr->next_pseudonym,
327 attr->next_pseudonym_len);
329 os_memcpy(data->pseudonym + attr->next_pseudonym_len,
332 data->pseudonym_len = attr->next_pseudonym_len + realm_len;
336 if (attr->next_reauth_id)
926 struct eap_sim_attrs attr; local
    [all...]
  /external/apache-xml/src/main/java/org/apache/xalan/templates/
ElemAttributeSet.java 118 ElemAttribute attr = (ElemAttribute) getFirstChildElem(); local
120 while (null != attr)
122 attr.execute(transformer);
124 attr = (ElemAttribute) attr.getNextSiblingElem();
  /external/openssh/contrib/suse/
openssh.spec 199 %attr(0755,root,root) %dir %{_sysconfdir}/ssh
200 %attr(0644,root,root) %config(noreplace) %{_sysconfdir}/ssh/ssh_config
201 %attr(0600,root,root) %config(noreplace) %{_sysconfdir}/ssh/sshd_config
202 %attr(0600,root,root) %config(noreplace) %{_sysconfdir}/ssh/moduli
203 %attr(0644,root,root) %config(noreplace) /etc/pam.d/sshd
204 %attr(0755,root,root) %config /etc/init.d/sshd
205 %attr(0755,root,root) %{_bindir}/ssh-keygen
206 %attr(0755,root,root) %{_bindir}/scp
207 %attr(0755,root,root) %{_bindir}/ssh
208 %attr(-,root,root) %{_bindir}/slogi
    [all...]
  /external/qemu/
compatfd.c 72 pthread_attr_t attr; local
94 pthread_attr_init(&attr);
95 pthread_attr_setdetachstate(&attr, PTHREAD_CREATE_DETACHED);
97 pthread_create(&tid, &attr, sigwait_compat, info);
99 pthread_attr_destroy(&attr);
  /external/qemu/distrib/sdl-1.2.15/src/thread/pthread/
SDL_sysmutex.c 44 pthread_mutexattr_t attr; local
49 pthread_mutexattr_init(&attr);
51 pthread_mutexattr_settype(&attr, PTHREAD_MUTEX_RECURSIVE);
53 pthread_mutexattr_setkind_np(&attr, PTHREAD_MUTEX_RECURSIVE_NP);
57 if ( pthread_mutex_init(&mutex->id, &attr) != 0 ) {
  /frameworks/av/media/libstagefright/tests/
DummyRecorder.cpp 43 pthread_attr_t attr; local
44 pthread_attr_init(&attr);
45 pthread_attr_setdetachstate(&attr, PTHREAD_CREATE_JOINABLE);
46 int err = pthread_create(&mThread, &attr, threadWrapper, this);
47 pthread_attr_destroy(&attr);
  /frameworks/support/v7/mediarouter/src/android/support/v7/app/
MediaRouterThemeHelper.java 39 public static int getThemeResource(Context context, int attr) {
41 return context.getTheme().resolveAttribute(attr, value, true) ? value.resourceId : 0;
44 public static Drawable getThemeDrawable(Context context, int attr) {
45 int res = getThemeResource(context, attr);
51 return context.getTheme().resolveAttribute(R.attr.isLightTheme, value, true)

Completed in 575 milliseconds

<<11121314151617181920>>