Searched refs:ts (Results 1 - 19 of 19) sorted by relevance

/system/extras/tests/bionic/libc/other/
H A Dtest_timer_create3.c47 struct itimerspec ts; local
56 ts.it_value.tv_sec = 0;
57 ts.it_value.tv_nsec = 0;
58 ts.it_interval.tv_sec = 1;
59 ts.it_interval.tv_nsec = 0;
60 timer_settime(tid, TIMER_ABSTIME, &ts, NULL);
69 struct itimerspec ts, ots; local
82 ts.it_value.tv_sec = 0;
83 ts.it_value.tv_nsec = 1;
84 ts
[all...]
H A Dtest_thread_max.c51 struct timespec ts; local
57 ts.tv_sec = 0;
58 ts.tv_nsec = 0.002*1e9;
59 nanosleep( &ts, &ts );
H A Dtest_timer_create.c53 struct itimerspec ts, ots; local
66 ts.it_value.tv_sec = 3;
67 ts.it_value.tv_nsec = 0;
68 ts.it_interval.tv_sec = seconds;
69 ts.it_interval.tv_nsec = 0;
70 if (timer_settime (tid, TIMER_ABSTIME, &ts, &ots) < 0)
H A Dtest_timer_create2.c53 struct itimerspec ts, ots; local
65 ts.it_value.tv_sec = 3;
66 ts.it_value.tv_nsec = 0;
67 ts.it_interval.tv_sec = seconds;
68 ts.it_interval.tv_nsec = 0;
69 if (timer_settime (tid, TIMER_ABSTIME, &ts, &ots) < 0)
H A Dtest_jpeg.c223 struct timespec ts; local
225 if ( clock_gettime( CLOCK_MONOTONIC, &ts ) < 0 )
228 return ts.tv_sec*1e6 + ts.tv_nsec*1e-3;
H A Dtest_zlib.c160 struct timespec ts; local
162 if ( clock_gettime( CLOCK_MONOTONIC, &ts ) < 0 )
165 return ts.tv_sec*1e6 + ts.tv_nsec*1e-3;
/system/extras/tests/bionic/libc/common/
H A Dtest_pthread_getcpuclockid.c42 struct timespec ts; local
55 ts.tv_sec = 0;
56 ts.tv_nsec = 300000000 + ((int)arg)*50000000;
57 nanosleep( &ts, &ts );
59 clock_gettime( clock, &ts );
60 fprintf(stderr, "thread %08lx: clock_gettime() returned %g nsecs\n", self, ts.tv_sec*1e9 + ts.tv_nsec);
H A Dtest_pthread_once.c42 struct timespec ts; local
46 ts.tv_sec = 2;
47 ts.tv_nsec = 0;
48 nanosleep (&ts, NULL);
H A Dtest_pthread_mutex.c76 struct timespec ts[1]; local
78 clock_gettime(CLOCK_MONOTONIC, ts);
79 return (double)ts->tv_sec + ts->tv_nsec/1e9;
85 struct timespec ts; local
88 ts.tv_sec = (time_t)delay;
89 ts.tv_nsec = (long)((delay - ts.tv_sec)*1e9);
92 ret = nanosleep(&ts, &ts);
[all...]
/system/core/toolbox/
H A Ddate.c15 struct timespec ts; local
36 ts.tv_sec = t;
37 ts.tv_nsec = 0;
38 ioctl(fd, ANDROID_ALARM_SET_RTC, &ts);
48 struct timespec ts; local
117 ts.tv_sec = tv.tv_sec;
118 ts.tv_nsec = tv.tv_usec * 1000;
119 res = ioctl(fd, ANDROID_ALARM_SET_RTC, &ts);
H A Dalarm.c17 struct timespec ts; local
105 time(&ts.tv_sec);
106 ts.tv_nsec = 0;
114 res = ioctl(afd, ANDROID_ALARM_GET_TIME(alarmtype), &ts);
119 ts.tv_sec += strtol(argv[optind], NULL, 0);
121 gmtime_r(&ts.tv_sec, &tm);
122 printf("time %s -> %ld.%09ld\n", argv[optind], ts.tv_sec, ts.tv_nsec);
126 res = ioctl(afd, ANDROID_ALARM_SET(alarmtype), &ts);
/system/wlan/ti/sta_dk_4_0_4_32/pform/linux/src/
H A Dbmtrace.c52 unsigned long ts;/* Timestamp */ member in struct:__anon977
100 len += sprintf(page+len, "loc delta ts p1 p2\n");
115 ((bme->ts-prev)>bm_control->self_delay)?bme->ts-prev-bm_control->self_delay:0,
116 bme->ts,
118 prev = bme->ts;
152 bm_control->self_delay = bm_control->entry[1].ts - bm_control->entry[0].ts;
178 bm_control->entry[pos].ts = os_timeStampUs(NULL);
/system/core/libcutils/
H A Dzygote.c228 struct timespec ts; local
230 memset(&ts, 0, sizeof(ts));
231 ts.tv_nsec = ZYGOTE_RETRY_MILLIS * 1000 * 1000;
234 err = nanosleep (&ts, &ts);
H A 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
[all...]
/system/wlan/ti/wilink_6_1/platforms/os/common/src/
H A Dtracebuf.c45 unsigned long ts;/* Timestamp */ member in struct:__anon1468
86 tb_control->self_delay = tb_control->entry[1].ts - tb_control->entry[0].ts;
109 tb_control->entry[tb_control->pos].ts =
141 tb_control->entry[pos].ts = os_timeStampUs(NULL);
165 (int)tb_control->entry[pos].ts,
/system/core/adb/
H A Dcommandline.c451 const char *ts; local
456 ts = s;
460 for( ;*ts != '\0'; ts++) {
462 if (*ts == ' ' || *ts == '"' || *ts == '\\' || *ts == '(' || *ts == ')') {
469 ts
[all...]
H A Dusb_linux.c292 struct timespec ts; local
321 ts.tv_sec = tv.tv_sec + 5;
322 ts.tv_nsec = tv.tv_usec * 1000L;
323 res = pthread_cond_timedwait(&h->notify, &h->lock, &ts);
/system/core/libnetutils/
H A Ddhcpclient.c55 struct timespec ts; local
57 if (clock_gettime(CLOCK_MONOTONIC, &ts)) {
60 return (((msecs_t) ts.tv_sec) * ((msecs_t) 1000)) +
61 (((msecs_t) ts.tv_nsec) / ((msecs_t) 1000000));
/system/core/init/
H A Dinit.c131 struct timespec ts; local
134 ret = clock_gettime(CLOCK_MONOTONIC, &ts);
140 return ts.tv_sec;

Completed in 367 milliseconds