/hardware/qcom/gps/msm8998/utils/platform_lib_abstractions/loc_pla/src/ |
D | platform_lib_log_util.cpp | 36 struct timeval tv; in get_timestamp() local 39 gettimeofday(&tv, &tz); in get_timestamp() 40 hh = tv.tv_sec/3600%24; in get_timestamp() 41 mm = (tv.tv_sec%3600)/60; in get_timestamp() 42 ss = tv.tv_sec%60; in get_timestamp() 43 snprintf(str, buf_size, "%02d:%02d:%02d.%06ld", hh, mm, ss, tv.tv_usec); in get_timestamp()
|
/hardware/qcom/sdm845/gps/msm8998/utils/platform_lib_abstractions/loc_pla/src/ |
D | platform_lib_log_util.cpp | 36 struct timeval tv; in get_timestamp() local 39 gettimeofday(&tv, &tz); in get_timestamp() 40 hh = tv.tv_sec/3600%24; in get_timestamp() 41 mm = (tv.tv_sec%3600)/60; in get_timestamp() 42 ss = tv.tv_sec%60; in get_timestamp() 43 snprintf(str, buf_size, "%02d:%02d:%02d.%06ld", hh, mm, ss, tv.tv_usec); in get_timestamp()
|
/hardware/qcom/gps/msm8909w_3100/utils/platform_lib_abstractions/loc_pla/src/ |
D | platform_lib_log_util.cpp | 33 struct timeval tv; in get_timestamp() local 36 gettimeofday(&tv, &tz); in get_timestamp() 37 hh = tv.tv_sec/3600%24; in get_timestamp() 38 mm = (tv.tv_sec%3600)/60; in get_timestamp() 39 ss = tv.tv_sec%60; in get_timestamp() 40 snprintf(str, buf_size, "%02d:%02d:%02d.%06ld", hh, mm, ss, tv.tv_usec); in get_timestamp()
|
/hardware/interfaces/tv/cec/2.0/default/ |
D | Android.bp | 2 name: "android.hardware.tv.cec@2.0-impl", 15 "android.hardware.tv.cec@2.0", 21 name: "android.hardware.tv.cec@2.0-service", 22 vintf_fragments: ["android.hardware.tv.cec@2.0-service.xml"], 26 init_rc: ["android.hardware.tv.cec@2.0-service.rc"], 39 "android.hardware.tv.cec@2.0",
|
D | HdmiCec.h | 30 namespace tv { 40 using ::android::hardware::tv::cec::V2_0::CecLogicalAddress; 41 using ::android::hardware::tv::cec::V2_0::CecMessage; 42 using ::android::hardware::tv::cec::V2_0::CecPhysicalAddress; 43 using ::android::hardware::tv::cec::V2_0::HdmiPortId; 44 using ::android::hardware::tv::cec::V2_0::HdmiPortInfo; 45 using ::android::hardware::tv::cec::V2_0::IHdmiCec; 46 using ::android::hardware::tv::cec::V2_0::IHdmiCecCallback; 47 using ::android::hardware::tv::cec::V2_0::MaxLength; 48 using ::android::hardware::tv::cec::V2_0::OptionKey; [all …]
|
/hardware/qcom/sdm845/gps/msm8998/utils/platform_lib_abstractions/loc_pla/include/ |
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/msm8998/utils/platform_lib_abstractions/loc_pla/include/ |
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/msm8909w_3100/utils/platform_lib_abstractions/loc_pla/include/ |
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/media/msm8974/mm-video-legacy/vidc/venc/test/ |
D | venc_util.c | 44 struct timeval tv; in GetTimeStamp() local 46 gettimeofday(&tv, NULL); in GetTimeStamp() 47 microsec = (tv.tv_sec * 1000000) + (tv.tv_usec); in GetTimeStamp()
|
/hardware/interfaces/tv/cec/1.0/default/ |
D | HdmiCec.h | 30 namespace tv { 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::cec::V1_0::Result; 43 using ::android::hardware::tv::cec::V1_0::SendMessageResult;
|
D | Android.bp | 2 name: "android.hardware.tv.cec@1.0-impl", 15 "android.hardware.tv.cec@1.0", 21 name: "android.hardware.tv.cec@1.0-service", 25 init_rc: ["android.hardware.tv.cec@1.0-service.rc"], 38 "android.hardware.tv.cec@1.0",
|
/hardware/qcom/sdm845/gps/msm8994/platform_lib_abstractions/ |
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/ |
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/sdm845/gps/msm8909/utils/platform_lib_abstractions/ |
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/msm8084/platform_lib_abstractions/ |
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/ |
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/sdm845/gps/platform_lib_abstractions/ |
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/ |
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/platform_lib_abstractions/ |
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/sdm845/gps/msm8960/platform_lib_abstractions/ |
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/sdm845/gps/msm8084/platform_lib_abstractions/ |
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/sdm845/gps/msm8996/utils/platform_lib_abstractions/ |
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/ |
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/invensense/6515/libsensors_iio/software/simple_apps/common/ |
D | console_helper.c | 29 struct timeval tv; in ConsoleKbhit() 32 tv.tv_sec=0; in ConsoleKbhit() 33 tv.tv_usec=0; in ConsoleKbhit() 37 if(select(1, &read_fd, NULL, NULL, &tv) == -1) in ConsoleKbhit()
|
/hardware/interfaces/tv/input/1.0/default/ |
D | Android.bp | 2 name: "android.hardware.tv.input@1.0-impl", 16 "android.hardware.tv.input@1.0", 22 name: "android.hardware.tv.input@1.0-service", 26 init_rc: ["android.hardware.tv.input@1.0-service.rc"], 40 "android.hardware.tv.input@1.0",
|