HomeSort by relevance Sort by last modified time
    Searched refs:tv (Results 126 - 150 of 606) sorted by null

1 2 3 4 56 7 8 91011>>

  /external/ppp/pppd/plugins/rp-pppoe/
debug.c 91 struct timeval tv; local
99 gettimeofday(&tv, NULL);
100 now = (time_t) tv.tv_sec;
101 millisec = tv.tv_usec / 1000;
  /external/strace/
time.c 58 tprint_timeval32(struct tcb *tcp, const struct timeval32 *tv)
60 tprintf("{%u, %u}", tv->tv_sec, tv->tv_usec);
64 tprint_timeval(struct tcb *tcp, const struct timeval *tv)
67 (unsigned long) tv->tv_sec, (unsigned long) tv->tv_usec);
86 struct timeval32 tv; local
88 if ((rc = umove(tcp, addr, &tv)) >= 0) {
89 if (special && tv.tv_sec == 0 &&
90 tv.tv_usec == UTIME_NOW
99 struct timeval tv; local
133 struct timeval32 tv; local
139 struct timeval tv; local
162 struct timeval32 tv; local
193 struct timeval32 tv; local
    [all...]
  /hardware/ti/omap3/omx/audio/src/openmax_il/g726_enc/src/
OMX_G726Enc_ComponentThread.c 86 struct timespec tv; local
105 tv.tv_sec = 1;
106 tv.tv_nsec = 0;
111 status = pselect (fdmax+1, &rfds, NULL, NULL, &tv, &set);
  /packages/apps/Browser/src/com/android/browser/
TabBar.java 150 TabView tv = buildTabView(tab); local
151 mTabs.addTab(tv);
427 private void animateTabOut(final Tab tab, final TabView tv) {
428 ObjectAnimator scalex = ObjectAnimator.ofFloat(tv, "scaleX", 1.0f, 0.0f);
429 ObjectAnimator scaley = ObjectAnimator.ofFloat(tv, "scaleY", 1.0f, 0.0f);
430 ObjectAnimator alpha = ObjectAnimator.ofFloat(tv, "alpha", 1.0f, 0.0f);
442 mTabs.removeTab(tv);
459 private void animateTabIn(final Tab tab, final TabView tv) {
460 ObjectAnimator scalex = ObjectAnimator.ofFloat(tv, "scaleX", 0.0f, 1.0f);
479 mTabs.addTab(tv);
493 TabView tv = mTabMap.get(tab); local
500 TabView tv = buildTabView(tab); local
505 TabView tv = mTabMap.get(tab); local
514 TabView tv = mTabMap.get(tab); local
    [all...]
  /external/chromium/third_party/libevent/
event.c 424 event_loopexit(const struct timeval *tv)
427 current_base, tv));
431 event_base_loopexit(struct event_base *event_base, const struct timeval *tv)
434 event_base, tv));
469 struct timeval tv; local
491 timeout_correct(base, &tv);
493 tv_p = &tv;
501 evutil_timerclear(&tv);
562 void (*callback)(int, short, void *), void *arg, const struct timeval *tv)
564 return event_base_once(current_base, fd, events, callback, arg, tv);
837 struct timeval *tv = *tv_p; local
    [all...]
  /external/libusb_aah/libusb/
io.c 2180 struct timeval tv; local
2203 struct timeval tv; local
    [all...]
  /external/bluetooth/bluedroid/hci/src/
btsnoop.c 132 ** (01/01/1970) encoded as: tv.tv_sec, number of seconds since EPOCH and
136 ** result = tv.tv_sec * 1000000
137 ** result += tv.tv_usec
140 static void tv_to_btsnoop_ts(uint32_t *out_lo, uint32_t *out_hi, struct timeval *tv)
143 HCIDISP_MULT_64(tv->tv_sec, 0xf4240, *out_lo, *out_hi);
146 HCIDISP_ADD_64((uint32_t)tv->tv_usec, 0, *out_lo, *out_hi);
269 struct timeval tv; local
285 gettimeofday(&tv, NULL);
286 tv_to_btsnoop_ts(&value, &value_hi, &tv);
315 struct timeval tv; local
361 struct timeval tv; local
406 struct timeval tv; local
    [all...]
  /external/dhcpcd/
eloop.c 176 struct timeval tv; local
178 tv.tv_sec = when;
179 tv.tv_usec = 0;
180 add_q_timeout_tv(queue, &tv, callback, arg);
288 struct timeval tv; local
307 timersub(&timeouts->when, &now, &tv);
308 if (tv.tv_sec > INT_MAX / 1000 ||
309 (tv.tv_sec == INT_MAX / 1000 &&
310 (tv.tv_usec + 999) / 1000 > INT_MAX % 1000))
313 msecs = tv.tv_sec * 1000
    [all...]
  /development/apps/Development/src/com/android/development/
ConfigurationViewer.java 37 TextView tv = (TextView)findViewById(R.id.text); local
65 tv.setText(s);
  /development/samples/Support13Demos/src/com/example/android/supportv13/app/
CountingFragment.java 62 View tv = v.findViewById(R.id.text); local
63 ((TextView)tv).setText("Fragment #" + mNum);
  /development/samples/SupportAppNavigation/src/com/example/android/support/appnavigation/app/
PeerActivity.java 44 TextView tv = (TextView) findViewById(R.id.peer_counter); local
45 tv.setText(getResources().getText(R.string.peer_count).toString() + mPeerCount);
  /packages/apps/Camera/src/com/android/camera/ui/
RotateTextToast.java 40 TextView tv = (TextView) mToast.findViewById(R.id.message); local
41 tv.setText(textResourceId);
  /packages/apps/Gallery2/src/com/android/camera/ui/
RotateTextToast.java 40 TextView tv = (TextView) mToast.findViewById(R.id.message); local
41 tv.setText(textResourceId);
  /packages/apps/LegacyCamera/src/com/android/camera/ui/
RotateTextToast.java 40 TextView tv = (TextView) mToast.findViewById(R.id.message); local
41 tv.setText(textResourceId);
  /hardware/ti/omap3/omx/video/src/openmax_il/video_decode/src/
OMX_VideoDec_Thread.c 109 struct timeval tv; local
112 struct timespec tv; local
165 tv.tv_sec = 0;
166 tv.tv_usec = VIDD_TIMEOUT * 30;
168 tv.tv_sec = 0;
169 tv.tv_nsec = 30000;
364 struct timeval tv; local
367 struct timespec tv; local
402 tv.tv_sec = 0;
403 tv.tv_usec = VIDD_TIMEOUT * 30;
    [all...]
  /external/chromium/third_party/libevent/test/
bench.c 128 struct timeval *tv; local
180 tv = run_once();
181 if (tv == NULL)
184 tv->tv_sec * 1000000L + tv->tv_usec);
  /hardware/ti/omap3/omx/audio/src/openmax_il/aac_dec/src/
OMX_AacDec_CompThread.c 105 struct timespec tv; local
136 tv.tv_sec = 1;
137 tv.tv_nsec = 0;
143 status = pselect (fdmax+1, &rfds, NULL, NULL, &tv, &set);
145 status = select (fdmax+1, &rfds, NULL, NULL, &tv);
  /hardware/ti/omap3/omx/audio/src/openmax_il/g729_enc/src/
OMX_G729Enc_ComponentThread.c 107 struct timespec tv; local
134 tv.tv_sec = 1;
135 tv.tv_nsec = 0;
141 status = pselect (fdmax+1, &rfds, NULL, NULL, &tv, &set);
143 status = select (fdmax+1, &rfds, NULL, NULL, &tv);
  /hardware/ti/omap3/omx/audio/src/openmax_il/mp3_dec/src/
OMX_Mp3Dec_CompThread.c 104 struct timespec tv; local
135 tv.tv_sec = 1;
136 tv.tv_nsec = 0;
142 status = pselect (fdmax+1, &rfds, NULL, NULL, &tv, &set);
144 status = select (fdmax+1, &rfds, NULL, NULL, &tv);
  /hardware/ti/omap3/omx/audio/src/openmax_il/nbamr_dec/src/
OMX_AmrDec_ComponentThread.c 68 struct timespec tv; local
97 tv.tv_sec = 1;
98 tv.tv_nsec = 0;
104 status = pselect (fdmax+1, &rfds, NULL, NULL, &tv, &set);
106 status = select (fdmax+1, &rfds, NULL, NULL, &tv);
  /hardware/ti/omap3/omx/audio/src/openmax_il/nbamr_enc/src/
OMX_AmrEnc_ComponentThread.c 99 struct timespec tv; local
125 tv.tv_sec = 1;
126 tv.tv_nsec = 0;
132 status = pselect (fdmax+1, &rfds, NULL, NULL, &tv, &set);
134 status = select (fdmax+1, &rfds, NULL, NULL, &tv);
  /hardware/ti/omap3/omx/audio/src/openmax_il/wbamr_dec/src/
OMX_WbAmrDec_ComponentThread.c 87 struct timespec tv; local
121 tv.tv_sec = 1;
122 tv.tv_nsec = 0;
129 status = pselect (fdmax+1, &rfds, NULL, NULL, &tv, &set);
131 status = select (fdmax+1, &rfds, NULL, NULL, &tv);
  /hardware/ti/omap3/omx/audio/src/openmax_il/wbamr_enc/src/
OMX_WbAmrEnc_CompThread.c 92 struct timespec tv; local
123 tv.tv_sec = 1;
124 tv.tv_nsec = 0;
130 status = pselect (fdmax + 1, &rfds, NULL, NULL, &tv, &set);
132 status = select (fdmax + 1, &rfds, NULL, NULL, &tv);
  /hardware/ti/omap3/omx/audio/src/openmax_il/wma_dec/src/
OMX_WmaDec_ComponentThread.c 80 struct timespec tv; local
111 tv.tv_sec = 1;
112 tv.tv_nsec = 0;/*WMAD_TIMEOUT * 1000;*/
118 status = pselect (fdmax+1, &rfds, NULL, NULL, &tv, &set);
120 status = select (fdmax+1, &rfds, NULL, NULL, &tv);
  /packages/apps/Camera/src/com/android/camera/
OnScreenHint.java 110 TextView tv = (TextView) v.findViewById(R.id.message); local
111 tv.setText(text);
128 TextView tv = (TextView) mNextView.findViewById(R.id.message); local
129 if (tv == null) {
133 tv.setText(s);

Completed in 479 milliseconds

1 2 3 4 56 7 8 91011>>