/frameworks/base/tests/net/java/android/net/ip/ |
H A D | IpReachabilityMonitorTest.java | 47 @Mock SharedLog mLog; field in class:IpReachabilityMonitorTest 53 when(mLog.forSubComponent(anyString())).thenReturn(mLog); 59 return new IpReachabilityMonitor(ifParams, mHandler, mLog, mCallback, null, mDependencies);
|
/frameworks/layoutlib/create/src/com/android/tools/layoutlib/create/ |
H A D | AfterConstructorMethodAdapter.java | 40 private final Log mLog; field in class:AfterConstructorMethodAdapter 55 mLog = log; 73 mLog.debug("After constructor call for class %s delegated to %s#%s", mClassName,
|
H A D | DelegateClassAdapter.java | 43 private final Log mLog; field in class:DelegateClassAdapter 64 mLog = log; 115 mLog, null, mwDelegate, mClassName, name, desc, isStaticMethod, 127 return new AfterConstructorMethodAdapter(mLog, mwOriginal, mClassName); 146 mLog, mwOriginal, mwDelegate, mClassName, name, desc, isStaticMethod,
|
/frameworks/layoutlib/create/tests/com/android/tools/layoutlib/create/ |
H A D | AsmAnalyzerTest.java | 44 private MockLog mLog; field in class:AsmAnalyzerTest 50 mLog = new MockLog(); 60 mAa = new AsmAnalyzer(mLog, mOsJarPath, null /* gen */, null /* deriveFrom */,
|
H A D | LogTest.java | 27 private MockLog mLog; field in class:LogTest 31 mLog = new MockLog(); 41 assertEquals("", mLog.getOut()); 42 assertEquals("", mLog.getErr()); 44 mLog.setVerbose(false); 45 mLog.debug("Test %d", 42); 46 assertEquals("", mLog.getOut()); 48 mLog.setVerbose(true); 49 mLog.debug("Test %d", 42); 51 assertEquals("Test 42\n", mLog [all...] |
/frameworks/opt/net/wifi/service/java/com/android/server/wifi/util/ |
H A D | WifiHandler.java | 34 private WifiLog mLog; field in class:WifiHandler 44 // Lazy initialization of mLog 45 if (mLog == null) { 46 mLog = WifiInjector.getInstance().makeLog(mTag); 48 return mLog; 65 // b/33308811 tracks removing lazy initializations of mLog 66 mLog = wifiLog;
|
H A D | WifiAsyncChannel.java | 33 private WifiLog mLog; field in class:WifiAsyncChannel 44 // Lazy initization of mLog 45 if (mLog == null) { 46 mLog = WifiInjector.getInstance().makeLog(mTag); 48 return mLog; 104 mLog = log;
|
H A D | MetricsUtils.java | 58 mLog = Math.log(m); 77 public double mLog; field in class:MetricsUtils.LogHistParms 89 bigBucketIndex = (int) (Math.log(logArg) / hp.mLog);
|
/frameworks/base/core/java/android/util/ |
H A D | LocalLog.java | 31 private final Deque<String> mLog; field in class:LocalLog 36 mLog = new ArrayDeque<>(mMaxLines); 47 while (mLog.size() >= mMaxLines) { 48 mLog.remove(); 50 mLog.add(logLine); 54 Iterator<String> itr = mLog.iterator(); 61 Iterator<String> itr = mLog.descendingIterator(); 68 private final LocalLog mLog; field in class:LocalLog.ReadOnlyLocalLog 70 mLog = log; 73 mLog [all...] |
/frameworks/layoutlib/remote/client/src/com/android/layoutlib/bridge/remote/client/adapters/ |
H A D | RemoteLayoutLogAdapter.java | 28 private final LayoutLog mLog; field in class:RemoteLayoutLogAdapter 31 mLog = log; 41 mLog.warning(tag, message, null); 47 mLog.fidelityWarning(tag, message, throwable, viewCookie, data); 52 mLog.error(tag, message, null); 57 mLog.error(tag, message, throwable, null);
|
/frameworks/layoutlib/remote/server/src/com/android/layoutlib/bridge/remote/server/adapters/ |
H A D | RemoteLayoutLogAdapter.java | 26 private final RemoteLayoutLog mLog; field in class:RemoteLayoutLogAdapter 29 mLog = log; 35 mLog.warning(tag, message, null); 45 mLog.fidelityWarning(tag, message, throwable, viewCookie, data); 54 mLog.error(tag, message, null); 63 mLog.error(tag, message, throwable, null);
|
/frameworks/support/frameworks/support/samples/Support7Demos/src/main/java/com/example/android/supportv7/widget/ |
H A D | ListPopupWindowActivity.java | 43 private TextView mLog; field in class:ListPopupWindowActivity 63 mLog = (TextView) mContainer.findViewById(R.id.log); 147 mLog.setOnClickListener(new View.OnClickListener() { 157 mLog.setText(toPrepend + mLog.getText());
|
H A D | PopupMenuActivity.java | 42 private TextView mLog; field in class:PopupMenuActivity 55 mLog = (TextView) container.findViewById(R.id.log); 122 mLog.setText(toPrepend + mLog.getText());
|
/frameworks/support/samples/Support7Demos/src/main/java/com/example/android/supportv7/widget/ |
H A D | ListPopupWindowActivity.java | 43 private TextView mLog; field in class:ListPopupWindowActivity 63 mLog = (TextView) mContainer.findViewById(R.id.log); 147 mLog.setOnClickListener(new View.OnClickListener() { 157 mLog.setText(toPrepend + mLog.getText());
|
H A D | PopupMenuActivity.java | 42 private TextView mLog; field in class:PopupMenuActivity 55 mLog = (TextView) container.findViewById(R.id.log); 122 mLog.setText(toPrepend + mLog.getText());
|
/frameworks/base/packages/SystemUI/src/com/android/systemui/classifier/ |
H A D | FalsingLog.java | 62 private final ArrayDeque<String> mLog = new ArrayDeque<>(MAX_SIZE); field in class:FalsingLog 114 if (sInstance.mLog.size() >= MAX_SIZE) { 115 sInstance.mLog.removeFirst(); 120 sInstance.mLog.add(entry); 130 if (sInstance == null || sInstance.mLog.isEmpty()) { 135 for (String s : sInstance.mLog) {
|
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/policy/ |
H A D | IconLoggerImpl.java | 64 if (!mHandler.hasCallbacks(mLog)) { 65 mHandler.postDelayed(mLog, MIN_LOG_INTERVAL); 75 if (!mHandler.hasCallbacks(mLog)) { 76 mHandler.postDelayed(mLog, MIN_LOG_INTERVAL); 107 private final Runnable mLog = this::doLog; field in class:IconLoggerImpl
|
/frameworks/base/tests/BatteryWaster/src/com/android/batterywaster/ |
H A D | BatteryWaster.java | 39 TextView mLog; field in class:BatteryWaster 57 mLog = (TextView)findViewById(R.id.log); 161 mLog.setText(mLog.getText() + "\n" + mDateFormat.format(new Date()) + ": " + s);
|
/frameworks/base/tests/SerialChat/src/com/android/serialchat/ |
H A D | SerialChat.java | 41 private TextView mLog; field in class:SerialChat 57 mLog = (TextView)findViewById(R.id.log); 156 mLog.setText(mLog.getText() + (String)msg.obj);
|
/frameworks/base/tests/net/java/com/android/server/connectivity/tethering/ |
H A D | TetheringConfigurationTest.java | 54 private final SharedLog mLog = new SharedLog("TetheringConfigurationTest"); field in class:TetheringConfigurationTest 99 final TetheringConfiguration cfg = new TetheringConfiguration(mMockContext, mLog); 115 final TetheringConfiguration cfg = new TetheringConfiguration(mMockContext, mLog); 131 final TetheringConfiguration cfg = new TetheringConfiguration(mMockContext, mLog); 148 final TetheringConfiguration cfg = new TetheringConfiguration(mMockContext, mLog); 169 final TetheringConfiguration cfg = new TetheringConfiguration(mMockContext, mLog); 187 final TetheringConfiguration cfg = new TetheringConfiguration(mMockContext, mLog);
|
/frameworks/support/lifecycle/integration-tests/testapp/src/test/java/androidx/lifecycle/ |
H A D | GeneratedAdaptersTest.java | 54 List<String> mLog; field in class:GeneratedAdaptersTest.SimpleObserver 57 mLog = log; 62 mLog.add("onCreate"); 76 List<String> mLog; field in class:GeneratedAdaptersTest.TestObserver 79 mLog = log; 84 mLog.add("onCreate"); 89 mLog.add("onAny"); 120 List<String> mLog; field in class:GeneratedAdaptersTest.Impl1 123 mLog = log; 128 mLog 156 List<String> mLog; field in class:GeneratedAdaptersTest.Base [all...] |
/frameworks/base/libs/usb/tests/AccessoryChat/src/com/android/accessorychat/ |
H A D | AccessoryChat.java | 51 private TextView mLog; field in class:AccessoryChat 91 mLog = (TextView)findViewById(R.id.log); 194 mLog.setText(mLog.getText() + "\n" + (String)msg.obj);
|
/frameworks/base/services/net/java/android/net/ip/ |
H A D | ConnectivityPacketTracker.java | 67 private final LocalLog mLog; field in class:ConnectivityPacketTracker 76 mLog = log; 131 mLog.log(msg); 140 mLog.log(msg); 150 mLog.log(entry);
|
H A D | InterfaceController.java | 45 private final SharedLog mLog; field in class:InterfaceController 52 mLog = log; 60 if (DBG) mLog.log("IPv4 configuration succeeded"); 160 mLog.e(String.format(fmt, args));
|
H A D | IpNeighborMonitor.java | 138 private final SharedLog mLog; field in class:IpNeighborMonitor 143 mLog = log.forSubComponent(TAG); 188 mLog.e("unparsable netlink msg: " + hexify(byteBuffer)); 194 mLog.e("non-kernel source portId: " + BitUtils.uint32(srcPortId)); 199 mLog.e("netlink error: " + nlMsg); 202 mLog.i("non-rtnetlink neighbor msg: " + nlMsg); 215 mLog.e("RtNetlinkNeighborMessage without ND message header!");
|