HomeSort by relevance Sort by last modified time
    Searched defs:ts (Results 76 - 100 of 188) sorted by null

1 2 34 5 6 7 8

  /external/openssl/crypto/
o_time.c 83 struct tm *ts = NULL; local
89 ts = result;
91 ts = gmtime(timer);
92 if (ts == NULL)
95 memcpy(result, ts, sizeof(struct tm));
96 ts = result;
99 if (ts == NULL)
221 ts = result;
225 return ts;
  /external/qemu/
arm-semi.c 103 static inline uint32_t set_swi_errno(TaskState *ts, uint32_t code)
106 ts->swi_errno = errno;
127 TaskState *ts = env->opaque; local
132 ts->swi_errno = err;
184 TaskState *ts = env->opaque; local
186 CPUState *ts = env; local
209 ret = set_swi_errno(ts, open(s, open_modeflags[ARG(1)], 0644));
218 return set_swi_errno(ts, close(ARG(0)));
258 ret = set_swi_errno(ts, write(ARG(0), s, len));
275 ret = set_swi_errno(ts, read(ARG(0), s, len))
    [all...]
posix-aio-compat.c 101 struct timespec *ts)
103 int ret = pthread_cond_timedwait(cond, mutex, ts);
314 struct timespec ts; local
317 ts.tv_sec = tv.tv_sec + 10;
318 ts.tv_nsec = 0;
324 ret = cond_timedwait(&cond, &lock, &ts);
  /external/srtp/include/
srtp_priv.h 79 uint32_t ts; /* timestamp */ member in struct:__anon11448
93 uint32_t ts; /* timestamp */ member in struct:__anon11449
  /external/tcpdump/
print-dccp.c 410 u_int32_t *ts; local
486 ts = (u_int32_t *)(option + 2);
487 printf("timestamp %u", (u_int32_t)ntohl(*ts));
490 ts = (u_int32_t *)(option + 2);
491 printf("timestamp_echo %u", (u_int32_t)ntohl(*ts));
496 ts = (u_int32_t *)(option + 2);
497 printf("%u", (u_int32_t)ntohl(*ts));
  /external/webkit/Source/WebCore/platform/graphics/
GraphicsLayer.cpp 397 static void writeIndent(TextStream& ts, int indent)
400 ts << " ";
403 void GraphicsLayer::dumpLayer(TextStream& ts, int indent, LayerTreeAsTextBehavior behavior) const
405 writeIndent(ts, indent);
406 ts << "(" << "GraphicsLayer";
409 ts << " " << static_cast<void*>(const_cast<GraphicsLayer*>(this));
410 ts << " \"" << m_name << "\"";
413 ts << "\n";
414 dumpProperties(ts, indent, behavior);
415 writeIndent(ts, indent)
527 TextStream ts; local
    [all...]
  /external/webkit/Source/WebCore/platform/graphics/chromium/
LayerChromium.cpp 347 TextStream ts; local
348 dumpLayer(ts, 0);
349 return ts.release();
352 static void writeIndent(TextStream& ts, int indent)
355 ts << " ";
358 void LayerChromium::dumpLayer(TextStream& ts, int indent) const
360 writeIndent(ts, indent);
361 ts << layerTypeAsString() << "(" << m_name << ")\n";
362 dumpLayerProperties(ts, indent+2);
364 m_ccLayerImpl->dumpLayerProperties(ts, indent+2)
    [all...]
  /frameworks/base/libs/utils/
BufferedTextOutput.cpp 93 ThreadState* ts = (ThreadState*) thread_store_get( &tls ); local
94 if (ts) return ts;
95 ts = new ThreadState;
96 thread_store_set( &tls, ts, threadDestructor );
97 return ts;
264 ThreadState* ts = getThreadState(); local
265 if (ts) {
266 while (ts->states.size() <= (size_t)mIndex) ts->states.add(NULL)
    [all...]
  /hardware/ril/libril/
ril_event.cpp 99 struct timespec ts; local
100 clock_gettime(CLOCK_MONOTONIC, &ts);
101 tv->tv_sec = ts.tv_sec;
102 tv->tv_usec = ts.tv_nsec/1000;
  /system/core/init/
util.c 236 struct timespec ts; local
239 ret = clock_gettime(CLOCK_MONOTONIC, &ts);
245 return ts.tv_sec;
  /system/extras/tests/bionic/libc/common/
test_pthread_mutex.c 76 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...]
test_pthread_rwlock.c 75 struct timespec ts[1]; local
77 clock_gettime(CLOCK_MONOTONIC, ts);
78 return (double)ts->tv_sec + ts->tv_nsec/1e9;
84 struct timespec ts; local
87 ts.tv_sec = (time_t)delay;
88 ts.tv_nsec = (long)((delay - ts.tv_sec)*1e9);
91 ret = nanosleep(&ts, &ts);
    [all...]
  /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;
  /system/media/audio_utils/
echo_reference.c 300 struct timespec ts; local
302 ts.tv_sec = timeoutMs/1000;
303 ts.tv_nsec = timeoutMs%1000;
304 pthread_cond_timedwait_relative_np(&er->cond, &er->lock, &ts);
  /development/tools/emulator/system/sensors/
sensors_qemu.c 221 struct timespec ts; local
223 clock_gettime(CLOCK_MONOTONIC, &ts);
225 return (int64_t)ts.tv_sec * 1000000000 + ts.tv_nsec;
  /external/bluetooth/bluez/test/
rctest.c 418 char ts[30]; local
423 memset(ts, 0, sizeof(ts));
445 memset(ts, 0, sizeof(ts));
447 sprintf(ts, "[%ld.%ld] ",
480 syslog(LOG_INFO,"%s%ld bytes in %.2f sec, %.2f kB/s", ts, total,
  /external/bluetooth/bluez/tools/
rfcomm.c 296 struct timespec ts; local
303 ts.tv_sec = 0;
304 ts.tv_nsec = 200;
305 if (ppoll(p, 1, &ts, sigs) || __io_canceled) {
  /external/bluetooth/hcidump/parser/
parser.h 47 struct timeval ts; member in struct:frame
129 time_t t = f->ts.tv_sec;
133 tm.tm_hour, tm.tm_min, tm.tm_sec, f->ts.tv_usec);
135 printf("%8lu.%06lu ", f->ts.tv_sec, f->ts.tv_usec);
  /external/chromium/chrome/browser/history/
history.cc 801 history::TopSites* ts = profile_->GetTopSitesWithoutCreating(); local
802 if (ts)
803 ts->HistoryLoaded();
811 history::TopSites* ts = profile_->GetTopSitesWithoutCreating(); local
812 if (ts)
813 ts->MigrateFromHistory();
  /external/chromium/third_party/libevent/
event.c 127 struct timespec ts; local
129 if (clock_gettime(CLOCK_MONOTONIC, &ts) == 0)
144 struct timespec ts; local
146 if (clock_gettime(CLOCK_MONOTONIC, &ts) == -1)
149 tp->tv_sec = ts.tv_sec;
150 tp->tv_usec = ts.tv_nsec / 1000;
  /external/libpcap/
pcap-dag.c 437 register unsigned long long ts; local
440 ts = SWAPLL(header->ts);
442 ts = header->ts;
445 pcap_header.ts.tv_sec = ts >> 32;
446 ts = (ts & 0xffffffffULL) * 1000000;
447 ts += 0x80000000; /* rounding *
    [all...]
pcap.h 142 struct timeval ts; /* time stamp */ member in struct:pcap_pkthdr
  /external/opencv/cv/src/
cvmotempl.cpp 53 int ts, delbound; local
57 ts = v.i;
89 /* val = silIm[x] ? ts : val < delbound ? 0 : val; */
91 val ^= (ts ^ val) & ((silIm[x] == 0) - 1);
100 /* val = silIm[x] ? ts : val < delbound ? 0 : val; */
102 val ^= (ts ^ val) & ((silIm[x] == 0) - 1);
427 int stub_val, ts; local
448 v.f = (float)timestamp; ts = v.i;
469 if( mhi_row[x] == ts && mask8u_row[x] == 0 )
  /frameworks/base/tests/DumpRenderTree/src/com/android/dumprendertree/
WebViewEventSender.java 85 long ts = SystemClock.uptimeMillis(); local
86 MotionEvent event = MotionEvent.obtain(ts, ts, MotionEvent.ACTION_DOWN, mouseX, mouseY, 0);
96 long ts = SystemClock.uptimeMillis(); local
97 MotionEvent event = MotionEvent.obtain(ts, ts, MotionEvent.ACTION_UP, mouseX, mouseY, 0);
  /hardware/ti/omap4xxx/
heaptracker.c 530 struct timespec ts; local
543 clock_gettime(CLOCK_REALTIME, &ts);
544 ts.tv_sec += SCANNER_SLEEP_S;
545 pthread_cond_timedwait(&scanner_cond, &scanner_lock, &ts);

Completed in 664 milliseconds

1 2 34 5 6 7 8