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

/hardware/ril/mock-ril/src/cpp/
H A Dmock_ril.cpp297 pthread_attr_t attr; local
/hardware/ti/omap3/omx/audio/src/openmax_il/g722_dec/src/
H A DOMX_G722Dec_Utils.c489 pthread_attr_t attr; local
490 memset(&attr, 0, sizeof(attr));
491 attr.__inheritsched = PTHREAD_EXPLICIT_SCHED;
492 attr.__schedparam.__sched_priority = OMX_AUDIO_DECODER_THREAD_PRIORITY;
530 nRet = pthread_create (&(pComponentPrivate->ComponentThread), &attr,
/hardware/ti/omap3/omx/audio/src/openmax_il/g729_dec/src/
H A DOMX_G729Dec_Utils.c381 pthread_attr_t attr; local
382 memset(&attr, 0, sizeof(attr));
383 attr.__inheritsched = PTHREAD_EXPLICIT_SCHED;
384 attr.__schedparam.__sched_priority = OMX_AUDIO_DECODER_THREAD_PRIORITY;
422 eError = pthread_create (&(pComponentPrivate->ComponentThread), &attr,
/hardware/ti/omap3/omx/audio/src/openmax_il/g729_enc/src/
H A DOMX_G729Enc_Utils.c346 pthread_attr_t attr; local
347 memset(&attr, 0, sizeof(attr));
348 attr.__inheritsched = PTHREAD_EXPLICIT_SCHED;
349 attr.__schedparam.__sched_priority = OMX_AUDIO_ENCODER_THREAD_PRIORITY;
393 eError = pthread_create (&(pComponentPrivate->ComponentThread), &attr, G729ENC_CompThread, pComponentPrivate);
/hardware/ti/wlan/wl1271/CUDK/os/linux/src/
H A Dipc_event.c388 struct rtattr * attr; local
410 attr = (struct rtattr *) (((char *) ifi) + nlmsg_len);
413 while (RTA_OK(attr, attrlen)) {
414 if (attr->rta_type == IFLA_WIRELESS)
416 IpcEvent_wext_event_wireless(pIpcEventChild, ((PS8) attr) + rta_len,
417 attr->rta_len - rta_len);
419 else if (attr->rta_type == IFLA_IFNAME)
424 attr = RTA_NEXT(attr, attrlen);
/hardware/ril/reference-ril/
H A Datchannel.c591 pthread_attr_t attr; local
635 pthread_attr_init (&attr);
636 pthread_attr_setdetachstate(&attr, PTHREAD_CREATE_DETACHED);
638 ret = pthread_create(&s_tid_reader, &attr, readerLoop, &attr);
H A Dreference-ril.c2080 pthread_attr_t attr; local
2117 pthread_attr_init (&attr);
2118 pthread_attr_setdetachstate(&attr, PTHREAD_CREATE_DETACHED);
2119 ret = pthread_create(&s_tid_mainloop, &attr, mainLoop, NULL);
/hardware/ti/omap3/omx/audio/src/openmax_il/aac_dec/src/
H A DOMX_AacDec_Utils.c373 pthread_attr_t attr; local
374 memset(&attr, 0, sizeof(attr));
375 attr.__inheritsched = PTHREAD_EXPLICIT_SCHED;
376 attr.__schedparam.__sched_priority = OMX_AUDIO_DECODER_THREAD_PRIORITY;
405 nRet = pthread_create (&(pComponentPrivate->ComponentThread), &attr, AACDEC_ComponentThread, pComponentPrivate);
/hardware/ti/omap3/omx/audio/src/openmax_il/aac_enc/src/
H A DOMX_AacEnc_Utils.c416 pthread_attr_t attr; local
417 memset(&attr, 0, sizeof(attr));
418 attr.__inheritsched = PTHREAD_EXPLICIT_SCHED;
419 attr.__schedparam.__sched_priority = OMX_AUDIO_DECODER_THREAD_PRIORITY;
463 eError = pthread_create (&(pComponentPrivate->ComponentThread), &attr, AACENC_ComponentThread, pComponentPrivate);
/hardware/ti/omap3/omx/audio/src/openmax_il/g711_dec/src/
H A DOMX_G711Dec_Utils.c364 pthread_attr_t attr; local
365 memset(&attr, 0, sizeof(attr));
366 attr.__inheritsched = PTHREAD_EXPLICIT_SCHED;
367 attr.__schedparam.__sched_priority = OMX_AUDIO_DECODER_THREAD_PRIORITY;
405 eError = pthread_create (&(pComponentPrivate->ComponentThread), &attr,
/hardware/ti/omap3/omx/audio/src/openmax_il/g711_enc/src/
H A DOMX_G711Enc_Utils.c334 pthread_attr_t attr; local
335 memset(&attr, 0, sizeof(attr));
336 attr.__inheritsched = PTHREAD_EXPLICIT_SCHED;
337 attr.__schedparam.__sched_priority = OMX_AUDIO_ENCODER_THREAD_PRIORITY;
375 eError = pthread_create (&(pComponentPrivate->ComponentThread), &attr,
/hardware/ti/omap3/omx/audio/src/openmax_il/g722_enc/src/
H A DOMX_G722Enc_Utils.c547 pthread_attr_t attr; local
548 memset(&attr, 0, sizeof(attr));
549 attr.__inheritsched = PTHREAD_EXPLICIT_SCHED;
550 attr.__schedparam.__sched_priority = OMX_AUDIO_ENCODER_THREAD_PRIORITY;
594 eError = pthread_create (&(pComponentPrivate->ComponentThread), &attr,
/hardware/ti/omap3/omx/audio/src/openmax_il/g726_dec/src/
H A DOMX_G726Dec_Utils.c376 pthread_attr_t attr; local
377 memset(&attr, 0, sizeof(attr));
378 attr.__inheritsched = PTHREAD_EXPLICIT_SCHED;
379 attr.__schedparam.__sched_priority = OMX_AUDIO_DECODER_THREAD_PRIORITY;
411 nRet = pthread_create (&(pComponentPrivate->ComponentThread), &attr,
/hardware/ti/omap3/omx/audio/src/openmax_il/g726_enc/src/
H A DOMX_G726Enc_Utils.c399 pthread_attr_t attr; local
400 memset(&attr, 0, sizeof(attr));
401 attr.__inheritsched = PTHREAD_EXPLICIT_SCHED;
402 attr.__schedparam.__sched_priority = OMX_AUDIO_ENCODER_THREAD_PRIORITY;
434 eError = pthread_create (&(pComponentPrivate->ComponentThread), &attr,
/hardware/ti/omap3/omx/audio/src/openmax_il/mp3_dec/src/
H A DOMX_Mp3Dec_Utils.c388 pthread_attr_t attr; local
389 memset(&attr, 0, sizeof(attr));
390 attr.__inheritsched = PTHREAD_EXPLICIT_SCHED;
391 attr.__schedparam.__sched_priority = OMX_AUDIO_DECODER_THREAD_PRIORITY;
424 nRet = pthread_create (&(pComponentPrivate->ComponentThread), &attr,
/hardware/ti/omap3/omx/audio/src/openmax_il/nbamr_enc/src/
H A DOMX_AmrEnc_Utils.c357 pthread_attr_t attr; local
358 memset(&attr, 0, sizeof(attr));
359 attr.__inheritsched = PTHREAD_EXPLICIT_SCHED;
360 attr.__schedparam.__sched_priority = OMX_AUDIO_ENCODER_THREAD_PRIORITY;
398 eError = pthread_create (&(pComponentPrivate->ComponentThread), &attr, NBAMRENC_CompThread, pComponentPrivate);
/hardware/ti/omap3/omx/audio/src/openmax_il/wbamr_enc/src/
H A DOMX_WbAmrEnc_Utils.c356 pthread_attr_t attr; local
357 memset(&attr, 0, sizeof(attr));
358 attr.__inheritsched = PTHREAD_EXPLICIT_SCHED;
359 attr.__schedparam.__sched_priority = OMX_AUDIO_ENCODER_THREAD_PRIORITY;
401 &attr,
/hardware/ti/omap3/omx/audio/src/openmax_il/wma_dec/src/
H A DOMX_WmaDec_Utils.c407 pthread_attr_t attr; local
408 memset(&attr, 0, sizeof(attr));
409 attr.__inheritsched = PTHREAD_EXPLICIT_SCHED;
410 attr.__schedparam.__sched_priority = OMX_AUDIO_DECODER_THREAD_PRIORITY;
448 eError = pthread_create (&(pComponentPrivate->ComponentThread), &attr,
/hardware/ti/omap3/omx/image/src/openmax_il/jpeg_dec/src/
H A DOMX_JpegDec_Utils.c323 pthread_attr_t attr; local
324 memset(&attr, 0, sizeof(attr));
325 attr.__inheritsched = PTHREAD_EXPLICIT_SCHED;
326 attr.__schedparam.__sched_priority = OMX_IMAGE_DECODER_THREAD_PRIORITY;
366 eError = pthread_create (&(pComponentPrivate->pComponentThread), &attr, OMX_JpegDec_Thread, pComponent);
/hardware/ti/omap3/liboverlay/
H A Doverlay.cpp83 pthread_mutexattr_t attr; member in struct:__anon521
269 if ((ret = pthread_mutexattr_init(&p->attr)) != 0) {
270 LOGE("Failed to initialize overlay mutex attr");
272 if (ret == 0 && (ret = pthread_mutexattr_setpshared(&p->attr, PTHREAD_PROCESS_SHARED)) != 0) {
273 LOGE("Failed to set the overlay mutex attr to be shared across-processes");
275 if (ret == 0 && (ret = pthread_mutex_init(&p->lock, &p->attr)) != 0) {
299 if (pthread_mutexattr_destroy(&shared->attr)) {
300 LOGE("Failed to uninitialize the overlay mutex attr!\n");
/hardware/ti/omap3/omx/audio/src/openmax_il/nbamr_dec/src/
H A DOMX_AmrDec_Utils.c400 pthread_attr_t attr; local
401 memset(&attr, 0, sizeof(attr));
402 attr.__inheritsched = PTHREAD_EXPLICIT_SCHED;
403 attr.__schedparam.__sched_priority = OMX_AUDIO_DECODER_THREAD_PRIORITY;
446 eError = pthread_create (&(pComponentPrivate->ComponentThread), &attr, NBAMRDEC_ComponentThread, pComponentPrivate);
/hardware/ti/omap3/omx/audio/src/openmax_il/wbamr_dec/src/
H A DOMX_WbAmrDec_Utils.c389 pthread_attr_t attr; local
390 memset(&attr, 0, sizeof(attr));
391 attr.__inheritsched = PTHREAD_EXPLICIT_SCHED;
392 attr.__schedparam.__sched_priority = OMX_AUDIO_DECODER_THREAD_PRIORITY;
428 eError = pthread_create (&(pComponentPrivate->WBAMR_DEC_ComponentThread), &attr, WBAMR_DEC_ComponentThread, pComponentPrivate);
/hardware/ti/omap3/omx/video/src/openmax_il/prepost_processor/src/
H A DOMX_VPP_Utils.c509 pthread_attr_t attr; local
510 memset(&attr, 0, sizeof(attr));
511 attr.__inheritsched = PTHREAD_EXPLICIT_SCHED;
512 attr.__schedparam.__sched_priority = OMX_VGPOP_THREAD_PRIORITY;
548 &attr,
/hardware/ti/omap3/omx/video/src/openmax_il/video_encode/src/
H A DOMX_VideoEncoder.c333 pthread_attr_t attr; local
334 memset(&attr, 0, sizeof(attr));
1000 attr.__inheritsched = PTHREAD_EXPLICIT_SCHED;
1001 attr.__schedparam.__sched_priority = OMX_VIDEO_ENCODER_THREAD_PRIORITY;
1002 nError = pthread_create(&ComponentThread, &attr, OMX_VIDENC_Thread, pComponentPrivate);

Completed in 2224 milliseconds