Searched refs:mInfo (Results 1 - 25 of 49) sorted by relevance

12

/frameworks/native/services/inputflinger/
H A DInputApplication.cpp28 mInfo(NULL) {
32 delete mInfo;
36 if (mInfo) {
37 delete mInfo;
38 mInfo = NULL;
H A DInputApplication.h46 return mInfo;
50 return mInfo ? mInfo->name : String8("<invalid>");
54 return mInfo ? mInfo->dispatchingTimeout : defaultValue;
78 InputApplicationInfo* mInfo; member in class:android::InputApplicationHandle
H A DInputWindow.cpp66 inputApplicationHandle(inputApplicationHandle), mInfo(NULL) {
70 delete mInfo;
74 if (mInfo) {
75 delete mInfo;
76 mInfo = NULL;
H A DInputWindow.h166 return mInfo;
170 return mInfo ? mInfo->inputChannel : NULL;
174 return mInfo ? mInfo->name : String8("<invalid>");
178 return mInfo ? mInfo->dispatchingTimeout : defaultValue;
202 InputWindowInfo* mInfo; member in class:android::InputWindowHandle
/frameworks/support/compat/java/android/support/v4/view/accessibility/
H A DAccessibilityWindowInfoCompat.java29 private Object mInfo; field in class:AccessibilityWindowInfoCompat
84 mInfo = info;
99 return ((AccessibilityWindowInfo) mInfo).getType();
113 return ((AccessibilityWindowInfo) mInfo).getLayer();
127 ((AccessibilityWindowInfo) mInfo).getRoot());
140 return wrapNonNullInstance(((AccessibilityWindowInfo) mInfo).getParent());
153 return ((AccessibilityWindowInfo) mInfo).getId();
166 ((AccessibilityWindowInfo) mInfo).getBoundsInScreen(outBounds);
179 return ((AccessibilityWindowInfo) mInfo).isActive();
192 return ((AccessibilityWindowInfo) mInfo)
[all...]
H A DAccessibilityNodeInfoCompat.java467 final Object mInfo; field in class:AccessibilityNodeInfoCompat.CollectionInfoCompat
506 mInfo = info;
515 return IMPL.getCollectionInfoColumnCount(mInfo);
524 return IMPL.getCollectionInfoRowCount(mInfo);
533 return IMPL.isCollectionInfoHierarchical(mInfo);
547 return IMPL.getCollectionInfoSelectionMode(mInfo);
563 final Object mInfo; field in class:AccessibilityNodeInfoCompat.CollectionItemInfoCompat
599 mInfo = info;
608 return IMPL.getCollectionItemColumnIndex(mInfo);
617 return IMPL.getCollectionItemColumnSpan(mInfo);
682 final Object mInfo; field in class:AccessibilityNodeInfoCompat.RangeInfoCompat
1662 private final AccessibilityNodeInfo mInfo; field in class:AccessibilityNodeInfoCompat
[all...]
/frameworks/support/compat/java/android/support/v4/content/pm/
H A DShortcutInfoCompat.java164 private final ShortcutInfoCompat mInfo; field in class:ShortcutInfoCompat.Builder
167 mInfo = new ShortcutInfoCompat();
168 mInfo.mContext = context;
169 mInfo.mId = id;
183 mInfo.mLabel = shortLabel;
197 mInfo.mLongLabel = longLabel;
209 mInfo.mDisabledMessage = disabledMessage;
235 mInfo.mIntents = intents;
254 return setIcon(IconCompat.createWithResource(mInfo.mContext, icon));
262 mInfo
[all...]
/frameworks/base/packages/SystemUI/src/com/android/systemui/qs/tiles/
H A DCellularTile.java119 cb = mSignalCallback.mInfo;
187 private final CallbackInfo mInfo = new CallbackInfo(); field in class:CellularTile.CellSignalCallback
191 mInfo.wifiEnabled = enabled;
192 refreshState(mInfo);
203 mInfo.enabled = qsIcon.visible;
204 mInfo.mobileSignalIconId = qsIcon.icon;
205 mInfo.signalContentDescription = qsIcon.contentDescription;
206 mInfo.dataTypeIconId = qsType;
207 mInfo.dataContentDescription = typeContentDescription;
208 mInfo
[all...]
H A DWifiTile.java142 cb = mSignalCallback.mInfo;
248 final CallbackInfo mInfo = new CallbackInfo(); field in class:WifiTile.WifiSignalCallback
254 mInfo.enabled = enabled;
255 mInfo.connected = qsIcon.visible;
256 mInfo.wifiSignalIconId = qsIcon.icon;
257 mInfo.enabledDesc = description;
258 mInfo.activityIn = activityIn;
259 mInfo.activityOut = activityOut;
260 mInfo.wifiSignalContentDescription = qsIcon.contentDescription;
261 mInfo
[all...]
/frameworks/base/services/core/jni/
H A Dcom_android_server_input_InputWindowHandle.cpp87 if (!mInfo) {
88 mInfo = new InputWindowInfo();
90 mInfo->touchableRegion.clear();
96 mInfo->inputChannel = android_view_InputChannel_getInputChannel(env, inputChannelObj);
99 mInfo->inputChannel.clear();
106 mInfo->name.setTo(nameStr);
110 mInfo->name.setTo("<null>");
113 mInfo->layoutParamsFlags = env->GetIntField(obj,
115 mInfo->layoutParamsType = env->GetIntField(obj,
117 mInfo
[all...]
H A Dcom_android_server_input_InputApplicationHandle.cpp60 if (!mInfo) {
61 mInfo = new InputApplicationInfo();
68 mInfo->name.setTo(nameStr);
72 mInfo->name.setTo("<null>");
75 mInfo->dispatchingTimeout = env->GetLongField(obj,
/frameworks/base/services/core/java/com/android/server/display/
H A DLogicalDisplay.java67 * Override information set by the window manager. Will be reported instead of {@link #mInfo}
78 private DisplayInfo mInfo; field in class:LogicalDisplay
131 if (mInfo == null) {
132 mInfo = new DisplayInfo();
133 mInfo.copyFrom(mBaseDisplayInfo);
135 mInfo.appWidth = mOverrideDisplayInfo.appWidth;
136 mInfo.appHeight = mOverrideDisplayInfo.appHeight;
137 mInfo.smallestNominalAppWidth = mOverrideDisplayInfo.smallestNominalAppWidth;
138 mInfo.smallestNominalAppHeight = mOverrideDisplayInfo.smallestNominalAppHeight;
139 mInfo
[all...]
H A DVirtualDisplayAdapter.java200 private DisplayDeviceInfo mInfo; field in class:VirtualDisplayAdapter.VirtualDisplayDevice
286 mInfo = null;
299 mInfo = null;
320 if (mInfo == null) {
321 mInfo = new DisplayDeviceInfo();
322 mInfo.name = mName;
323 mInfo.uniqueId = getUniqueId();
324 mInfo.width = mWidth;
325 mInfo.height = mHeight;
326 mInfo
[all...]
H A DLocalDisplayAdapter.java162 private DisplayDeviceInfo mInfo; field in class:LocalDisplayAdapter.LocalDisplayDevice
349 mInfo = null;
356 if (mInfo == null) {
358 mInfo = new DisplayDeviceInfo();
359 mInfo.width = phys.width;
360 mInfo.height = phys.height;
361 mInfo.modeId = mActiveModeId;
362 mInfo.defaultModeId = mDefaultModeId;
363 mInfo.supportedModes = new Display.Mode[mSupportedModes.size()];
366 mInfo
[all...]
H A DOverlayDisplayAdapter.java234 private DisplayDeviceInfo mInfo; field in class:OverlayDisplayAdapter.OverlayDisplayDevice
285 mInfo = null;
290 if (mInfo == null) {
293 mInfo = new DisplayDeviceInfo();
294 mInfo.name = mName;
295 mInfo.uniqueId = getUniqueId();
296 mInfo.width = mode.getPhysicalWidth();
297 mInfo.height = mode.getPhysicalHeight();
298 mInfo.modeId = mode.getModeId();
299 mInfo
[all...]
H A DWifiDisplayAdapter.java589 private DisplayDeviceInfo mInfo; field in class:WifiDisplayAdapter.WifiDisplayDevice
620 mInfo = null;
632 if (mInfo == null) {
633 mInfo = new DisplayDeviceInfo();
634 mInfo.name = mName;
635 mInfo.uniqueId = getUniqueId();
636 mInfo.width = mWidth;
637 mInfo.height = mHeight;
638 mInfo.modeId = mMode.getModeId();
639 mInfo
[all...]
/frameworks/base/core/java/android/printservice/
H A DPrintDocument.java45 private final PrintDocumentInfo mInfo; field in class:PrintDocument
51 mInfo = info;
61 return mInfo;
/frameworks/base/services/core/java/com/android/server/
H A DGraphicsStatsService.java157 active.mInfo.packageName, active.mPid), e);
224 Trace.traceBegin(Trace.TRACE_TAG_SYSTEM_SERVER, "saving graphicsstats for " + buffer.mInfo.packageName);
227 File path = pathForApp(buffer.mInfo);
234 nSaveBuffer(path.getAbsolutePath(), buffer.mInfo.packageName, buffer.mInfo.versionCode,
235 buffer.mInfo.startTime, buffer.mInfo.endTime, buffer.mData);
282 Log.w(TAG, "Failed to copy graphicsstats from " + buffer.mInfo.packageName, e);
303 if (buffer.mInfo.startTime < today) {
325 File path = pathForApp(buffer.mInfo);
404 final BufferInfo mInfo; field in class:GraphicsStatsService.ActiveBuffer
438 final BufferInfo mInfo; field in class:GraphicsStatsService.HistoricalBuffer
[all...]
/frameworks/base/packages/SystemUI/src/com/android/systemui/tuner/
H A DPluginFragment.java142 private final PackageInfo mInfo; field in class:PluginFragment.PluginPreference
150 mInfo = info;
157 for (int i = 0; i < mInfo.services.length; i++) {
158 ComponentName componentName = new ComponentName(mInfo.packageName,
159 mInfo.services[i].name);
172 for (int i = 0; i < mInfo.services.length; i++) {
173 ComponentName componentName = new ComponentName(mInfo.packageName,
174 mInfo.services[i].name);
178 final String pkg = mInfo.packageName;
195 mInfo
[all...]
/frameworks/base/services/voiceinteraction/java/com/android/server/voiceinteraction/
H A DVoiceInteractionManagerServiceImpl.java72 final VoiceInteractionServiceInfo mInfo; field in class:VoiceInteractionManagerServiceImpl
132 mInfo = null;
138 mInfo = info;
139 if (mInfo.getParseError() != null) {
140 Slog.w(TAG, "Bad voice interaction service: " + mInfo.getParseError());
148 mInfo.getSessionService());
161 mInfo.getServiceInfo().applicationInfo.uid, mHandler);
268 int activeUid = mInfo.getServiceInfo().applicationInfo.uid;
277 int activeUid = mInfo.getServiceInfo().applicationInfo.uid;
286 int activeUid = mInfo
[all...]
/frameworks/base/packages/SettingsLib/tests/robotests/src/com/android/settingslib/
H A DSuggestionParserTest.java61 private List<ResolveInfo> mInfo; field in class:SuggestionParserTest
78 mInfo = new ArrayList<>();
83 mInfo.add(info1);
84 mInfo.add(info2);
86 any(Intent.class), anyInt(), anyInt())).thenReturn(mInfo);
123 mInfo.remove(0);
/frameworks/base/tests/Camera2Tests/SmartCamera/SimpleCamera/src/androidx/media/filterfw/
H A DOutputPort.java37 private Signature.PortInfo mInfo; field in class:OutputPort
148 mInfo = info;
175 mQueueBuilder.setWriteType(mInfo.type);
/frameworks/base/media/java/android/media/
H A DAmrInputStream.java38 BufferInfo mInfo; field in class:AmrInputStream
83 mInfo = new BufferInfo();
137 int index = mCodec.dequeueOutputBuffer(mInfo, -1);
139 mBufIn = mInfo.size;
143 if ((mInfo.flags & MediaCodec.BUFFER_FLAG_END_OF_STREAM) != 0) {
/frameworks/base/services/autofill/java/com/android/server/autofill/
H A DAutofillManagerServiceImpl.java92 private AutofillServiceInfo mInfo; field in class:AutofillManagerServiceImpl
173 if (mInfo == null) {
176 return mInfo.getServiceInfo().getComponentName();
215 mInfo = new AutofillServiceInfo(mContext.getPackageManager(),
218 mInfo = null;
304 "id=" + newSession.id + " uid=" + uid + " s=" + mInfo.getServiceInfo().packageName
363 if (mInfo == null || mInfo.getServiceInfo().applicationInfo.uid != uid) {
369 if (mInfo.getServiceInfo().getComponentName().equals(
397 mInfo
[all...]
/frameworks/base/libs/hwui/
H A DAnimatorManager.cpp99 : mInfo(info), mContext(context), mDirtyMask(outDirtyMask) {}
108 mInfo.out.hasAnimations = true;
111 mInfo.out.requiresUiRedraw = true;
118 TreeInfo& mInfo; member in class:android::uirenderer::AnimateFunctor

Completed in 3844 milliseconds

12