Home
last modified time | relevance | path

Searched refs:ss (Results 1 – 25 of 71) sorted by relevance

123

/hardware/qcom/sdm845/gps/sdm845/gnss/
DXtraSystemStatusObserver.cpp66 stringstream ss; in updateLockStatus() local
67 ss << "gpslock"; in updateLockStatus()
68 ss << " " << lock; in updateLockStatus()
69 return ( send(LOC_IPC_XTRA, ss.str()) ); in updateLockStatus()
80 stringstream ss; in updateConnections() local
81 ss << "connection"; in updateConnections()
82 ss << " " << mConnections; in updateConnections()
83 return ( send(LOC_IPC_XTRA, ss.str()) ); in updateConnections()
93 stringstream ss; in updateTac() local
94 ss << "tac"; in updateTac()
[all …]
/hardware/qcom/gps/msm8909w_3100/gnss/
DXtraSystemStatusObserver.cpp56 stringstream ss; in updateLockStatus() local
57 ss << "gpslock"; in updateLockStatus()
58 ss << " " << lock; in updateLockStatus()
59 ss << "\n"; // append seperator in updateLockStatus()
60 return ( sendEvent(ss) ); in updateLockStatus()
64 stringstream ss; in updateConnectionStatus() local
65 ss << "connection"; in updateConnectionStatus()
66 ss << " " << (connected ? "1" : "0"); in updateConnectionStatus()
67 ss << " " << (int)type; in updateConnectionStatus()
68 ss << "\n"; // append seperator in updateConnectionStatus()
[all …]
/hardware/qcom/sm8150/gps/gnss/
DXtraSystemStatusObserver.cpp124 stringstream ss; in updateLockStatus() local
125 ss << "gpslock"; in updateLockStatus()
126 ss << " " << lock; in updateLockStatus()
127 string s = ss.str(); in updateLockStatus()
147 stringstream ss; in updateConnections() local
148 ss << "connection" << endl << mConnections << endl in updateConnections()
159 string s = ss.str(); in updateConnections()
170 stringstream ss; in updateTac() local
171 ss << "tac"; in updateTac()
172 ss << " " << tac.c_str(); in updateTac()
[all …]
/hardware/qcom/gps/msm8998/android/
DAGnssRil.cpp98 std::stringstream ss; in sendConnectionEvent() local
99 ss << "connection"; in sendConnectionEvent()
100 ss << " " << (connected ? "1" : "0"); in sendConnectionEvent()
101 ss << " " << (int)type; in sendConnectionEvent()
102 ss << "\n"; // append seperator in sendConnectionEvent()
104 const std::string& data = ss.str(); in sendConnectionEvent()
/hardware/qcom/sdm845/gps/msm8998/android/
DAGnssRil.cpp98 std::stringstream ss; in sendConnectionEvent() local
99 ss << "connection"; in sendConnectionEvent()
100 ss << " " << (connected ? "1" : "0"); in sendConnectionEvent()
101 ss << " " << (int)type; in sendConnectionEvent()
102 ss << "\n"; // append seperator in sendConnectionEvent()
104 const std::string& data = ss.str(); in sendConnectionEvent()
/hardware/interfaces/automotive/vehicle/2.0/default/tests/
DVehicleHalTestUtils.h147 std::stringstream ss; in hexString() local
148 ss << std::showbase << std::hex << value; in hexString()
149 return ss.str(); in hexString()
181 std::stringstream ss("["); in vecToString()
183 if (i != 0) ss << ","; in vecToString()
184 ss << vec[i]; in vecToString()
186 ss << "]"; in vecToString()
187 return ss.str(); in vecToString()
/hardware/libhardware/modules/sensors/dynamic_sensor/HidUtils/
DStreamIoUtil.h152 std::ostringstream ss; in hexdumpToStream() local
159 os << ss.str() << LOG_ENDL; in hexdumpToStream()
160 ss.str(""); in hexdumpToStream()
161 ss << std::hex; in hexdumpToStream()
162 ss << std::setfill('0') << std::setw(4) << c << ": "; in hexdumpToStream()
166 ss << " "; in hexdumpToStream()
169 ss << std::setfill('0') << std::setw(2) in hexdumpToStream()
172 os << ss.str() << LOG_ENDL; in hexdumpToStream()
/hardware/qcom/sm8150/display/libhistogram/
Dhistogram_collector.cpp75 std::stringstream ss; in Dump() local
76 ss << "Color Sampling, dark (0.0) to light (1.0): sampled frames: " << num_frames << '\n'; in Dump()
78 ss << "\tno color statistics collected\n"; in Dump()
79 return ss.str(); in Dump()
82 ss << std::fixed << std::setprecision(3); in Dump()
83 ss << "\tbucket\t\t: # of displayed pixels at bucket value\n"; in Dump()
85 ss << "\t" << i / static_cast<float>(samples.size()) << in Dump()
90 return ss.str(); in Dump()
/hardware/qcom/sdm845/gps/msm8998/utils/platform_lib_abstractions/loc_pla/src/
Dplatform_lib_log_util.cpp38 int hh, mm, ss; in get_timestamp() local
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/
Dplatform_lib_log_util.cpp35 int hh, mm, ss; in get_timestamp() local
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/qcom/gps/msm8998/utils/platform_lib_abstractions/loc_pla/src/
Dplatform_lib_log_util.cpp38 int hh, mm, ss; in get_timestamp() local
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/include/
Dplatform_lib_macros.h53 int hh, mm, ss; \
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/
Dplatform_lib_macros.h53 int hh, mm, ss; \
57 ss = tv.tv_sec%60; \
58 fprintf(stdout,"%02d:%02d:%02d.%06ld]" format "\n", hh, mm, ss, tv.tv_usec,##x); \
/hardware/qcom/sdm845/gps/msm8998/utils/platform_lib_abstractions/loc_pla/include/
Dplatform_lib_macros.h53 int hh, mm, ss; \
57 ss = tv.tv_sec%60; \
58 fprintf(stdout,"%02d:%02d:%02d.%06ld]" format "\n", hh, mm, ss, tv.tv_usec,##x); \
/hardware/qcom/sdm845/gps/msm8960/platform_lib_abstractions/
Dplatform_lib_macros.h38 int hh, mm, ss; \
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/msm8994/platform_lib_abstractions/
Dplatform_lib_macros.h38 int hh, mm, ss; \
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/
Dplatform_lib_macros.h38 int hh, mm, ss; \
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/
Dplatform_lib_macros.h38 int hh, mm, ss; \
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/
Dplatform_lib_macros.h38 int hh, mm, ss; \
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/
Dplatform_lib_macros.h38 int hh, mm, ss; \
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/
Dplatform_lib_macros.h38 int hh, mm, ss; \
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/
Dplatform_lib_macros.h38 int hh, mm, ss; \
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/
Dplatform_lib_macros.h38 int hh, mm, ss; \
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/
Dplatform_lib_macros.h38 int hh, mm, ss; \
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/
Dplatform_lib_macros.h38 int hh, mm, ss; \
42 ss = tv.tv_sec%60; \
43 fprintf(stdout,"%02d:%02d:%02d.%06ld]" format "\n", hh, mm, ss, tv.tv_usec,##x); \

123