Searched refs:logtag (Results 1 – 4 of 4) sorted by relevance
/cts/tests/framework/base/windowmanager/src/android/server/wm/ |
D | TestLogService.java | 69 public static void registerClient(String logtag, String stopKey) { in registerClient() argument 71 if (mChannels.containsKey(logtag)) { in registerClient() 72 throw new IllegalArgumentException(logtag); in registerClient() 74 mChannels.put(logtag, new ClientChannel(stopKey)); in registerClient() 85 public static Map<String, String> getResultsForClient(String logtag, int timeoutMs) { in getResultsForClient() argument 89 if (!mChannels.containsKey(logtag)) { in getResultsForClient() 92 latch = mChannels.get(logtag).mLatch; in getResultsForClient() 99 for (Map.Entry<String, String> e : mChannels.get(logtag).mResults.entrySet()) { in getResultsForClient() 106 private static void record(String logtag, String key, String value) { in record() argument 108 if (!mChannels.containsKey(logtag)) { in record() [all …]
|
D | CrossAppDragAndDropTests.java | 138 String logtag, Point displaySize, boolean leftSide) throws Exception { in launchFreeformActivity() argument 139 launchActivity(componentName, WINDOWING_MODE_FREEFORM, "mode", mode, "logtag", logtag); in launchFreeformActivity()
|
/cts/tests/framework/base/windowmanager/util/src/android/server/wm/ |
D | TestLogClient.java | 38 public TestLogClient(Context context, String logtag) { in TestLogClient() argument 40 mLogTag = logtag; in TestLogClient()
|
/cts/common/device-side/util-axt/src/com/android/compatibility/common/util/ |
D | SystemUtil.java | 153 public static void runCommandAndPrintOnLogcat(String logtag, String cmd) { in runCommandAndPrintOnLogcat() argument 154 Log.i(logtag, "Executing: " + cmd); in runCommandAndPrintOnLogcat() 157 Log.i(logtag, line); in runCommandAndPrintOnLogcat()
|