Home
last modified time | relevance | path

Searched refs:ts (Results 1 – 24 of 24) sorted by relevance

/system/extras/tests/bionic/libc/other/
Dtest_timer_create3.c47 struct itimerspec ts; in handle() local
56 ts.it_value.tv_sec = 0; in handle()
57 ts.it_value.tv_nsec = 0; in handle()
58 ts.it_interval.tv_sec = 1; in handle()
59 ts.it_interval.tv_nsec = 0; in handle()
60 timer_settime(tid, TIMER_ABSTIME, &ts, NULL); in handle()
69 struct itimerspec ts, ots; in create() local
82 ts.it_value.tv_sec = 0; in create()
83 ts.it_value.tv_nsec = 1; in create()
84 ts.it_interval.tv_sec = seconds; in create()
[all …]
Dtest_timer_create.c53 struct itimerspec ts, ots; in create() local
66 ts.it_value.tv_sec = 3; in create()
67 ts.it_value.tv_nsec = 0; in create()
68 ts.it_interval.tv_sec = seconds; in create()
69 ts.it_interval.tv_nsec = 0; in create()
70 if (timer_settime (tid, TIMER_ABSTIME, &ts, &ots) < 0) in create()
Dtest_thread_max.c51 struct timespec ts; in main() local
57 ts.tv_sec = 0; in main()
58 ts.tv_nsec = 0.002*1e9; in main()
59 nanosleep( &ts, &ts ); in main()
Dtest_timer_create2.c53 struct itimerspec ts, ots; in create() local
65 ts.it_value.tv_sec = 3; in create()
66 ts.it_value.tv_nsec = 0; in create()
67 ts.it_interval.tv_sec = seconds; in create()
68 ts.it_interval.tv_nsec = 0; in create()
69 if (timer_settime (tid, TIMER_ABSTIME, &ts, &ots) < 0) in create()
Dtest_zlib.c160 struct timespec ts; in get_time_usec() local
162 if ( clock_gettime( CLOCK_MONOTONIC, &ts ) < 0 ) in get_time_usec()
165 return ts.tv_sec*1e6 + ts.tv_nsec*1e-3; in get_time_usec()
Dtest_jpeg.c223 struct timespec ts; in get_time_usec() local
225 if ( clock_gettime( CLOCK_MONOTONIC, &ts ) < 0 ) in get_time_usec()
228 return ts.tv_sec*1e6 + ts.tv_nsec*1e-3; in get_time_usec()
/system/extras/tests/bionic/libc/common/
Dtest_pthread_getcpuclockid.c42 struct timespec ts; in thread_func() local
55 ts.tv_sec = 0; in thread_func()
56 ts.tv_nsec = 300000000 + ((int)arg)*50000000; in thread_func()
57 nanosleep( &ts, &ts ); in thread_func()
59 clock_gettime( clock, &ts ); in thread_func()
60 …fprintf(stderr, "thread %08lx: clock_gettime() returned %g nsecs\n", self, ts.tv_sec*1e9 + ts.tv_n… in thread_func()
Dtest_pthread_once.c42 struct timespec ts; in once_function() local
46 ts.tv_sec = 2; in once_function()
47 ts.tv_nsec = 0; in once_function()
48 nanosleep (&ts, NULL); in once_function()
Dtest_pthread_rwlock.c75 struct timespec ts[1]; in time_now() local
77 clock_gettime(CLOCK_MONOTONIC, ts); in time_now()
78 return (double)ts->tv_sec + ts->tv_nsec/1e9; in time_now()
84 struct timespec ts; in time_sleep() local
87 ts.tv_sec = (time_t)delay; in time_sleep()
88 ts.tv_nsec = (long)((delay - ts.tv_sec)*1e9); in time_sleep()
91 ret = nanosleep(&ts, &ts); in time_sleep()
Dbench_stdio.c48 struct timespec ts; in now_ms() local
49 clock_gettime(CLOCK_MONOTONIC, &ts); in now_ms()
50 return ts.tv_sec*1000. + ts.tv_nsec*1e-6; in now_ms()
Dtest_pthread_mutex.c76 struct timespec ts[1]; in time_now() local
78 clock_gettime(CLOCK_MONOTONIC, ts); in time_now()
79 return (double)ts->tv_sec + ts->tv_nsec/1e9; in time_now()
85 struct timespec ts; in time_sleep() local
88 ts.tv_sec = (time_t)delay; in time_sleep()
89 ts.tv_nsec = (long)((delay - ts.tv_sec)*1e9); in time_sleep()
92 ret = nanosleep(&ts, &ts); in time_sleep()
Dbench_pthread.c63 struct timespec ts; in now_ns() local
68 clock_gettime(CLOCK_THREAD_CPUTIME_ID,&ts); in now_ns()
69 return ts.tv_sec*1000000000LL + ts.tv_nsec; in now_ns()
/system/core/toolbox/
Ddate.c17 struct timespec ts; in settime() local
38 ts.tv_sec = t; in settime()
39 ts.tv_nsec = 0; in settime()
40 ioctl(fd, ANDROID_ALARM_SET_RTC, &ts); in settime()
50 struct timespec ts; in date_main() local
119 ts.tv_sec = tv.tv_sec; in date_main()
120 ts.tv_nsec = tv.tv_usec * 1000; in date_main()
121 res = ioctl(fd, ANDROID_ALARM_SET_RTC, &ts); in date_main()
Dalarm.c17 struct timespec ts; in alarm_main() local
105 time(&ts.tv_sec); in alarm_main()
106 ts.tv_nsec = 0; in alarm_main()
114 res = ioctl(afd, ANDROID_ALARM_GET_TIME(alarmtype), &ts); in alarm_main()
119 ts.tv_sec += strtol(argv[optind], NULL, 0); in alarm_main()
121 gmtime_r(&ts.tv_sec, &tm); in alarm_main()
122 printf("time %s -> %ld.%09ld\n", argv[optind], ts.tv_sec, ts.tv_nsec); in alarm_main()
126 res = ioctl(afd, ANDROID_ALARM_SET(alarmtype), &ts); in alarm_main()
Duptime.c59 struct timespec ts; in elapsedRealtime() local
66 result = ioctl(fd, ANDROID_ALARM_GET_TIME(ANDROID_ALARM_ELAPSED_REALTIME), &ts); in elapsedRealtime()
70 return ts.tv_sec; in elapsedRealtime()
/system/core/libcutils/
Dzygote.c228 struct timespec ts; in zygote_run_oneshot() local
230 memset(&ts, 0, sizeof(ts)); in zygote_run_oneshot()
231 ts.tv_nsec = ZYGOTE_RETRY_MILLIS * 1000 * 1000; in zygote_run_oneshot()
234 err = nanosleep (&ts, &ts); in zygote_run_oneshot()
Dtztime.c580 struct state ts; local
584 result = tzparse(&u.buf[1], &ts, FALSE);
585 if (result == 0 && ts.typecnt == 2 &&
586 sp->charcnt + ts.charcnt <= TZ_MAX_CHARS) {
588 ts.ttis[i].tt_abbrind +=
590 for (i = 0; i < ts.charcnt; ++i)
592 ts.chars[i];
594 while (i < ts.timecnt &&
595 ts.ats[i] <=
598 while (i < ts.timecnt &&
[all …]
/system/core/adb/
Dcommandline.c499 const char *ts; in dupAndQuote() local
504 ts = s; in dupAndQuote()
508 for( ;*ts != '\0'; ts++) { in dupAndQuote()
510 if (*ts == ' ' || *ts == '"' || *ts == '\\' || *ts == '(' || *ts == ')') { in dupAndQuote()
517 ts = s; in dupAndQuote()
520 for ( ;*ts != '\0'; ts++) { in dupAndQuote()
521 if (*ts == ' ' || *ts == '"' || *ts == '\\' || *ts == '(' || *ts == ')') { in dupAndQuote()
525 *dest++ = *ts; in dupAndQuote()
Dusb_linux.c316 struct timespec ts; in usb_bulk_write() local
345 ts.tv_sec = tv.tv_sec + 5; in usb_bulk_write()
346 ts.tv_nsec = tv.tv_usec * 1000L; in usb_bulk_write()
347 res = pthread_cond_timedwait(&h->notify, &h->lock, &ts); in usb_bulk_write()
/system/extras/sane_schedstat/
Dsane_schedstat.c113 unsigned long long ts; in parse() local
122 if (!b || sscanf(b, "timestamp %llu\n", &ts) != 1) { in parse()
/system/core/libnetutils/
Ddhcpclient.c55 struct timespec ts; in get_msecs() local
57 if (clock_gettime(CLOCK_MONOTONIC, &ts)) { in get_msecs()
60 return (((msecs_t) ts.tv_sec) * ((msecs_t) 1000)) + in get_msecs()
61 (((msecs_t) ts.tv_nsec) / ((msecs_t) 1000000)); in get_msecs()
/system/core/init/
Dutil.c270 struct timespec ts; in gettime() local
273 ret = clock_gettime(CLOCK_MONOTONIC, &ts); in gettime()
279 return ts.tv_sec; in gettime()
/system/media/audio_utils/
Decho_reference.c329 struct timespec ts; in echo_reference_read() local
331 ts.tv_sec = timeoutMs/1000; in echo_reference_read()
332 ts.tv_nsec = timeoutMs%1000; in echo_reference_read()
333 pthread_cond_timedwait_relative_np(&er->cond, &er->lock, &ts); in echo_reference_read()
/system/core/fs_mgr/
Dfs_mgr.c85 struct timespec ts; in gettime() local
88 ret = clock_gettime(CLOCK_MONOTONIC, &ts); in gettime()
94 return ts.tv_sec; in gettime()