HomeSort by relevance Sort by last modified time
    Searched refs:ts (Results 201 - 225 of 549) sorted by null

1 2 3 4 5 6 7 891011>>

  /external/libpcap/
savefile.c     [all...]
  /external/robolectric/src/main/java/com/xtremelabs/robolectric/shadows/
ShadowTabHost.java 92 ShadowTabSpec ts = Robolectric.shadowOf(getCurrentTabSpec()); local
93 View v = ts.getContentView();
95 int viewId = ts.getContentViewId();
  /external/bluetooth/bluedroid/hci/src/
bt_hci_bdroid.c 144 struct itimerspec ts; local
158 ts.it_value.tv_sec = timeout_ms/1000;
159 ts.it_value.tv_nsec = 1000000*(timeout_ms%1000);
160 ts.it_interval.tv_sec = 0;
161 ts.it_interval.tv_nsec = 0;
163 status = timer_settime(hc_cb.epilog_timer_id, 0, &ts, 0);
  /external/e2fsprogs/misc/
tune2fs.c 8 * Copyright 1995, 1996, 1997, 1998, 1999, 2000 by Theodore Ts'o.
603 struct tm ts; local
608 memset(&ts, 0, sizeof(ts));
610 strptime(str, "%Y%m%d%H%M%S", &ts);
612 sscanf(str, "%4d%2d%2d%2d%2d%2d", &ts.tm_year, &ts.tm_mon,
613 &ts.tm_mday, &ts.tm_hour, &ts.tm_min, &ts.tm_sec)
    [all...]
badblocks.c 8 * Copyright 1995, 1996, 1997, 1998, 1999 by Theodore Ts'o
357 struct timespec ts; local
358 ts.tv_sec = tv2.tv_sec - tv1.tv_sec;
359 ts.tv_nsec = (tv2.tv_usec - tv1.tv_usec) * MILISEC;
360 if (ts.tv_nsec < 0) {
361 ts.tv_nsec += NANOSEC;
362 ts.tv_sec -= 1;
365 ts.tv_sec = ts.tv_sec * d_flag / 100;
366 ts.tv_nsec = ts.tv_nsec * d_flag / 100
    [all...]
  /external/tcpdump/
print-wb.c 322 u_int32_t ts = EXTRACT_32BITS(&dh->dh_ts); local
323 printf("%d", ts - ss + 1);
324 if (ss > ts || ts > es) {
326 if (ts < ss)
329 ss = ts;
  /development/tools/axl/
chewperf.py 20 ts = int(rawLines[x - 1].split()[-1])
21 times.append(ts)
  /device/lge/mako/camera/mm-camera-interface/
mm_camera_poll_thread.c 93 struct timespec ts; local
94 clock_gettime(CLOCK_REALTIME, &ts);
95 ts.tv_sec += 2;
97 rc = pthread_cond_timedwait(&poll_cb->cond_v, &poll_cb->mutex, &ts);
312 struct timespec ts; local
314 clock_gettime(CLOCK_REALTIME, &ts);
315 ts.tv_sec += 2;
316 rc = pthread_cond_timedwait(&poll_cb->cond_v, &poll_cb->mutex, &ts);
  /external/antlr/antlr-3.4/gunit/src/main/java/org/antlr/gunit/swingui/
RuleListController.java 77 public void initialize(TestSuite ts) {
78 setTestSuite(ts);
  /frameworks/av/include/media/nbaio/
NBLog.h 121 virtual void logTimestamp(const struct timespec& ts);
155 virtual void logTimestamp(const struct timespec& ts);
  /frameworks/base/core/tests/coretests/src/android/database/
MatrixCursorTest.java 135 NonIterableArrayList(Collection<? extends T> ts) {
136 super(ts);
  /system/core/adb/
commandline.c 514 const char *ts; local
519 ts = s;
523 for( ;*ts != '\0'; ts++) {
525 if (*ts == ' ' || *ts == '"' || *ts == '\\' || *ts == '(' || *ts == ')') {
532 ts = s
    [all...]
  /system/extras/sane_schedstat/
sane_schedstat.c 113 unsigned long long ts; local
122 if (!b || sscanf(b, "timestamp %llu\n", &ts) != 1) {
  /external/clang/utils/TableGen/
NeonEmitter.cpp 791 std::string ts = TypeString(proto[0], typestr); local
890 s += "(" + ts + ")(__a == __b);";
893 s += "(" + ts + ")(__a >= __b);";
896 s += "(" + ts + ")(__a <= __b);";
899 s += "(" + ts + ")(__a > __b);";
902 s += "(" + ts + ")(__a < __b);";
926 s += "(" + ts + ")__a;";
929 s += "(" + ts + ")__builtin_shufflevector((int64x1_t)__a";
933 s += "(" + ts +
937 s += "(" + ts
1078 std::string ts = TypeString(proto[0], typestr); local
1335 std::string ts = TypeString('d', TDTypeVec[i]); local
1338 OS << " " << ts << " val"; local
    [all...]
  /external/chromium/chrome/browser/history/
visitsegment_database.cc 192 base::Time ts,
194 base::Time t = ts.LocalMidnight();
250 base::Time ts = from_time.LocalMidnight(); local
251 statement.BindInt64(0, ts.ToInternalValue());
  /external/clang/test/PCH/
cxx-templates.cpp 36 TS5 ts(0);
  /external/ipsec-tools/src/racoon/
logger.c 185 char ts[256]; local
198 strftime(ts, sizeof(ts), "%B %d %T", tm);
199 fprintf(fp, "%s: %s\n", ts, p->buf[j]);
  /external/openssl/crypto/conf/
conf_api.c 108 STACK_OF(CONF_VALUE) *ts;
110 ts = (STACK_OF(CONF_VALUE) *)section->value;
113 if (!sk_CONF_VALUE_push(ts,value))
121 (void)sk_CONF_VALUE_delete_ptr(ts,v);
  /external/openssl/crypto/rand/
rand_unix.c 160 struct timespec ts; local
195 ts.tv_nsec = random ();
210 clock_gettime (CLOCK_REALTIME, &ts);
213 v = (unsigned char) (ts.tv_nsec % 256);
  /external/strace/
term.c 194 struct ttysize ts; local
309 if (!verbose(tcp) || umove(tcp, arg, &ts) < 0)
312 ts.ts_lines, ts.ts_cols);
  /external/webkit/Source/WebCore/platform/graphics/chromium/cc/
CCVideoLayerImpl.cpp 163 void CCVideoLayerImpl::dumpLayerProperties(TextStream& ts, int indent) const
165 writeIndent(ts, indent);
166 ts << "video layer\n";
167 CCLayerImpl::dumpLayerProperties(ts, indent);
  /system/extras/tests/bionic/libc/other/
test_jpeg.c 223 struct timespec ts; local
225 if ( clock_gettime( CLOCK_MONOTONIC, &ts ) < 0 )
228 return ts.tv_sec*1e6 + ts.tv_nsec*1e-3;
test_zlib.c 160 struct timespec ts; local
162 if ( clock_gettime( CLOCK_MONOTONIC, &ts ) < 0 )
165 return ts.tv_sec*1e6 + ts.tv_nsec*1e-3;
  /bionic/libc/upstream-netbsd/libc/isc/
ev_timers.c 168 struct timespec ts; local
170 ts.tv_sec = tv.tv_sec;
171 ts.tv_nsec = tv.tv_usec * 1000;
172 return (ts);
176 evTimeVal(struct timespec ts) {
179 tv.tv_sec = ts.tv_sec;
180 tv.tv_usec = (suseconds_t)(ts.tv_nsec / 1000);
  /external/quake/quake/src/WinQuake/
snd_android.cpp 554 timespec ts; local
555 ts.tv_sec = tp.tv_sec;
556 ts.tv_nsec = tp.tv_usec * 1000 + WAIT_NS;
557 if (ts.tv_nsec >= NS_PER_SECOND) {
558 ts.tv_nsec -= NS_PER_SECOND;
559 ts.tv_sec += 1;
561 if (ETIMEDOUT == pthread_cond_timedwait( &condition_cond, &condition_mutex, &ts)) {

Completed in 1311 milliseconds

1 2 3 4 5 6 7 891011>>