Lines Matching refs:ent
294 struct sigevent ent; in aos_timer_create() local
310 memset(&ent, 0x00, sizeof(struct sigevent)); in aos_timer_create()
313 ent.sigev_notify = SIGEV_THREAD; in aos_timer_create()
314 ent.sigev_notify_function = (void (*)(union sigval))timer_common_cb; in aos_timer_create()
315 ent.sigev_value.sival_ptr = amp_timer; in aos_timer_create()
317 if (timer_create(CLOCK_MONOTONIC, &ent, &_timer->timer) != 0) { in aos_timer_create()
496 struct dirent *ent = readdir(proc); in dumpsys_task_func() local
497 if (!ent) { in dumpsys_task_func()
500 if (ent->d_name[0] == '.') { in dumpsys_task_func()
505 snprintf(fn, sizeof fn, "/proc/self/task/%s/comm", ent->d_name); in dumpsys_task_func()
513 printf("%8s - %s", ent->d_name, fn); in dumpsys_task_func()