Searched refs:mInfo (Results 1 - 25 of 35) 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/v4/java/android/support/v4/view/accessibility/
H A DAccessibilityWindowInfoCompat.java223 private Object mInfo; field in class:AccessibilityWindowInfoCompat
272 mInfo = info;
286 return IMPL.getType(mInfo);
296 return IMPL.getLayer(mInfo);
305 return AccessibilityNodeInfoCompat.wrapNonNullInstance(IMPL.getRoot(mInfo));
314 return wrapNonNullInstance(IMPL.getParent(mInfo));
323 return IMPL.getId(mInfo);
332 IMPL.getBoundsInScreen(mInfo, outBounds);
343 return IMPL.isActive(mInfo);
352 return IMPL.isFocused(mInfo);
[all...]
H A DAccessibilityNodeInfoCompat.java383 final Object mInfo; field in class:AccessibilityNodeInfoCompat.CollectionInfoCompat
397 mInfo = info;
401 return IMPL.getCollectionInfoColumnCount(mInfo);
405 return IMPL.getCollectionInfoRowCount(mInfo);
409 return IMPL.isCollectionInfoHierarchical(mInfo);
415 private final Object mInfo; field in class:AccessibilityNodeInfoCompat.CollectionItemInfoCompat
429 mInfo = info;
433 return IMPL.getCollectionItemColumnIndex(mInfo);
437 return IMPL.getCollectionItemColumnSpan(mInfo);
441 return IMPL.getCollectionItemRowIndex(mInfo);
465 private final Object mInfo; field in class:AccessibilityNodeInfoCompat.RangeInfoCompat
1968 private final Object mInfo; field in class:AccessibilityNodeInfoCompat
[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/packages/SystemUI/src/com/android/systemui/qs/tiles/
H A DCellularTile.java106 cb = mSignalCallback.mInfo;
189 private final CallbackInfo mInfo = new CallbackInfo(); field in class:CellularTile.CellSignalCallback
193 mInfo.wifiEnabled = enabled;
194 refreshState(mInfo);
205 mInfo.enabled = qsIcon.visible;
206 mInfo.mobileSignalIconId = qsIcon.icon;
207 mInfo.signalContentDescription = qsIcon.contentDescription;
208 mInfo.dataTypeIconId = qsType;
209 mInfo.dataContentDescription = typeContentDescription;
210 mInfo
[all...]
H A DWifiTile.java133 cb = mSignalCallback.mInfo;
249 final CallbackInfo mInfo = new CallbackInfo(); field in class:WifiTile.WifiSignalCallback
255 mInfo.enabled = enabled;
256 mInfo.connected = qsIcon.visible;
257 mInfo.wifiSignalIconId = qsIcon.icon;
258 mInfo.enabledDesc = description;
259 mInfo.activityIn = activityIn;
260 mInfo.activityOut = activityOut;
261 mInfo.wifiSignalContentDescription = qsIcon.contentDescription;
262 refreshState(mInfo);
[all...]
/frameworks/base/services/core/java/com/android/server/display/
H A DLogicalDisplay.java66 private DisplayInfo mInfo; field in class:LogicalDisplay
119 if (mInfo == null) {
120 mInfo = new DisplayInfo();
121 mInfo.copyFrom(mBaseDisplayInfo);
123 mInfo.appWidth = mOverrideDisplayInfo.appWidth;
124 mInfo.appHeight = mOverrideDisplayInfo.appHeight;
125 mInfo.smallestNominalAppWidth = mOverrideDisplayInfo.smallestNominalAppWidth;
126 mInfo.smallestNominalAppHeight = mOverrideDisplayInfo.smallestNominalAppHeight;
127 mInfo.largestNominalAppWidth = mOverrideDisplayInfo.largestNominalAppWidth;
128 mInfo
[all...]
H A DVirtualDisplayAdapter.java181 private DisplayDeviceInfo mInfo; field in class:VirtualDisplayAdapter.VirtualDisplayDevice
258 mInfo = null;
271 mInfo = null;
292 if (mInfo == null) {
293 mInfo = new DisplayDeviceInfo();
294 mInfo.name = mName;
295 mInfo.uniqueId = getUniqueId();
296 mInfo.width = mWidth;
297 mInfo.height = mHeight;
298 mInfo
[all...]
H A DLocalDisplayAdapter.java150 private DisplayDeviceInfo mInfo; field in class:LocalDisplayAdapter.LocalDisplayDevice
347 mInfo = null;
354 if (mInfo == null) {
356 mInfo = new DisplayDeviceInfo();
357 mInfo.width = phys.width;
358 mInfo.height = phys.height;
359 mInfo.modeId = mActiveModeId;
360 mInfo.defaultModeId = mDefaultModeId;
361 mInfo.supportedModes = new Display.Mode[mSupportedModes.size()];
364 mInfo
[all...]
H A DOverlayDisplayAdapter.java234 private DisplayDeviceInfo mInfo; field in class:OverlayDisplayAdapter.OverlayDisplayDevice
280 mInfo = null;
285 if (mInfo == null) {
288 mInfo = new DisplayDeviceInfo();
289 mInfo.name = mName;
290 mInfo.uniqueId = getUniqueId();
291 mInfo.width = mode.getPhysicalWidth();
292 mInfo.height = mode.getPhysicalHeight();
293 mInfo.modeId = mode.getModeId();
294 mInfo
[all...]
H A DWifiDisplayAdapter.java589 private DisplayDeviceInfo mInfo; field in class:WifiDisplayAdapter.WifiDisplayDevice
615 mInfo = null;
627 if (mInfo == null) {
628 mInfo = new DisplayDeviceInfo();
629 mInfo.name = mName;
630 mInfo.uniqueId = getUniqueId();
631 mInfo.width = mWidth;
632 mInfo.height = mHeight;
633 mInfo.modeId = mMode.getModeId();
634 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/voiceinteraction/java/com/android/server/voiceinteraction/
H A DVoiceInteractionManagerServiceImpl.java65 final VoiceInteractionServiceInfo mInfo; field in class:VoiceInteractionManagerServiceImpl
124 mInfo = null;
130 mInfo = info;
131 if (mInfo.getParseError() != null) {
132 Slog.w(TAG, "Bad voice interaction service: " + mInfo.getParseError());
140 mInfo.getSessionService());
152 mUser, mContext, this, mInfo.getServiceInfo().applicationInfo.uid, mHandler);
237 int activeUid = mInfo.getServiceInfo().applicationInfo.uid;
246 int activeUid = mInfo.getServiceInfo().applicationInfo.uid;
255 int activeUid = mInfo
[all...]
/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);
H A DInputPort.java40 private Signature.PortInfo mInfo; field in class:InputPort
61 if(port.mInfo.type.getNumberOfDimensions() > 0) {
278 mInfo = info;
287 mQueueBuilder.setReadType(mInfo.type);
/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
/frameworks/base/packages/SettingsLib/src/com/android/settingslib/wifi/
H A DAccessPoint.java124 private WifiInfo mInfo; field in class:AccessPoint
145 mInfo = (WifiInfo) savedState.getParcelable(KEY_WIFIINFO);
157 update(mConfig, mInfo, mNetworkInfo);
207 if (mInfo != null) result += 13 * mInfo.hashCode();
260 return mInfo;
402 mInfo != null && mInfo.isEphemeral()));
434 if (mInfo != null && mNetworkInfo != null) { // This is the active connection
435 summary.append(" f=" + Integer.toString(mInfo
[all...]
/frameworks/av/media/libstagefright/include/
H A DHevcUtils.h94 Info getInfo() const { return mInfo; }
103 Info mInfo; member in class:android::HevcParameterSets
/frameworks/base/core/java/android/appwidget/
H A DAppWidgetHostView.java85 AppWidgetProviderInfo mInfo; field in class:AppWidgetHostView
146 mInfo = info;
211 return mInfo;
241 + (mInfo == null ? "null" : mInfo.provider), e);
294 if (mInfo != null) {
295 padding = getDefaultPaddingForWidget(mContext, mInfo.provider, padding);
370 mInfo = info;
463 updateContentDescription(mInfo);
606 mInfo
[all...]
/frameworks/base/services/core/java/com/android/server/tv/
H A DTvInputHardwareManager.java618 private TvInputInfo mInfo; field in class:TvInputHardwareManager.Connection
644 mInfo = info;
667 return mInfo;
712 + ", mInfo: " + mInfo
722 private final TvInputHardwareInfo mInfo; field in class:TvInputHardwareManager.TvInputHardwareImpl
769 mInfo = info;
771 if (mInfo.getAudioType() != AudioManager.DEVICE_NONE) {
772 mAudioSource = findAudioDevicePort(mInfo.getAudioType(), mInfo
[all...]
/frameworks/av/media/libstagefright/
H A DHevcUtils.cpp44 : mInfo(kInfoNone) {
327 mInfo = (Info)(mInfo | kInfoHasColorDescription);
336 mInfo = (Info)(mInfo | kInfoIsHdr);

Completed in 6807 milliseconds

12