| /OK3568_Linux_fs/buildroot/package/oracle-mysql/ |
| H A D | 0005-bison_3_breaks_mysql_server_build.patch | 13 +int MYSQLlex(void *arg, THD *thd) 20 - THD *thd= (THD *)yythd; 21 Lex_input_stream *lip= & thd->m_parser_state->m_lip; 22 LEX *lex= thd->lex; 29 extern void lex_start(THD *thd); 32 +extern int MYSQLlex(void *arg, THD *thd); 43 -extern int MYSQLparse(void *thd); // from sql_yacc.cc 44 +extern int MYSQLparse(THD *thd); // from sql_yacc.cc 55 -/* thd is passed as an argument to yyparse(), and subsequently to yylex(). 64 +#define YYLIP (& thd->m_parser_state->m_lip) [all …]
|
| /OK3568_Linux_fs/external/mpp/mpp/vproc/ |
| H A D | mpp_dec_vproc.cpp | 80 MppThread *thd; member 600 MppThread *thd = ctx->thd; in dec_vproc_thread() local 615 AutoMutex autolock(thd->mutex()); in dec_vproc_thread() 617 if (MPP_THREAD_RUNNING != thd->get_status()) in dec_vproc_thread() 622 thd->wait(); in dec_vproc_thread() 750 p->thd = new MppThread(dec_vproc_thread, p, "mpp_dec_vproc"); in dec_vproc_init() 755 delete p->thd; in dec_vproc_init() 765 delete p->thd; in dec_vproc_init() 779 if (!p->thd || ret) { in dec_vproc_init() 781 if (p->thd) { in dec_vproc_init() [all …]
|
| /OK3568_Linux_fs/external/mpp/mpp/base/ |
| H A D | mpp_cluster.cpp | 118 MppThread *thd; member 359 MppThread *thd = NULL; in cluster_worker_init() local 370 thd = new MppThread(cluster->worker_func, p, p->name); in cluster_worker_init() 371 if (thd) { in cluster_worker_init() 372 p->thd = thd; in cluster_worker_init() 373 thd->start(); in cluster_worker_init() 382 if (p->thd) { in cluster_worker_deinit() 383 p->thd->stop(); in cluster_worker_deinit() 384 delete p->thd; in cluster_worker_deinit() 385 p->thd = NULL; in cluster_worker_deinit() [all …]
|
| /OK3568_Linux_fs/external/mpp/osal/ |
| H A D | mpp_time.cpp | 213 MppThread *thd; member 235 MppThread *thd = impl->thd; in mpp_timer_thread() local 253 if (MPP_THREAD_RUNNING != thd->get_status()) in mpp_timer_thread() 380 if (!impl->enabled && NULL == impl->thd) { in mpp_timer_set_enable() 381 MppThread *thd = new MppThread(mpp_timer_thread, impl, impl->name); in mpp_timer_set_enable() local 382 if (thd) { in mpp_timer_set_enable() 383 impl->thd = thd; in mpp_timer_set_enable() 385 thd->start(); in mpp_timer_set_enable() 389 if (impl->enabled && impl->thd) { in mpp_timer_set_enable() 390 impl->thd->stop(); in mpp_timer_set_enable() [all …]
|
| /OK3568_Linux_fs/buildroot/dl/rtmpdump/git/ |
| H A D | thread.c | 32 HANDLE thd; in ThreadCreate() local 34 thd = (HANDLE) _beginthread(routine, 0, args); in ThreadCreate() 35 if (thd == -1L) in ThreadCreate() 38 return thd; in ThreadCreate()
|
| /OK3568_Linux_fs/debian/overlay/etc/Powermanager/ |
| H A D | triggerhappy | 16 NAME=thd 18 DAEMON=/usr/sbin/thd 46 start-stop-daemon --start --quiet --pidfile $PIDFILE --exec /usr/sbin/thd --test > /dev/null \ 48 start-stop-daemon --start --quiet --pidfile $PIDFILE --exec /usr/sbin/thd -- \
|
| H A D | triggerhappy.service | 7 ExecStart=/usr/sbin/thd --triggers /etc/triggerhappy/triggers.d/ --socket /run/thd.socket --user ro…
|
| /OK3568_Linux_fs/external/mpp/mpp/codec/ |
| H A D | mpp_enc_v2.cpp | 274 MppThread *thd = enc->thread_enc; in mpp_enc_reset_v2() local 276 thd->lock(THREAD_CONTROL); in mpp_enc_reset_v2() 279 thd->unlock(THREAD_CONTROL); in mpp_enc_reset_v2() 291 MppThread *thd = enc->thread_enc; in mpp_enc_notify_v2() local 293 thd->lock(); in mpp_enc_notify_v2() 298 thd->signal(); in mpp_enc_notify_v2() 307 thd->signal(); in mpp_enc_notify_v2() 310 thd->unlock(); in mpp_enc_notify_v2()
|
| /OK3568_Linux_fs/buildroot/package/triggerhappy/ |
| H A D | triggerhappy.mk | 20 -C $(@D) thd th-cmd 32 $(INSTALL) -D -m 0755 $(@D)/thd $(TARGET_DIR)/usr/sbin/thd
|
| H A D | triggerhappy.service | 5 ExecStart=/usr/sbin/thd --triggers /etc/triggerhappy/triggers.d --socket /var/run/thd.socket --user…
|
| H A D | S10triggerhappy | 3 NAME=thd 11 start-stop-daemon --start --quiet --pidfile $PIDFILE --exec /usr/sbin/thd -- $DAEMON_ARGS \
|
| /OK3568_Linux_fs/external/mpp/utils/ |
| H A D | mpi_dec_utils.c | 65 pthread_t thd; member 411 pthread_create(&impl->thd, NULL, reader_worker, impl); in reader_start() 418 pthread_join(impl->thd, NULL); in reader_sync() 427 pthread_join(impl->thd, NULL); in reader_stop()
|
| /OK3568_Linux_fs/external/mpp/test/ |
| H A D | mpi_dec_nt_test.c | 381 pthread_t thd; in dec_nt_decode() local 500 ret = pthread_create(&thd, &attr, thread_decode, &data); in dec_nt_decode() 516 pthread_join(thd, NULL); in dec_nt_decode()
|
| H A D | mpi_dec_multi_test.c | 72 pthread_t thd; // thread for for each instance member 614 ret = pthread_create(&ctxs[i].thd, NULL, multi_dec_decode, &ctxs[i]); in main() 633 pthread_join(ctxs[i].thd, NULL); in main()
|
| H A D | mpi_dec_test.c | 548 pthread_t thd; in dec_decode() local 664 ret = pthread_create(&thd, &attr, thread_decode, &data); in dec_decode() 680 pthread_join(thd, NULL); in dec_decode()
|
| H A D | mpi_enc_test.c | 139 pthread_t thd; // thread for for each instance member 1016 ret = pthread_create(&ctxs[i].thd, NULL, enc_test, &ctxs[i]); in enc_test_multi() 1035 pthread_join(ctxs[i].thd, NULL); in enc_test_multi()
|
| /OK3568_Linux_fs/yocto/meta-openembedded/meta-oe/recipes-extended/triggerhappy/ |
| H A D | triggerhappy_git.bb | 24 ${sbindir}/thd \
|
| /OK3568_Linux_fs/external/mpp/mpp/hal/rkenc/h265e/ |
| H A D | hal_h265e_vepu540c.c | 450 RK_U8 *thd = (RK_U8 *)&rc_regs->aq_tthd0; in vepu540c_h265_global_cfg_set() local 454 thd[i] = hw->aq_thrd_i[i]; in vepu540c_h265_global_cfg_set() 460 RK_U8 *thd = (RK_U8 *)&rc_regs->aq_tthd0; in vepu540c_h265_global_cfg_set() local 463 thd[i] = hw->aq_thrd_p[i]; in vepu540c_h265_global_cfg_set()
|
| H A D | hal_h265e_vepu541.c | 596 RK_U8 *thd = (RK_U8 *)®s->aq_thd0; in vepu541_h265_set_l2_regs() local 600 thd[i] = hw->aq_thrd_i[i]; in vepu541_h265_set_l2_regs() 607 RK_U8 *thd = (RK_U8 *)®s->aq_thd0; in vepu541_h265_set_l2_regs() local 611 thd[i] = hw->aq_thrd_p[i]; in vepu541_h265_set_l2_regs()
|
| H A D | hal_h265e_vepu580.c | 1303 RK_U8 *thd = (RK_U8 *)&rc_regs->aq_tthd0; in vepu580_h265_global_cfg_set() local 1307 thd[i] = hw->aq_thrd_i[i]; in vepu580_h265_global_cfg_set() 1313 RK_U8 *thd = (RK_U8 *)&rc_regs->aq_tthd0; in vepu580_h265_global_cfg_set() local 1317 thd[i] = hw->aq_thrd_p[i]; in vepu580_h265_global_cfg_set()
|
| /OK3568_Linux_fs/kernel/drivers/iio/accel/ |
| H A D | mma9553.c | 81 #define MMA9553_ACTIVITY_THD_TO_SEC(thd) ((thd) / MMA9553_DEFAULT_SAMPLE_RATE) argument
|
| /OK3568_Linux_fs/external/mpp/mpp/hal/rkenc/h264e/ |
| H A D | hal_h264e_vepu540c.c | 1466 RK_U8* thd = (RK_U8*)®s->reg_rc_roi.aq_tthd0; in setup_vepu540c_l2() local 1471 thd[i] = hw->aq_thrd_i[i]; in setup_vepu540c_l2() 1476 thd[i] = hw->aq_thrd_p[i]; in setup_vepu540c_l2()
|
| H A D | hal_h264e_vepu580.c | 2093 RK_U8* thd = (RK_U8*)®s->reg_rc_klut.aq_tthd0; in setup_vepu580_l2() local 2098 thd[i] = hw->aq_thrd_i[i]; in setup_vepu580_l2() 2103 thd[i] = hw->aq_thrd_p[i]; in setup_vepu580_l2()
|
| /OK3568_Linux_fs/device/rockchip/common/images/userdata/userdata_normal/media/ |
| H A D | yuv420_p352x288.yuv | 184 …-./01/02//004,5{c(89��y||~~{}����������zx~��������������������}|vu�������thd[SS]bbn}zuxwrmhe[@/+… 1608 …��������������������=c�������to������un{�����������������ui�����~K)W�������thd[e�������������[6==;… 1929 …��������������������eE�������mw�������tw�����������������tj������`.;w������thd[_������������|F8=;;…
|
| /OK3568_Linux_fs/recovery/ |
| HD | rootfs.cpio.gz | 107070100A8AEB0000041ED0000000000000000000000116841B48100000000000000FD0000000200000000000000000000000200000000.07070100A8B07C000081A40000000000000000000000016841263500000000000000FD0000000200000000000000000000000900000000.gitkeep07070100A8B07D000081A40000000000000000000000016841263500000000000000FD0000000200000000000000000000000B00000000.skip_fsck07070100A8AEB10000A1FF0000000000000000000000016841B0B600000007000000FD0000000200000000000000000000000400000000binusr/bin07070100A8B07E000081A400000000000000000000000168412635000001CC000000FD0000000200000000000000000000001100000000busybox. ... |