Lines Matching refs:UiEventsLogger_Impl

101     class UiEventsLogger_Impl;
102 class UiEventsLogger_Impl : public UiEventsLogger class
107 typedef UiEventsLogger_Impl* ptr;
110 UiEventsLogger_Impl();
183 const sal_Int32 UiEventsLogger_Impl::COLUMNS = 9;
184 const OUString UiEventsLogger_Impl::CFG_ENABLED = OUString::createFromAscii("EnablingAllowed");
185 const OUString UiEventsLogger_Impl::CFG_IDLETIMEOUT = OUString::createFromAscii("IdleTimeout");
186 …const OUString UiEventsLogger_Impl::CFG_LOGGING = OUString::createFromAscii("/org.openoffice.Offic…
187 const OUString UiEventsLogger_Impl::CFG_LOGPATH = OUString::createFromAscii("LogPath");
188 …const OUString UiEventsLogger_Impl::CFG_OOOIMPROVEMENT = OUString::createFromAscii("OOoImprovement…
190 …const OUString UiEventsLogger_Impl::CSSL_CSVFORMATTER = OUString::createFromAscii("com.sun.star.lo…
191 …const OUString UiEventsLogger_Impl::CSSL_FILEHANDLER = OUString::createFromAscii("com.sun.star.log…
192 …const OUString UiEventsLogger_Impl::CSSL_LOGGERPOOL = OUString::createFromAscii("com.sun.star.logg…
193 …const OUString UiEventsLogger_Impl::CSSO_CORECONTROLLER = OUString::createFromAscii("com.sun.star.…
194 …const OUString UiEventsLogger_Impl::CSSU_PATHSUB = OUString::createFromAscii("com.sun.star.util.Pa…
196 const OUString UiEventsLogger_Impl::ETYPE_DISPATCH = OUString::createFromAscii("dispatch");
197 const OUString UiEventsLogger_Impl::ETYPE_ROTATED = OUString::createFromAscii("rotated");
198 const OUString UiEventsLogger_Impl::ETYPE_VCL = OUString::createFromAscii("vcl");
200 …const OUString UiEventsLogger_Impl::LOGGERNAME = OUString::createFromAscii("org.openoffice.oooimpr…
201 …const OUString UiEventsLogger_Impl::LOGORIGINWIDGET = OUString::createFromAscii("comphelper.UiEven…
202 …const OUString UiEventsLogger_Impl::LOGORIGINAPP = OUString::createFromAscii("comphelper.UiEventsL…
204 … const OUString UiEventsLogger_Impl::UNKNOWN_ORIGIN = OUString::createFromAscii("unknown origin");
205 const OUString UiEventsLogger_Impl::FN_CURRENTLOG = OUString::createFromAscii("Current");
206 const OUString UiEventsLogger_Impl::FN_ROTATEDLOG = OUString::createFromAscii("OOoImprove");
207 …const OUString UiEventsLogger_Impl::LOGROTATE_EVENTNAME = OUString::createFromAscii("onOOoImprovem…
209 const OUString UiEventsLogger_Impl::URL_UNO = OUString::createFromAscii(".uno:");
210 const OUString UiEventsLogger_Impl::URL_SPECIAL = OUString::createFromAscii(".special:");
211 const OUString UiEventsLogger_Impl::URL_FILE = OUString::createFromAscii("file:");
217 if ( UiEventsLogger_Impl::getEnabledFromCfg() ) in isEnabled()
220 UiEventsLogger_Impl::prepareMutex(); in isEnabled()
221 Guard<Mutex> singleton_guard(UiEventsLogger_Impl::singleton_mutex); in isEnabled()
222 return UiEventsLogger_Impl::getInstance()->m_Active; in isEnabled()
231 UiEventsLogger_Impl::prepareMutex(); in getSessionLogEventCount()
232 Guard<Mutex> singleton_guard(UiEventsLogger_Impl::singleton_mutex); in getSessionLogEventCount()
233 return UiEventsLogger_Impl::getInstance()->m_SessionLogEventCount; in getSessionLogEventCount()
244 args[old_length].Name = UiEventsLogger_Impl::LOGORIGINAPP; in appendDispatchOrigin()
246 args[old_length+1].Name = UiEventsLogger_Impl::LOGORIGINWIDGET; in appendDispatchOrigin()
256 if(args[source_idx].Name != UiEventsLogger_Impl::LOGORIGINAPP in purgeDispatchOrigin()
257 && args[source_idx].Name != UiEventsLogger_Impl::LOGORIGINWIDGET) in purgeDispatchOrigin()
268 UiEventsLogger_Impl::prepareMutex(); in logDispatch()
269 Guard<Mutex> singleton_guard(UiEventsLogger_Impl::singleton_mutex); in logDispatch()
270 UiEventsLogger_Impl::getInstance()->logDispatch(url, args); in logDispatch()
282 UiEventsLogger_Impl::prepareMutex(); in logVcl()
283 Guard<Mutex> singleton_guard(UiEventsLogger_Impl::singleton_mutex); in logVcl()
284 UiEventsLogger_Impl::getInstance()->logVcl(parent_id, window_type, id, method, param); in logVcl()
312 UiEventsLogger_Impl::prepareMutex(); in disposing()
313 Guard<Mutex> singleton_guard(UiEventsLogger_Impl::singleton_mutex); in disposing()
314 if(UiEventsLogger_Impl::instance!=UiEventsLogger_Impl::ptr()) in disposing()
315 UiEventsLogger_Impl::getInstance()->disposing(); in disposing()
320 UiEventsLogger_Impl::prepareMutex(); in reinit()
321 Guard<Mutex> singleton_guard(UiEventsLogger_Impl::singleton_mutex); in reinit()
322 if(UiEventsLogger_Impl::instance) in reinit()
324 UiEventsLogger_Impl::instance->disposing(); in reinit()
325 delete UiEventsLogger_Impl::instance; in reinit()
326 UiEventsLogger_Impl::instance = NULL; in reinit()
331 UiEventsLogger_Impl::UiEventsLogger_Impl() in UiEventsLogger_Impl() function in comphelper::UiEventsLogger_Impl
332 : m_Active(UiEventsLogger_Impl::shouldActivate()) in UiEventsLogger_Impl()
333 , m_LogPath(UiEventsLogger_Impl::getLogPathFromCfg()) in UiEventsLogger_Impl()
334 , m_IdleTimeout(UiEventsLogger_Impl::getIdleTimeoutFromCfg()) in UiEventsLogger_Impl()
344 void UiEventsLogger_Impl::logDispatch( in logDispatch()
401 void UiEventsLogger_Impl::logRotated() in logRotated()
418 void UiEventsLogger_Impl::logVcl( in logVcl()
450 void UiEventsLogger_Impl::rotate() in rotate()
457 void UiEventsLogger_Impl::hotRotate() in hotRotate()
474 void UiEventsLogger_Impl::prepareLogHandler() in prepareLogHandler()
485 void UiEventsLogger_Impl::checkIdleTimeout() in checkIdleTimeout()
494 OUString UiEventsLogger_Impl::getCurrentPath() in getCurrentPath()
503 OUString UiEventsLogger_Impl::getRotatedPath() in getRotatedPath()
530 void UiEventsLogger_Impl::initializeLogger() in initializeLogger()
594 bool UiEventsLogger_Impl::shouldActivate() in shouldActivate()
599 OUString UiEventsLogger_Impl::getLogPathFromCfg() in getLogPathFromCfg()
618 TimeValue UiEventsLogger_Impl::getIdleTimeoutFromCfg() in getIdleTimeoutFromCfg()
634 bool UiEventsLogger_Impl::getEnabledFromCfg() in getEnabledFromCfg()
646 bool UiEventsLogger_Impl::getEnabledFromCoreController() in getEnabledFromCoreController()
656 UiEventsLogger_Impl::ptr UiEventsLogger_Impl::instance = UiEventsLogger_Impl::ptr();
657 UiEventsLogger_Impl::ptr UiEventsLogger_Impl::getInstance() in getInstance()
660 instance = UiEventsLogger_Impl::ptr(new UiEventsLogger_Impl()); in getInstance()
664 Mutex * UiEventsLogger_Impl::singleton_mutex = NULL;
665 void UiEventsLogger_Impl::prepareMutex() in prepareMutex()
675 sal_Int32 UiEventsLogger_Impl::findIdx(const Sequence<PropertyValue>& args, const OUString& key) in findIdx()
683 void UiEventsLogger_Impl::disposing() in disposing()