/hardware/qcom/media/msm8974/mm-video-legacy/vidc/venc/test/ |
H A D | venc_util.c | 44 struct timeval tv; local 46 gettimeofday(&tv, NULL); 47 microsec = (tv.tv_sec * 1000000) + (tv.tv_usec);
|
/hardware/interfaces/tv/input/1.0/ |
H A D | ITvInputCallback.hal | 17 package android.hardware.tv.input@1.0;
|
/hardware/invensense/6515/libsensors_iio/software/simple_apps/common/ |
H A D | console_helper.c | 29 struct timeval tv; 32 tv.tv_sec=0; 33 tv.tv_usec=0; 37 if(select(1, &read_fd, NULL, NULL, &tv) == -1)
|
/hardware/qcom/gps/msm8998/utils/platform_lib_abstractions/loc_pla/src/ |
H A D | platform_lib_log_util.cpp | 36 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/sdm845/utils/platform_lib_abstractions/loc_pla/src/ |
H A D | platform_lib_log_util.cpp | 33 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/interfaces/tv/cec/1.0/ |
H A D | IHdmiCecCallback.hal | 17 package android.hardware.tv.cec@1.0;
|
H A D | Android.mk | 8 LOCAL_MODULE := android.hardware.tv.cec-V1.0-java 22 GEN := $(intermediates)/android/hardware/tv/cec/V1_0/AbortReason.java 32 android.hardware.tv.cec@1.0::types.AbortReason 41 GEN := $(intermediates)/android/hardware/tv/cec/V1_0/CecDeviceType.java 51 android.hardware.tv.cec@1.0::types.CecDeviceType 60 GEN := $(intermediates)/android/hardware/tv/cec/V1_0/CecLogicalAddress.java 70 android.hardware.tv.cec@1.0::types.CecLogicalAddress 79 GEN := $(intermediates)/android/hardware/tv/cec/V1_0/CecMessage.java 89 android.hardware.tv.cec@1.0::types.CecMessage 98 GEN := $(intermediates)/android/hardware/tv/ce [all...] |
/hardware/interfaces/tv/cec/1.0/default/ |
H A D | service.cpp | 17 #define LOG_TAG "android.hardware.tv.cec@1.0-service" 19 #include <android/hardware/tv/cec/1.0/IHdmiCec.h> 22 using android::hardware::tv::cec::V1_0::IHdmiCec;
|
H A D | Android.mk | 4 LOCAL_MODULE := android.hardware.tv.cec@1.0-impl 17 android.hardware.tv.cec@1.0 \ 25 LOCAL_MODULE := android.hardware.tv.cec@1.0-service 26 LOCAL_INIT_RC := android.hardware.tv.cec@1.0-service.rc 42 android.hardware.tv.cec@1.0 \
|
H A D | HdmiCec.h | 22 #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...] |
/hardware/interfaces/tv/input/1.0/default/ |
H A D | service.cpp | 19 #include <android/hardware/tv/input/1.0/ITvInput.h> 26 using android::hardware::tv::input::V1_0::ITvInput;
|
H A D | Android.mk | 4 LOCAL_MODULE := android.hardware.tv.input@1.0-impl 18 android.hardware.tv.input@1.0 \ 25 LOCAL_MODULE := android.hardware.tv.input@1.0-service 26 LOCAL_INIT_RC := android.hardware.tv.input@1.0-service.rc 43 android.hardware.tv.input@1.0 \
|
H A D | TvInput.h | 19 #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
|
/hardware/qcom/gps/msm8084/platform_lib_abstractions/ |
H A D | platform_lib_macros.h | 36 struct timeval tv; \ 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 fprintf(stdout,"%02d:%02d:%02d.%06ld]" format "\n", hh, mm, ss, tv.tv_usec,##x); \
|
/hardware/qcom/gps/msm8909/utils/platform_lib_abstractions/ |
H A D | platform_lib_macros.h | 36 struct timeval tv; \ 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 fprintf(stdout,"%02d:%02d:%02d.%06ld]" format "\n", hh, mm, ss, tv.tv_usec,##x); \
|
/hardware/qcom/gps/msm8960/platform_lib_abstractions/ |
H A D | platform_lib_macros.h | 36 struct timeval tv; \ 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 fprintf(stdout,"%02d:%02d:%02d.%06ld]" format "\n", hh, mm, ss, tv.tv_usec,##x); \
|
/hardware/qcom/gps/msm8994/platform_lib_abstractions/ |
H A D | platform_lib_macros.h | 36 struct timeval tv; \ 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 fprintf(stdout,"%02d:%02d:%02d.%06ld]" format "\n", hh, mm, ss, tv.tv_usec,##x); \
|
/hardware/qcom/gps/msm8996/utils/platform_lib_abstractions/ |
H A D | platform_lib_macros.h | 36 struct timeval tv; \ 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 fprintf(stdout,"%02d:%02d:%02d.%06ld]" format "\n", hh, mm, ss, tv.tv_usec,##x); \
|
/hardware/qcom/gps/msm8998/utils/platform_lib_abstractions/loc_pla/include/ |
H A D | platform_lib_macros.h | 51 struct timeval tv; \ 54 gettimeofday(&tv, &tz); \ 55 hh = tv.tv_sec/3600%24; \ 56 mm = (tv.tv_sec%3600)/60; \ 57 ss = tv.tv_sec%60; \ 58 fprintf(stdout,"%02d:%02d:%02d.%06ld]" format "\n", hh, mm, ss, tv.tv_usec,##x); \
|
/hardware/qcom/gps/platform_lib_abstractions/ |
H A D | platform_lib_macros.h | 36 struct timeval tv; \ 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 fprintf(stdout,"%02d:%02d:%02d.%06ld]" format "\n", hh, mm, ss, tv.tv_usec,##x); \
|
/hardware/qcom/gps/sdm845/utils/platform_lib_abstractions/loc_pla/include/ |
H A D | platform_lib_macros.h | 51 struct timeval tv; \ 54 gettimeofday(&tv, &tz); \ 55 hh = tv.tv_sec/3600%24; \ 56 mm = (tv.tv_sec%3600)/60; \ 57 ss = tv.tv_sec%60; \ 58 fprintf(stdout,"%02d:%02d:%02d.%06ld]" format "\n", hh, mm, ss, tv.tv_usec,##x); \
|
/hardware/invensense/6515/libsensors_iio/software/core/mllite/linux/ |
H A D | mlos_linux.c | 181 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 D | mlos_linux.c | 181 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 D | loc_log.cpp | 231 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/msm8909/utils/ |
H A D | loc_log.cpp | 233 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);
|