Lines Matching refs:output

209 void KeyGestureManager::LongPressSingleKey::Dump(std::ostringstream &output) const  in Dump()
211 output << "[" << keyCode_ << "] --> {"; in Dump()
213 output << iter->GetLongPressTime(); in Dump()
215 output << "," << iter->GetLongPressTime(); in Dump()
218 output << "}"; in Dump()
245 std::ostringstream output; in Intercept() local
246 output << "[LongPressCombinationKey] "; in Intercept()
247 Dump(output); in Intercept()
249 MMI_HILOGI("%s is active now", output.str().c_str()); in Intercept()
251 MMI_HILOGI("%s is active now", output.str().c_str()); in Intercept()
256 std::ostringstream output; in Intercept() local
257 output << "[LongPressCombinationKey] Switch off "; in Intercept()
258 Dump(output); in Intercept()
260 MMI_HILOGI("%s switch off", output.str().c_str()); in Intercept()
262 MMI_HILOGI("%s switch off", output.str().c_str()); in Intercept()
267 std::ostringstream output; in Intercept() local
268 output << "[LongPressCombinationKey] No handler for "; in Intercept()
269 Dump(output); in Intercept()
271 MMI_HILOGI("No handler for %s", output.str().c_str()); in Intercept()
273 MMI_HILOGI("No handler for %s", output.str().c_str()); in Intercept()
288 void KeyGestureManager::LongPressCombinationKey::Dump(std::ostringstream &output) const in Dump()
290 output << "["; in Dump()
292 output << *keyIter; in Dump()
294 output << "," << *keyIter; in Dump()
297 output << "] --> {"; in Dump()
299 output << "(ID:" << iter->GetId() << ",T:" << iter->GetLongPressTime() << ")"; in Dump()
301 output << ",(ID:" << iter->GetId() << ",T:" << iter->GetLongPressTime() << ")"; in Dump()
304 output << "}"; in Dump()
323 std::ostringstream output; in TriggerAll() local
324 output << "[LongPressCombinationKey] trigger "; in TriggerAll()
325 Dump(output); in TriggerAll()
327 MMI_HILOGI("%s trigger", output.str().c_str()); in TriggerAll()
329 MMI_HILOGI("%s trigger", output.str().c_str()); in TriggerAll()
411 std::ostringstream output; in Intercept() local
412 (*iter)->Dump(output); in Intercept()
414 MMI_HILOGI("Intercepted by %s", output.str().c_str()); in Intercept()
416 MMI_HILOGI("Intercepted by %s", output.str().c_str()); in Intercept()
437 std::ostringstream output; in Dump() local
438 keyGesture->Dump(output); in Dump()
439 MMI_HILOGI("%s", output.str().c_str()); in Dump()