Searched defs:mLog (Results 1 - 25 of 66) sorted by relevance

123

/frameworks/base/tests/net/java/android/net/ip/
H A DIpReachabilityMonitorTest.java47 @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 DAfterConstructorMethodAdapter.java40 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 DDelegateClassAdapter.java43 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 DAsmAnalyzerTest.java44 private MockLog mLog; field in class:AsmAnalyzerTest
50 mLog = new MockLog();
60 mAa = new AsmAnalyzer(mLog, mOsJarPath, null /* gen */, null /* deriveFrom */,
H A DLogTest.java27 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 DWifiHandler.java34 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 DWifiAsyncChannel.java33 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 DMetricsUtils.java58 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 DLocalLog.java31 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 DRemoteLayoutLogAdapter.java28 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 DRemoteLayoutLogAdapter.java26 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 DListPopupWindowActivity.java43 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 DPopupMenuActivity.java42 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 DListPopupWindowActivity.java43 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 DPopupMenuActivity.java42 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 DFalsingLog.java62 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 DIconLoggerImpl.java64 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 DBatteryWaster.java39 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 DSerialChat.java41 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 DTetheringConfigurationTest.java54 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 DGeneratedAdaptersTest.java54 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 DAccessoryChat.java51 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 DConnectivityPacketTracker.java67 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 DInterfaceController.java45 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 DIpNeighborMonitor.java138 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!");

Completed in 194 milliseconds

123