Searched defs:mInfo (Results 1 - 24 of 24) sorted by relevance

/frameworks/base/core/java/android/printservice/
H A DPrintDocument.java43 private final PrintDocumentInfo mInfo; field in class:PrintDocument
49 mInfo = info;
59 return mInfo;
/frameworks/native/services/inputflinger/
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.h163 return mInfo;
167 return mInfo ? mInfo->inputChannel : NULL;
171 return mInfo ? mInfo->name : String8("<invalid>");
175 return mInfo ? mInfo->dispatchingTimeout : defaultValue;
199 InputWindowInfo* mInfo; member in class:android::InputWindowHandle
/frameworks/compile/libbcc/include/bcc/Renderscript/
H A DRSExecutable.h40 RSInfo *mInfo; member in class:bcc::RSExecutable
59 : mInfo(&pInfo), mIsInfoDirty(false), mObjFile(&pObjFile), mLoader(&pLoader)
74 { return *mInfo; }
78 { return mInfo->isThreadable(); }
81 if (mInfo->isThreadable() != pThreadable) {
82 mInfo->setThreadable(pThreadable);
H A DRSScript.h42 const RSInfo *mInfo; member in class:bcc::RSScript
62 delete mInfo;
67 mInfo = pInfo;
71 return mInfo;
/frameworks/base/libs/hwui/
H A DAnimatorManager.cpp82 : dirtyMask(0), mInfo(info), mContext(context) {}
91 mInfo.out.hasAnimations = true;
94 mInfo.out.requiresUiRedraw = true;
103 TreeInfo& mInfo; member in class:android::uirenderer::AnimateFunctor
/frameworks/base/services/core/java/com/android/server/display/
H A DLogicalDisplay.java66 private DisplayInfo mInfo; field in class:LogicalDisplay
115 if (mInfo == null) {
116 mInfo = new DisplayInfo();
118 mInfo.copyFrom(mOverrideDisplayInfo);
119 mInfo.layerStack = mBaseDisplayInfo.layerStack;
120 mInfo.name = mBaseDisplayInfo.name;
121 mInfo.uniqueId = mBaseDisplayInfo.uniqueId;
122 mInfo.state = mBaseDisplayInfo.state;
124 mInfo.copyFrom(mBaseDisplayInfo);
127 return mInfo;
[all...]
H A DLocalDisplayAdapter.java136 private DisplayDeviceInfo mInfo; field in class:LocalDisplayAdapter.LocalDisplayDevice
168 mInfo = null;
175 if (mInfo == null) {
176 mInfo = new DisplayDeviceInfo();
177 mInfo.width = mPhys.width;
178 mInfo.height = mPhys.height;
179 mInfo.refreshRate = mPhys.refreshRate;
180 mInfo.supportedRefreshRates = mSupportedRefreshRates;
181 mInfo.appVsyncOffsetNanos = mPhys.appVsyncOffsetNanos;
182 mInfo
[all...]
H A DOverlayDisplayAdapter.java204 private DisplayDeviceInfo mInfo; field in class:OverlayDisplayAdapter.OverlayDisplayDevice
243 mInfo = null;
248 if (mInfo == null) {
249 mInfo = new DisplayDeviceInfo();
250 mInfo.name = mName;
251 mInfo.uniqueId = getUniqueId();
252 mInfo.width = mWidth;
253 mInfo.height = mHeight;
254 mInfo.refreshRate = mRefreshRate;
255 mInfo
[all...]
H A DVirtualDisplayAdapter.java179 private DisplayDeviceInfo mInfo; field in class:VirtualDisplayAdapter.VirtualDisplayDevice
254 mInfo = null;
266 mInfo = null;
287 if (mInfo == null) {
288 mInfo = new DisplayDeviceInfo();
289 mInfo.name = mName;
290 mInfo.uniqueId = getUniqueId();
291 mInfo.width = mWidth;
292 mInfo.height = mHeight;
293 mInfo
[all...]
H A DWifiDisplayAdapter.java588 private DisplayDeviceInfo mInfo; field in class:WifiDisplayAdapter.WifiDisplayDevice
613 mInfo = null;
625 if (mInfo == null) {
626 mInfo = new DisplayDeviceInfo();
627 mInfo.name = mName;
628 mInfo.uniqueId = getUniqueId();
629 mInfo.width = mWidth;
630 mInfo.height = mHeight;
631 mInfo.refreshRate = mRefreshRate;
632 mInfo
[all...]
/frameworks/base/services/core/java/com/android/server/notification/
H A DDowntimeCalendar.java32 private DowntimeInfo mInfo; field in class:DowntimeCalendar
40 if (Objects.equals(mInfo, info)) return;
41 mInfo = info;
46 if (mInfo == null || mDays.size() == 0) return Long.MAX_VALUE;
47 final long start = getTime(time, mInfo.startHour, mInfo.startMinute);
76 if (mInfo == null || mDays.size() == 0) return false;
77 final long start = getTime(time, mInfo.startHour, mInfo.startMinute);
78 long end = getTime(time, 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/services/voiceinteraction/java/com/android/server/voiceinteraction/
H A DVoiceInteractionManagerServiceImpl.java61 final VoiceInteractionServiceInfo mInfo; field in class:VoiceInteractionManagerServiceImpl
201 mInfo = null;
207 mInfo = info;
208 if (mInfo.getParseError() != null) {
209 Slog.w(TAG, "Bad voice interaction service: " + mInfo.getParseError());
217 mInfo.getSessionService());
275 if (mInfo == null) {
278 pw.println(mInfo.getParseError());
283 pw.print(" Session service="); pw.println(mInfo.getSessionService());
284 pw.print(" Settings activity="); pw.println(mInfo
[all...]
/frameworks/base/core/java/android/accessibilityservice/
H A DAccessibilityService.java381 private AccessibilityServiceInfo mInfo; field in class:AccessibilityService
600 mInfo = info;
612 if (mInfo != null && connection != null) {
614 connection.setServiceInfo(mInfo);
615 mInfo = null;
/frameworks/base/core/java/android/appwidget/
H A DAppWidgetHostView.java82 AppWidgetProviderInfo mInfo; field in class:AppWidgetHostView
140 mInfo = info;
205 return mInfo;
235 + (mInfo == null ? "null" : mInfo.provider), e);
269 if (mInfo != null) {
270 padding = getDefaultPaddingForWidget(mContext, mInfo.provider, padding);
329 mInfo = info;
466 mInfo.providerInfo.applicationInfo,
469 Log.e(TAG, "Package name " + mInfo
[all...]
/frameworks/base/services/core/java/com/android/server/media/projection/
H A DMediaProjectionManagerService.java566 private MediaProjectionInfo mInfo; field in class:MediaProjectionManagerService.WatcherStartCallback
570 mInfo = info;
577 mCallback.onStart(mInfo);
586 private MediaProjectionInfo mInfo; field in class:MediaProjectionManagerService.WatcherStopCallback
590 mInfo = info;
597 mCallback.onStop(mInfo);
/frameworks/base/core/java/com/android/internal/util/
H A DStateMachine.java452 private String mInfo; field in class:StateMachine.LogRec
483 mInfo = info;
507 return mInfo;
554 if (!TextUtils.isEmpty(mInfo)) {
556 sb.append(mInfo);
/frameworks/base/services/core/java/com/android/server/wallpaper/
H A DWallpaperManagerService.java229 final WallpaperInfo mInfo; field in class:WallpaperManagerService.WallpaperConnection
240 mInfo = info;
818 return wallpaper.connection.mInfo;
1428 if (conn.mInfo != null) {
1429 pw.print(" mInfo.component=");
1430 pw.println(conn.mInfo.getComponent());
/frameworks/base/media/java/android/media/
H A DMediaCodec.java1708 private final ByteBuffer mInfo; field in class:MediaCodec.MediaImage
1785 mInfo = info;
/frameworks/base/services/core/java/com/android/server/tv/
H A DTvInputHardwareManager.java555 private TvInputInfo mInfo; field in class:TvInputHardwareManager.Connection
581 mInfo = info;
604 return mInfo;
648 private final TvInputHardwareInfo mInfo; field in class:TvInputHardwareManager.TvInputHardwareImpl
692 mInfo = info;
694 if (mInfo.getAudioType() != AudioManager.DEVICE_NONE) {
695 mAudioSource = findAudioDevicePort(mInfo.getAudioType(), mInfo.getAudioAddress());
758 result = mHal.removeStream(mInfo.getDeviceId(), mActiveConfig);
771 result = mHal.removeStream(mInfo
[all...]
/frameworks/support/v4/java/android/support/v4/view/accessibility/
H A DAccessibilityNodeInfoCompat.java83 final Object mInfo; field in class:AccessibilityNodeInfoCompat.CollectionInfoCompat
97 mInfo = info;
101 return IMPL.getCollectionInfoColumnCount(mInfo);
105 return IMPL.getCollectionInfoRowCount(mInfo);
109 return IMPL.isCollectionInfoHierarchical(mInfo);
115 private final Object mInfo; field in class:AccessibilityNodeInfoCompat.CollectionItemInfoCompat
129 mInfo = info;
133 return IMPL.getCollectionItemColumnIndex(mInfo);
137 return IMPL.getCollectionItemColumnSpan(mInfo);
141 return IMPL.getCollectionItemRowIndex(mInfo);
165 private final Object mInfo; field in class:AccessibilityNodeInfoCompat.RangeInfoCompat
1253 private final Object mInfo; field in class:AccessibilityNodeInfoCompat
[all...]
/frameworks/base/services/backup/java/com/android/server/backup/
H A DBackupManagerService.java4365 FileMetadata mInfo; field in class:BackupManagerService.FullRestoreEngine.RestoreFileRunnable
4372 mInfo = info;
4386 mAgent.doRestoreFile(mSocket, mInfo.size, mInfo.type,
4387 mInfo.domain, mInfo.path, mInfo.mode, mInfo.mtime,
5552 FileMetadata mInfo; field in class:BackupManagerService.PerformAdbRestoreTask.RestoreFileRunnable
5559 mInfo
[all...]

Completed in 307 milliseconds