Lines Matching refs:ss
124 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()
173 string s = ss.str(); in updateTac()
184 stringstream ss; in updateMccMnc() local
185 ss << "mncmcc"; in updateMccMnc()
186 ss << " " << mccmnc.c_str(); in updateMccMnc()
187 string s = ss.str(); in updateMccMnc()
198 stringstream ss; in updateXtraThrottle() local
199 ss << "xtrathrottle"; in updateXtraThrottle()
200 ss << " " << (enabled ? 1 : 0); in updateXtraThrottle()
201 string s = ss.str(); in updateXtraThrottle()
212 stringstream ss; in onStatusRequested() local
214 ss << "respondStatus" << endl; in onStatusRequested()
215 (mGpsLock == -1 ? ss : ss << mGpsLock) << endl; in onStatusRequested()
216 (mConnections == (uint64_t)~0 ? ss : ss << mConnections) << endl in onStatusRequested()
229 string s = ss.str(); in onStatusRequested()