Searched defs:tv (Results 1 - 25 of 61) sorted by relevance

123

/hardware/qcom/media/msm8974/mm-video-legacy/vidc/venc/test/
H A Dvenc_util.c44 struct timeval tv; local
46 gettimeofday(&tv, NULL);
47 microsec = (tv.tv_sec * 1000000) + (tv.tv_usec);
/hardware/interfaces/tv/cec/1.0/default/
H A DHdmiCec.h22 #include <android/hardware/tv/cec/1.0/IHdmiCec.h>
30 namespace tv { namespace in namespace:android::hardware
35 using ::android::hardware::tv::cec::V1_0::CecLogicalAddress;
36 using ::android::hardware::tv::cec::V1_0::CecMessage;
37 using ::android::hardware::tv::cec::V1_0::MaxLength;
38 using ::android::hardware::tv::cec::V1_0::HdmiPortInfo;
39 using ::android::hardware::tv::cec::V1_0::IHdmiCec;
40 using ::android::hardware::tv::cec::V1_0::IHdmiCecCallback;
41 using ::android::hardware::tv::cec::V1_0::OptionKey;
42 using ::android::hardware::tv
[all...]
H A DHdmiCec.cpp17 #define LOG_TAG "android.hardware.tv.cec@1.0-impl"
26 namespace tv { namespace in namespace:android::hardware
269 // Methods from ::android::hardware::tv::cec::V1_0::IHdmiCec follow.
420 } // namespace tv
/hardware/interfaces/tv/input/1.0/default/
H A DTvInput.h19 #include <android/hardware/tv/input/1.0/ITvInput.h>
27 namespace tv { namespace in namespace:android::hardware
33 using ::android::hardware::tv::input::V1_0::ITvInput;
34 using ::android::hardware::tv::input::V1_0::ITvInputCallback;
35 using ::android::hardware::tv::input::V1_0::Result;
36 using ::android::hardware::tv::input::V1_0::TvInputEvent;
37 using ::android::hardware::tv::input::V1_0::TvStreamConfig;
71 } // namespace tv
H A DTvInput.cpp17 #define LOG_TAG "android.hardware.tv.input@1.0-service"
24 namespace tv { namespace in namespace:android::hardware
224 } // namespace tv
/hardware/qcom/gps/msm8960/utils/
H A Dloc_timer.c50 struct timeval tv; local
73 gettimeofday(&tv, NULL);
89 __func__, __LINE__, (int)tv.tv_sec, (int)tv.tv_usec*1000);
/hardware/invensense/6515/libsensors_iio/software/core/mllite/linux/
H A Dmlos_linux.c181 struct timeval tv; local
183 if (gettimeofday(&tv, NULL) != 0)
186 return (long)((tv.tv_sec * 1000000LL + tv.tv_usec) / 1000LL);
/hardware/invensense/65xx/libsensors_iio/software/core/mllite/linux/
H A Dmlos_linux.c181 struct timeval tv; local
183 if (gettimeofday(&tv, NULL) != 0)
186 return (long)((tv.tv_sec * 1000000LL + tv.tv_usec) / 1000LL);
/hardware/qcom/gps/msm8084/utils/
H A Dloc_timer.c57 struct timeval tv; local
62 gettimeofday(&tv, NULL);
78 (int)tv.tv_sec, (int)tv.tv_usec*1000);
H A Dloc_log.cpp231 struct timeval tv; local
234 gettimeofday(&tv, &tz);
235 hh = tv.tv_sec/3600%24;
236 mm = (tv.tv_sec%3600)/60;
237 ss = tv.tv_sec%60;
238 snprintf(str, buf_size, "%02d:%02d:%02d.%06ld", hh, mm, ss, tv.tv_usec);
/hardware/qcom/gps/msm8909w_3100/utils/platform_lib_abstractions/loc_pla/src/
H A Dplatform_lib_log_util.cpp33 struct timeval tv; local
36 gettimeofday(&tv, &tz);
37 hh = tv.tv_sec/3600%24;
38 mm = (tv.tv_sec%3600)/60;
39 ss = tv.tv_sec%60;
40 snprintf(str, buf_size, "%02d:%02d:%02d.%06ld", hh, mm, ss, tv.tv_usec);
/hardware/qcom/gps/msm8994/utils/
H A Dloc_timer.c57 struct timeval tv; local
62 gettimeofday(&tv, NULL);
78 (int)tv.tv_sec, (int)tv.tv_usec*1000);
/hardware/qcom/gps/msm8998/utils/platform_lib_abstractions/loc_pla/src/
H A Dplatform_lib_log_util.cpp36 struct timeval tv; local
39 gettimeofday(&tv, &tz);
40 hh = tv.tv_sec/3600%24;
41 mm = (tv.tv_sec%3600)/60;
42 ss = tv.tv_sec%60;
43 snprintf(str, buf_size, "%02d:%02d:%02d.%06ld", hh, mm, ss, tv.tv_usec);
/hardware/qcom/gps/utils/
H A Dloc_timer.c57 struct timeval tv; local
62 gettimeofday(&tv, NULL);
78 (int)tv.tv_sec, (int)tv.tv_usec*1000);
/hardware/nxp/nfc/halimpl/tml/
H A DphTmlNfc_i2c.cc122 struct timeval tv; local
142 tv.tv_sec = 2;
143 tv.tv_usec = 1;
146 select((int)((intptr_t)pDevHandle + (int)1), &rfds, NULL, NULL, &tv);
/hardware/intel/common/libva/test/putsurface/
H A Dputsurface_wayland.c293 struct timeval tv; local
300 tv.tv_sec = 0;
301 tv.tv_usec = 0;
306 retval = select(d->event_fd + 1, &rfds, NULL, NULL, &tv);
/hardware/qcom/display/msm8909/sdm/include/utils/
H A Dlocker.h144 struct timeval tv; local
145 gettimeofday(&tv, NULL);
146 ts.tv_sec = tv.tv_sec + ms/1000;
147 ts.tv_nsec = tv.tv_usec*1000 + (ms%1000)*1000000;
/hardware/qcom/display/msm8909w_3100/sdm/include/utils/
H A Dlocker.h144 struct timeval tv; local
145 gettimeofday(&tv, NULL);
146 ts.tv_sec = tv.tv_sec + ms/1000;
147 ts.tv_nsec = tv.tv_usec*1000 + (ms%1000)*1000000;
/hardware/qcom/display/msm8996/sdm/include/utils/
H A Dlocker.h144 struct timeval tv; local
145 gettimeofday(&tv, NULL);
146 ts.tv_sec = tv.tv_sec + ms/1000;
147 ts.tv_nsec = tv.tv_usec*1000 + (ms%1000)*1000000;
/hardware/qcom/display/msm8998/sdm/include/utils/
H A Dlocker.h144 struct timeval tv; local
145 gettimeofday(&tv, NULL);
146 ts.tv_sec = tv.tv_sec + ms/1000;
147 ts.tv_nsec = tv.tv_usec*1000 + (ms%1000)*1000000;
/hardware/qcom/gps/loc_api/libloc_api_50001/
H A Dloc_eng_nmea.cpp59 struct timeval tv; local
60 gettimeofday(&tv, (struct timezone *) NULL);
61 int64_t now = tv.tv_sec * 1000LL + tv.tv_usec / 1000;
/hardware/qcom/gps/msm8084/loc_api/libloc_api_50001/
H A Dloc_eng_nmea.cpp59 struct timeval tv; local
60 gettimeofday(&tv, (struct timezone *) NULL);
61 int64_t now = tv.tv_sec * 1000LL + tv.tv_usec / 1000;
/hardware/qcom/gps/msm8909/loc_api/libloc_api_50001/
H A Dloc_eng_nmea.cpp55 struct timeval tv; local
56 gettimeofday(&tv, (struct timezone *) NULL);
57 int64_t now = tv.tv_sec * 1000LL + tv.tv_usec / 1000;
/hardware/qcom/gps/msm8909/utils/
H A Dloc_log.cpp233 struct timeval tv; local
236 gettimeofday(&tv, &tz);
237 hh = tv.tv_sec/3600%24;
238 mm = (tv.tv_sec%3600)/60;
239 ss = tv.tv_sec%60;
240 snprintf(str, buf_size, "%02d:%02d:%02d.%06ld", hh, mm, ss, tv.tv_usec);
/hardware/qcom/gps/msm8909w_3100/utils/
H A Dloc_log.cpp227 struct timeval tv; local
230 gettimeofday(&tv, &tz);
231 hh = tv.tv_sec/3600%24;
232 mm = (tv.tv_sec%3600)/60;
233 ss = tv.tv_sec%60;
234 snprintf(str, buf_size, "%02d:%02d:%02d.%06ld", hh, mm, ss, tv.tv_usec);

Completed in 836 milliseconds

123