Lines Matching refs:output
202 std::ostringstream output;
207 output << "...";
211 output << "[" << handler.GetId() << "," << handler.GetPid()
215 prefix.c_str(), handlers_.size(), output.str().c_str());
249 void KeyGestureManager::LongPressSingleKey::Dump(std::ostringstream &output) const
251 output << "[" << keyCode_ << "] --> {";
253 output << iter->GetLongPressTime();
255 output << "," << iter->GetLongPressTime();
258 output << "}";
286 std::ostringstream output;
287 Dump(output);
289 MMI_HILOGI("[LongPressCombinationKey] %{public}s is active now", output.str().c_str());
291 MMI_HILOGI("[LongPressCombinationKey] %s is active now", output.str().c_str());
296 std::ostringstream output;
297 Dump(output);
299 MMI_HILOGI("[LongPressCombinationKey] Switch off %{public}s", output.str().c_str());
301 MMI_HILOGI("[LongPressCombinationKey] Switch off %s", output.str().c_str());
306 std::ostringstream output;
307 Dump(output);
309 MMI_HILOGI("[LongPressCombinationKey] No handler for %{public}s", output.str().c_str());
311 MMI_HILOGI("[LongPressCombinationKey] No handler for %s", output.str().c_str());
326 void KeyGestureManager::LongPressCombinationKey::Dump(std::ostringstream &output) const
328 output << "[";
330 output << *keyIter;
332 output << "," << *keyIter;
335 output << "] --> {";
337 output << "(ID:" << iter->GetId() << ",T:" << iter->GetLongPressTime() << ")";
339 output << ",(ID:" << iter->GetId() << ",T:" << iter->GetLongPressTime() << ")";
342 output << "}";
361 std::ostringstream output;
362 Dump(output);
364 MMI_HILOGI("[LongPressCombinationKey] trigger %{public}s", output.str().c_str());
366 MMI_HILOGI("[LongPressCombinationKey] trigger %s", output.str().c_str());
448 std::ostringstream output;
449 (*iter)->Dump(output);
451 MMI_HILOGI("Intercepted by %{public}s", output.str().c_str());
453 MMI_HILOGI("Intercepted by %s", output.str().c_str());
474 std::ostringstream output;
475 keyGesture->Dump(output);
476 MMI_HILOGI("%s", output.str().c_str());