Lines Matching refs:Status
87 void update_( Any const & Status ) throw (RuntimeException);
111 virtual void SAL_CALL push( Any const & Status ) throw (RuntimeException);
112 virtual void SAL_CALL update( Any const & Status ) throw (RuntimeException);
343 void CommandEnvironmentImpl::push( Any const & Status ) in push() argument
346 update_( Status ); in push()
350 m_xLogFile->push( Status ); in push()
354 void CommandEnvironmentImpl::update_( Any const & Status ) in update_() argument
357 if (! Status.hasValue()) in update_()
361 if (Status >>= msg) { in update_()
369 if (Status >>= dp_exc) { in update_()
375 buf.append( ::comphelper::anyToString(Status) ); in update_()
396 void CommandEnvironmentImpl::update( Any const & Status ) in update() argument
399 update_( Status ); in update()
401 m_xLogFile->update( Status ); in update()