#!/usr/bin/perl -w use strict; use IO::Handle; die "Usage: $0 identifier\n" . "(identifier is for example org.libreoffice)" unless $#ARGV == 0; my $id = $ARGV[0]; open (LOGCAT, "adb logcat |") || die "Could not open pipe from adb logcat"; my $pid = ''; while () { if (m!^I/ActivityManager\( *\d+\): Start proc $id for activity .*: pid=(\d+)!) { $pid = $1; } elsif (m!^[EIWD]/[^(]+\( *$pid\)!) { print $_; STDOUT->flush(); } } a/cgit.png' alt='cgit logo'/> index : lo/core
LibreOffice 核心代码仓库文档基金会
summaryrefslogtreecommitdiff
path: root/unoxml/Library_unoxml.mk
AgeCommit message (Expand)Author
2019-09-23do not require $(SRCDIR) in every gb_Library_set_precompiled_headerLuboš Luňák
2019-06-18loplugin:logexceptionnicely in toolkit..unoxmlNoel Grandin
2018-03-14Moving XSAXDocumentBuilder2 to use XFastDocumentHandler:Mohammed Abdul Azeem
2017-04-21gbuild: Remove MSVC 2013 legacy codeDavid Ostrovsky
2016-05-01tdf#95416 Get rid of #include "../foo/bar.hxx" style includesBurcin Akalin
2014-11-03coverity#705527 drop testlistener that logs to c:\listener.outCaolán McNamara
2014-05-22update_pch: add unoxmlThomas Arnhold
2013-01-26gbuild: remove various pointless calls that don't add anythingMichael Stahl
2013-01-26gbuild: do not copy boost headers aroundMichael Stahl
2012-09-28gbuild: invert handling of standard system libraries:Michael Stahl
2012-09-28gbuild: replace direct gb_STDLIBS use with ...Michael Stahl
2012-09-28gbuild: split uwinapi out of gb_STDLIBSMichael Stahl
2012-07-06re-base on ALv2 code.Michael Meeks
2012-07-02targetted improvement of UNO API includes / usageMichael Meeks