/bionic/libc/bionic/ |
pthread_join.cpp | 43 if (thread->attr.flags & PTHREAD_ATTR_FLAG_DETACHED) { 47 if (thread->attr.flags & PTHREAD_ATTR_FLAG_JOINED) { 52 thread->attr.flags |= PTHREAD_ATTR_FLAG_JOINED; 53 while ((thread->attr.flags & PTHREAD_ATTR_FLAG_ZOMBIE) == 0) {
|
/external/chromium_org/native_client_sdk/src/libraries/third_party/pthreads-win32/ |
pthread_barrier_init.c | 43 const pthread_barrierattr_t * attr, unsigned int count) 54 b->pshared = (attr != NULL && *attr != NULL 55 ? (*attr)->pshared : PTHREAD_PROCESS_PRIVATE);
|
pthread_mutex_init.c | 42 pthread_mutex_init (pthread_mutex_t * mutex, const pthread_mutexattr_t * attr) 52 if (attr != NULL && *attr != NULL) 54 if ((*attr)->pshared == PTHREAD_PROCESS_SHARED) 87 if (attr == NULL || *attr == NULL) 93 mx->kind = (*attr)->kind; 94 if ((*attr)->robustness == PTHREAD_MUTEX_ROBUST)
|
pthread_mutexattr_init.c | 42 pthread_mutexattr_init (pthread_mutexattr_t * attr) 50 * attr 62 * 0 successfully initialized attr, 63 * ENOMEM insufficient memory for attr. 83 *attr = ma;
|
pthread_rwlockattr_init.c | 43 pthread_rwlockattr_init (pthread_rwlockattr_t * attr) 51 * attr 60 * 0 successfully initialized attr, 61 * ENOMEM insufficient memory for attr. 80 *attr = rwa;
|
/external/jmonkeyengine/engine/src/android/com/jme3/app/ |
R.java | 11 public static final class attr {
class in class:R
|
/external/chromium_org/third_party/libjingle/source/talk/xmllite/ |
xmlprinter.cc | 73 const XmlAttr* attr; local 74 for (attr = element->FirstAttr(); attr; attr = attr->NextAttr()) { 75 if (attr->Name() == QN_XMLNS) { 76 ns_stack_->AddXmlns(STR_EMPTY, attr->Value()); 77 } else if (attr->Name().Namespace() == NS_XMLNS) { 78 ns_stack_->AddXmlns(attr->Name().LocalPart(), 79 attr->Value()) [all...] |
/external/chromium_org/third_party/libxslt/libxslt/ |
templates.c | 452 * @attr: the attribute node of a literal result element 464 xmlAttrPtr attr) 469 if ((ctxt == NULL) || (attr == NULL) || (target == NULL)) 472 if (attr->type != XML_ATTRIBUTE_NODE) 479 if (attr->psvi == xsltXSLTAttrMarker) 482 if ((attr->ns != NULL) && xmlStrEqual(attr->ns->href, XSLT_NAMESPACE)) 488 if (attr->children != NULL) { 489 if ((attr->children->type != XML_TEXT_NODE) || 490 (attr->children->next != NULL) 621 xmlAttrPtr attr, copy, last; local [all...] |
/external/libxslt/libxslt/ |
templates.c | 451 * @attr: the attribute node of a literal result element 463 xmlAttrPtr attr) 468 if ((ctxt == NULL) || (attr == NULL) || (target == NULL)) 471 if (attr->type != XML_ATTRIBUTE_NODE) 478 if (attr->psvi == xsltXSLTAttrMarker) 481 if ((attr->ns != NULL) && xmlStrEqual(attr->ns->href, XSLT_NAMESPACE)) 487 if (attr->children != NULL) { 488 if ((attr->children->type != XML_TEXT_NODE) || 489 (attr->children->next != NULL) 619 xmlAttrPtr attr, copy, last; local [all...] |
/external/wpa_supplicant_8/src/wps/ |
wps.c | 99 struct wps_parse_attr attr; local 102 if (wps_parse_msg(cfg->assoc_wps_ie, &attr) < 0) { 105 } else if (attr.request_type == NULL) { 111 *attr.request_type); 112 data->request_type = *attr.request_type; 224 struct wps_parse_attr attr; local 227 * In theory, this could also verify that attr.sel_reg_config_methods 233 if (wps_parse_msg(msg, &attr) < 0 || 234 !attr.selected_registrar || *attr.selected_registrar == 0 | 285 struct wps_parse_attr attr; local 305 struct wps_parse_attr attr; local 377 struct wps_parse_attr attr; local 390 struct wps_parse_attr attr; local 545 struct wps_parse_attr attr; local [all...] |
/development/ndk/platforms/android-8/include/ |
pthread.h | 110 int pthread_attr_init(pthread_attr_t * attr); 111 int pthread_attr_destroy(pthread_attr_t * attr); 113 int pthread_attr_setdetachstate(pthread_attr_t * attr, int state); 114 int pthread_attr_getdetachstate(pthread_attr_t const * attr, int * state); 116 int pthread_attr_setschedpolicy(pthread_attr_t * attr, int policy); 117 int pthread_attr_getschedpolicy(pthread_attr_t const * attr, int * policy); 119 int pthread_attr_setschedparam(pthread_attr_t * attr, struct sched_param const * param); 120 int pthread_attr_getschedparam(pthread_attr_t const * attr, struct sched_param * param); 122 int pthread_attr_setstacksize(pthread_attr_t * attr, size_t stack_size); 123 int pthread_attr_getstacksize(pthread_attr_t const * attr, size_t * stack_size) [all...] |
/external/bison/lib/ |
spawnattr_setflags.c | 35 posix_spawnattr_setflags (posix_spawnattr_t *attr, short int flags) 42 attr->_flags = flags;
|
/external/chromium_org/third_party/npapi/npspy/extern/nspr/ |
prproces.h | 52 NSPR_API(void) PR_ResetProcessAttr(PRProcessAttr *attr); variable 54 NSPR_API(void) PR_DestroyProcessAttr(PRProcessAttr *attr); variable 57 PRProcessAttr *attr, 66 PRProcessAttr *attr, 72 PRProcessAttr *attr, 77 PRProcessAttr *attr, 99 const PRProcessAttr *attr); 105 const PRProcessAttr *attr);
|