Home
last modified time | relevance | path

Searched refs:LegacyProtoLogImpl (Results 1 – 7 of 7) sorted by relevance

/frameworks/base/libs/WindowManager/Shell/src/com/android/wm/shell/
DProtoLogController.java19 import com.android.internal.protolog.LegacyProtoLogImpl;
58 ((LegacyProtoLogImpl) mShellProtoLog).getStatus(); in onShellCommand()
66 ((LegacyProtoLogImpl) mShellProtoLog).startProtoLog(pw); in onShellCommand()
74 ((LegacyProtoLogImpl) mShellProtoLog).stopProtoLog(pw, true); in onShellCommand()
112 ((LegacyProtoLogImpl) mShellProtoLog).stopProtoLog(pw, true /* writeToFile */); in onShellCommand()
113 ((LegacyProtoLogImpl) mShellProtoLog).startProtoLog(pw); in onShellCommand()
/frameworks/base/tests/Internal/src/com/android/internal/protolog/
DLegacyProtoLogImplTest.java21 import static com.android.internal.protolog.LegacyProtoLogImpl.PROTOLOG_VERSION;
77 private LegacyProtoLogImpl mProtoLog;
92 mProtoLog = new LegacyProtoLogImpl(mFile, mViewerConfigFilename, in setUp()
140 LegacyProtoLogImpl implSpy = Mockito.spy(mProtoLog); in log_logcatEnabledExternalMessage()
157 LegacyProtoLogImpl implSpy = Mockito.spy(mProtoLog); in log_logcatEnabledInvalidMessage()
174 LegacyProtoLogImpl implSpy = Mockito.spy(mProtoLog); in log_logcatEnabledInlineMessage()
190 LegacyProtoLogImpl implSpy = Mockito.spy(mProtoLog); in log_logcatEnabledNoMessage()
206 LegacyProtoLogImpl implSpy = Mockito.spy(mProtoLog); in log_logcatDisabled()
/frameworks/base/services/core/java/com/android/server/wm/
DWindowTracing.java38 import com.android.internal.protolog.LegacyProtoLogImpl;
113 ((LegacyProtoLogImpl) ProtoLog.getSingleInstance()).startProtoLog(pw); in startTrace()
143 ((LegacyProtoLogImpl) ProtoLog.getSingleInstance()).stopProtoLog(pw, true); in stopTrace()
165 ((LegacyProtoLogImpl) mProtoLog).stopProtoLog(pw, true); in saveForBugreport()
171 ((LegacyProtoLogImpl) mProtoLog).startProtoLog(pw); in saveForBugreport()
DWindowManagerShellCommand.java51 import com.android.internal.protolog.LegacyProtoLogImpl;
115 if (instance instanceof LegacyProtoLogImpl in onCommand()
117 if (instance instanceof LegacyProtoLogImpl) { in onCommand()
118 result = ((LegacyProtoLogImpl) instance).onShellCommand(this); in onCommand()
DWindowManagerService.java336 import com.android.internal.protolog.LegacyProtoLogImpl;
6875 ((LegacyProtoLogImpl) ProtoLog.getSingleInstance()).getStatus(); in dumpLogStatus()
/frameworks/base/core/java/com/android/internal/protolog/
DLegacyProtoLogImpl.java57 public class LegacyProtoLogImpl implements IProtoLog { class
76 public LegacyProtoLogImpl(String outputFile, String viewerConfigFilename, in LegacyProtoLogImpl() method in LegacyProtoLogImpl
82 public LegacyProtoLogImpl(File file, String viewerConfigFilename, int bufferCapacity, in LegacyProtoLogImpl() method in LegacyProtoLogImpl
DProtoLogImpl.java118 sServiceInstance = new LegacyProtoLogImpl( in getSingleInstance()