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

<<11121314151617181920>>

  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/plat-mac/
PixMapWrapper.py 98 def __setattr__(self, attr, val):
99 if attr == 'baseAddr':
101 elif attr == 'data':
104 elif attr == 'rowBytes':
107 elif attr == 'bounds':
113 elif attr == 'hRes' or attr == 'vRes':
115 self._stuff(attr, int(val) << 16)
116 elif attr in _pmElemFormat.keys():
118 self._stuff(attr, val
    [all...]
  /system/core/include/utils/
Mutex.h 99 pthread_mutexattr_t attr; local
100 pthread_mutexattr_init(&attr);
101 pthread_mutexattr_setpshared(&attr, PTHREAD_PROCESS_SHARED);
102 pthread_mutex_init(&mMutex, &attr);
103 pthread_mutexattr_destroy(&attr);
  /external/wpa_supplicant_8/src/wps/
wps_enrollee.c 640 struct wps_parse_attr attr; local
647 if (wps_parse_msg(&msg, &attr) < 0 ||
648 wps_process_cred(&attr, &wps->cred))
738 struct wps_parse_attr *attr,
746 if (wps_process_ap_settings(attr, &cred) < 0)
884 struct wps_parse_attr *attr)
895 if (wps_process_registrar_nonce(wps, attr->registrar_nonce) ||
896 wps_process_enrollee_nonce(wps, attr->enrollee_nonce) ||
897 wps_process_uuid_r(wps, attr->uuid_r) ||
898 wps_process_dev_pw_id(wps, attr->dev_password_id))
1171 struct wps_parse_attr attr; local
1256 struct wps_parse_attr attr; local
1302 struct wps_parse_attr attr; local
1388 struct wps_parse_attr attr; local
    [all...]
  /external/chromium_org/native_client_sdk/src/libraries/third_party/pthreads-win32/
pthread_rwlock_init.c 44 const pthread_rwlockattr_t * attr)
54 if (attr != NULL && *attr != NULL)
  /external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/test/
skip.py 36 attr = getattr(klass, name)
37 if not callable(attr):
41 setattr(klass, name, _skipped_method(attr, message, logger))
  /external/kernel-headers/original/linux/
sysfs.h 37 .attr = {.name = __stringify(_name), .mode = _mode, .owner = THIS_MODULE }, \
43 .attr = { .name = __stringify(_name), .mode = 0444, .owner = THIS_MODULE }, \
47 #define __ATTR_NULL { .attr = { .name = NULL } }
49 #define attr_name(_attr) (_attr).attr.name
54 struct attribute attr; member in struct:bin_attribute
59 int (*mmap)(struct kobject *, struct bin_attribute *attr,
106 sysfs_chmod_file(struct kobject *kobj, struct attribute *attr, mode_t mode);
117 int sysfs_create_bin_file(struct kobject * kobj, struct bin_attribute * attr);
118 int sysfs_remove_bin_file(struct kobject * kobj, struct bin_attribute * attr);
122 void sysfs_notify(struct kobject * k, char *dir, char *attr);
    [all...]
  /libcore/dom/src/test/java/org/w3c/domts/level2/core/
attrgetownerelement03.java 54 * @see <a href="http://www.w3.org/TR/DOM-Level-2-Core/core#Attr-ownerElement">http://www.w3.org/TR/DOM-Level-2-Core/core#Attr-ownerElement</a>
80 Attr attr; local
82 attr = doc.createAttributeNS("http://www.w3.org/DOM", "dom:attr");
83 ownerElement = attr.getOwnerElement();
  /system/extras/fatblock/
fat.c 36 char *name, uint8_t attr,
45 de->attr = attr;
  /frameworks/compile/mclinker/lib/CodeGen/
MCLinker.cpp 291 cl::list<bool>::iterator attr, attrBegin, attrEnd; local
294 for (attr = attrBegin; attr != attrEnd; ++attr) {
295 unsigned int pos = ArgWholeArchiveList.getPosition(attr - attrBegin);
302 for (attr = attrBegin; attr != attrEnd; ++attr) {
303 unsigned int pos = ArgNoWholeArchiveList.getPosition(attr - attrBegin);
310 for (attr = attrBegin; attr != attrEnd; ++attr)
    [all...]
  /external/elfutils/libdw/
dwarf_getlocation.c 63 attr_ok (Dwarf_Attribute *attr)
65 if (attr == NULL)
69 switch (attr->code)
342 dwarf_getlocation (attr, llbuf, listlen)
343 Dwarf_Attribute *attr;
347 if (! attr_ok (attr))
352 if (INTUSE(dwarf_formblock) (attr, &block) != 0)
355 return getlocation (attr->cu, &block, llbuf, listlen);
359 dwarf_getlocation_addr (attr, address, llbufs, listlens, maxlocs)
360 Dwarf_Attribute *attr;
    [all...]
  /external/llvm/lib/Support/
Mutex.cpp 50 pthread_mutexattr_t attr;
53 int errorcode = pthread_mutexattr_init(&attr);
59 errorcode = pthread_mutexattr_settype(&attr, kind);
65 errorcode = pthread_mutexattr_setpshared(&attr, PTHREAD_PROCESS_PRIVATE);
70 errorcode = pthread_mutex_init(mutex, &attr);
74 errorcode = pthread_mutexattr_destroy(&attr);
  /external/wpa_supplicant_8/src/eap_peer/
eap_aka.c 266 struct eap_sim_attrs *attr)
268 if (attr->next_pseudonym) {
276 attr->next_pseudonym,
277 attr->next_pseudonym_len);
288 data->pseudonym = os_malloc(attr->next_pseudonym_len +
296 os_memcpy(data->pseudonym, attr->next_pseudonym,
297 attr->next_pseudonym_len);
299 os_memcpy(data->pseudonym + attr->next_pseudonym_len,
302 data->pseudonym_len = attr->next_pseudonym_len + realm_len;
306 if (attr->next_reauth_id)
1177 struct eap_sim_attrs attr; local
    [all...]
  /frameworks/wilhelm/src/
locks.h 22 extern void object_unlock_exclusive_attributes_(IObject *thiz, unsigned attr,
28 extern void object_unlock_exclusive_attributes(IObject *thiz, unsigned attr);
37 #define object_unlock_exclusive_attributes(thiz, attr) \
38 object_unlock_exclusive_attributes_((thiz), (attr), __FILE__, __LINE__)
53 #define interface_unlock_exclusive_attributes(thiz, attr) \
54 object_unlock_exclusive_attributes(InterfaceToIObject(thiz), (attr))
  /external/smack/src/com/kenai/jbosh/
AbstractBody.java 67 * @param attr name of the attribute to retriece
70 public final String getAttribute(final BodyQName attr) {
72 return attrs.get(attr);
  /frameworks/compile/mclinker/include/mcld/MC/
InputFactory.h 49 /// attr - the last touched attribute.
50 const AttributeProxy& attr() const { return *m_pLast; } function in class:mcld::InputFactory
51 AttributeProxy& attr() { return *m_pLast; } function in class:mcld::InputFactory
  /packages/apps/Contacts/src/com/android/contacts/util/
ThemeUtils.java 39 return getAttribute(theme, android.R.attr.selectableItemBackground);
46 return getAttribute(theme, android.R.attr.activatedBackgroundIndicator);
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/compiler/
visitor.py 92 for attr in dir(node):
93 if attr[0] != '_':
94 print "\t", "%-12.12s" % attr, getattr(node, attr)
111 for attr in dir(node):
112 if attr[0] != '_':
113 print "\t", "%-10.10s" % attr, getattr(node, attr)
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/compiler/
visitor.py 92 for attr in dir(node):
93 if attr[0] != '_':
94 print "\t", "%-12.12s" % attr, getattr(node, attr)
111 for attr in dir(node):
112 if attr[0] != '_':
113 print "\t", "%-10.10s" % attr, getattr(node, attr)
  /system/core/fastbootd/
transport.c 118 pthread_attr_t attr; local
129 pthread_attr_init(&attr);
130 pthread_attr_setdetachstate(&attr, PTHREAD_CREATE_DETACHED);
132 pthread_create(&thread, &attr, transport_data_thread, thandle);
143 pthread_attr_t attr; local
145 pthread_attr_init(&attr);
146 pthread_attr_setdetachstate(&attr, PTHREAD_CREATE_DETACHED);
148 pthread_create(&thread, &attr, transport_connect_thread, transport);
  /external/chromium_org/third_party/mesa/src/src/mesa/swrast/
s_aalinetemp.h 68 GLfloat (*attribArray)[4] = line->span.array->attribs[attr];
69 if (attr >= FRAG_ATTRIB_TEX0 && attr < FRAG_ATTRIB_VAR0
72 const GLuint unit = attr - FRAG_ATTRIB_TEX0;
73 const GLfloat invQ = solve_plane_recip(fx, fy, line->attrPlane[attr][3]);
76 attribArray[i][c] = solve_plane(fx, fy, line->attrPlane[attr][c]) * invQ;
79 = compute_lambda(line->attrPlane[attr][0],
80 line->attrPlane[attr][1], invQ,
81 line->texWidth[attr], line->texHeight[attr]);
    [all...]
  /external/mesa3d/src/mesa/swrast/
s_aalinetemp.h 68 GLfloat (*attribArray)[4] = line->span.array->attribs[attr];
69 if (attr >= FRAG_ATTRIB_TEX0 && attr < FRAG_ATTRIB_VAR0
72 const GLuint unit = attr - FRAG_ATTRIB_TEX0;
73 const GLfloat invQ = solve_plane_recip(fx, fy, line->attrPlane[attr][3]);
76 attribArray[i][c] = solve_plane(fx, fy, line->attrPlane[attr][c]) * invQ;
79 = compute_lambda(line->attrPlane[attr][0],
80 line->attrPlane[attr][1], invQ,
81 line->texWidth[attr], line->texHeight[attr]);
    [all...]
  /external/apache-xml/src/main/java/org/apache/xalan/serialize/
SerializerUtils.java 50 * @param attr Attribute node to add to SerializationHandler.
54 public static void addAttribute(SerializationHandler handler, int attr)
60 DTM dtm = transformer.getXPathContext().getDTM(attr);
62 if (SerializerUtils.isDefinedNSDecl(handler, attr, dtm))
65 String ns = dtm.getNamespaceURI(attr);
75 dtm.getLocalName(attr),
76 dtm.getNodeName(attr),
78 dtm.getNodeValue(attr), false);
210 * @param attr Namespace attribute node
211 * @param dtm The DTM that owns attr
    [all...]
  /external/chromium_org/third_party/jinja2/
sandbox.py 120 def is_internal_attribute(obj, attr):
135 if attr in UNSAFE_FUNCTION_ATTRIBUTES:
138 if attr in UNSAFE_FUNCTION_ATTRIBUTES or \
139 attr in UNSAFE_METHOD_ATTRIBUTES:
142 if attr == 'mro':
147 if attr in UNSAFE_GENERATOR_ATTRIBUTES:
149 return attr.startswith('__')
152 def modifies_known_mutable(obj, attr):
176 return attr in unsafe
194 #: :attr:`binop_table
    [all...]
  /external/ipsec-tools/src/racoon/
isakmp_unity.c 86 isakmp_unity_req(iph1, attr)
88 struct isakmp_data *attr;
100 type = ntohs(attr->type);
108 s_isakmp_cfg_type(type), ntohs(attr->lorv));
144 reply_attr = isakmp_cfg_string(iph1, attr, buf);
150 reply_attr = isakmp_cfg_short(iph1, attr,
155 reply_attr = isakmp_cfg_short(iph1, attr,
160 reply_attr = isakmp_cfg_copy(iph1, attr);
165 attr, isakmp_cfg_config.default_domain);
170 reply_attr = isakmp_cfg_split(iph1, attr,
    [all...]
  /external/chromium_org/third_party/libxslt/libxslt/
attributes.c 89 xmlNodePtr attr; /* the xsl:attribute definition */ member in struct:_xsltAttrElem
102 * @attr: the new xsl:attribute node
109 xsltNewAttrElem(xmlNodePtr attr) {
119 cur->attr = attr;
125 * @attr: an XSLT AttrElem
127 * Free up the memory allocated by @attr
130 xsltFreeAttrElem(xsltAttrElemPtr attr) {
131 xmlFree(attr);
159 * @attr: the new xsl:attribute nod
657 xmlAttrPtr attr; local
    [all...]

Completed in 445 milliseconds

<<11121314151617181920>>