Home
last modified time | relevance | path

Searched refs:tv (Results 1 – 14 of 14) sorted by relevance

/device/sample/apps/client/src/com/example/android/platform_library/client/
DClient.java38 TextView tv = new TextView(this); in onCreate() local
39 tv.setText("Got from lib: " + res); in onCreate()
40 setContentView(tv); in onCreate()
/device/generic/goldfish/libqemu/
Dtest_util.c38 struct timeval tv; in now_secs() local
39 gettimeofday(&tv, NULL); in now_secs()
40 return tv.sec + (double)tv.usec/1e6; in now_secs()
/device/asus/fugu/recovery/
Drecovery_ui.cpp59 struct timeval tv; in now() local
60 gettimeofday(&tv, NULL); in now()
61 return tv.tv_sec + tv.tv_usec / 1000000.0; in now()
/device/generic/goldfish/camera/
DEmulatedCameraDevice.cpp350 struct timeval tv, *tvp = NULL; in Select() local
360 tv.tv_sec = timeout / 1000000; in Select()
361 tv.tv_usec = timeout % 1000000; in Select()
362 tvp = &tv; in Select()
/device/google/atv/sdk/
Dimages_x86_source.prop_template8 SystemImage.TagId=android-tv
Dimages_armeabi-v7a_source.prop_template8 SystemImage.TagId=android-tv
/device/moto/shamu/camera/QCamera/HAL/usbcamcore/src/
DQualcommUsbCamera.cpp2051 struct timeval tv; in previewloop() local
2062 tv.tv_sec = 0; in previewloop()
2063 tv.tv_usec = 500000; in previewloop()
2067 r = select(camHal->fd + 1, &fds, NULL, NULL, &tv); in previewloop()
2069 r = select(1, NULL, NULL, NULL, &tv); in previewloop()
2519 struct timeval tv; in takePictureThread() local
2525 tv.tv_sec = 1; in takePictureThread()
2526 tv.tv_usec = 0; in takePictureThread()
2530 r = select(camHal->fd + 1, &fds, NULL, NULL, &tv); in takePictureThread()
/device/moto/shamu/camera/QCamera2/HAL3/
DQCamera3Channel.cpp1177 struct timeval tv; in dumpRawSnapshot() local
1188 gettimeofday(&tv, NULL); in dumpRawSnapshot()
1189 timeinfo = localtime(&tv.tv_sec); in dumpRawSnapshot()
1196 timeinfo->tm_min, timeinfo->tm_sec,tv.tv_usec, in dumpRawSnapshot()
2146 struct timeval tv; in getExifDateTime() local
2149 gettimeofday(&tv, NULL); in getExifDateTime()
2150 timeinfo = localtime(&tv.tv_sec); in getExifDateTime()
2160 snprintf(subsecTime, 7, "%06ld", tv.tv_usec); in getExifDateTime()
/device/lge/hammerhead/camera/QCamera2/HAL3/
DQCamera3Channel.cpp1540 struct timeval tv; in getExifDateTime() local
1543 gettimeofday(&tv, NULL); in getExifDateTime()
1544 timeinfo = localtime(&tv.tv_sec); in getExifDateTime()
1554 snprintf(subsecTime, 7, "%06ld", tv.tv_usec); in getExifDateTime()
DQCamera3HWI.cpp1172 const struct timeval *tv = (const struct timeval *) in handleMetadataWithLock() local
1174 nsecs_t capture_time = (nsecs_t)tv->tv_sec * NSEC_PER_SEC + in handleMetadataWithLock()
1175 tv->tv_usec * NSEC_PER_USEC; in handleMetadataWithLock()
/device/asus/fugu/
Ddevice.mk64 PRODUCT_CHARACTERISTICS := nosdcard,tv
/device/asus/flo/camera/QCamera2/HAL3/
DQCamera3Channel.cpp1834 struct timeval tv; in getExifData() local
1836 gettimeofday(&tv, NULL); in getExifData()
1837 snprintf(subsecTime, 7, "%06ld", tv.tv_usec); in getExifData()
DQCamera3HWI.cpp1031 const struct timeval *tv = (const struct timeval *) in captureResultCb() local
1033 nsecs_t capture_time = (nsecs_t)tv->tv_sec * NSEC_PER_SEC + in captureResultCb()
1034 tv->tv_usec * NSEC_PER_USEC; in captureResultCb()
/device/lge/mako/camera/
DQCameraHWI_Parm.cpp4195 struct timeval tv; in setExifTags() local
4196 gettimeofday(&tv, NULL); in setExifTags()
4197 snprintf(mExifValues.subsecTime, 7, "%06ld", tv.tv_usec); in setExifTags()