Home
last modified time | relevance | path

Searched refs:mWrapped (Results 1 – 15 of 15) sorted by relevance

/aosp14/frameworks/base/core/java/com/android/internal/util/
H A DXmlPullParserWrapper.java33 private final XmlPullParser mWrapped; field in XmlPullParserWrapper
40 mWrapped.setFeature(name, state); in setFeature()
56 mWrapped.setInput(in); in setInput()
90 return mWrapped.getDepth(); in getDepth()
110 return mWrapped.getText(); in getText()
122 return mWrapped.getName(); in getName()
126 return mWrapped.getPrefix(); in getPrefix()
170 return mWrapped.next(); in next()
174 return mWrapped.nextToken(); in nextToken()
183 return mWrapped.nextText(); in nextText()
[all …]
H A DXmlSerializerWrapper.java32 private final XmlSerializer mWrapped; field in XmlSerializerWrapper
60 mWrapped.setOutput(writer); in setOutput()
68 mWrapped.endDocument(); in endDocument()
80 return mWrapped.getDepth(); in getDepth()
88 return mWrapped.getName(); in getName()
105 return mWrapped.text(text); in text()
114 mWrapped.cdsect(text); in cdsect()
118 mWrapped.entityRef(text); in entityRef()
126 mWrapped.comment(text); in comment()
130 mWrapped.docdecl(text); in docdecl()
[all …]
H A DSizedInputStream.java29 private final InputStream mWrapped; field in SizedInputStream
33 mWrapped = wrapped; in SizedInputStream()
40 mWrapped.close(); in close()
56 final int n = mWrapped.read(buffer, byteOffset, byteCount); in read()
/aosp14/frameworks/base/core/java/android/util/apk/
H A DWrappedX509Certificate.java38 this.mWrapped = wrapped; in WrappedX509Certificate()
64 mWrapped.checkValidity(); in checkValidity()
70 mWrapped.checkValidity(date); in checkValidity()
75 return mWrapped.getVersion(); in getVersion()
85 return mWrapped.getIssuerDN(); in getIssuerDN()
90 return mWrapped.getSubjectDN(); in getSubjectDN()
100 return mWrapped.getNotAfter(); in getNotAfter()
140 return mWrapped.getKeyUsage(); in getKeyUsage()
150 return mWrapped.getEncoded(); in getEncoded()
156 mWrapped.verify(key); in verify()
[all …]
/aosp14/frameworks/base/core/java/android/view/
H A DWindowCallbackWrapper.java32 private Window.Callback mWrapped; field in WindowCallbackWrapper
38 mWrapped = wrapped; in WindowCallbackWrapper()
43 return mWrapped.dispatchKeyEvent(event); in dispatchKeyEvent()
103 mWrapped.onContentChanged(); in onContentChanged()
108 mWrapped.onWindowFocusChanged(hasFocus); in onWindowFocusChanged()
113 mWrapped.onAttachedToWindow(); in onAttachedToWindow()
118 mWrapped.onDetachedFromWindow(); in onDetachedFromWindow()
123 mWrapped.onPanelClosed(featureId, menu); in onPanelClosed()
133 return mWrapped.onSearchRequested(); in onSearchRequested()
148 mWrapped.onActionModeStarted(mode); in onActionModeStarted()
[all …]
/aosp14/frameworks/base/core/java/android/os/
H A DParcelFileDescriptor.java181 mWrapped = wrapped; in ParcelFileDescriptor()
198 mWrapped = null; in ParcelFileDescriptor()
379 if (mWrapped != null) { in dup()
692 if (mWrapped != null) { in getFileDescriptor()
704 if (mWrapped != null) { in getStatSize()
728 if (mWrapped != null) { in seekTo()
748 if (mWrapped != null) { in getFd()
770 if (mWrapped != null) { in detachFd()
794 if (mWrapped != null) { in close()
813 if (mWrapped != null) { in closeWithError()
[all …]
/aosp14/frameworks/base/services/core/java/com/android/server/am/
H A DSameProcessApplicationThread.java40 private final IApplicationThread mWrapped; field in SameProcessApplicationThread
45 mWrapped = Objects.requireNonNull(wrapped); in SameProcessApplicationThread()
55 mWrapped.scheduleReceiver(intent, info, compatInfo, resultCode, data, extras, in scheduleReceiver()
70 mWrapped.scheduleRegisteredReceiver(receiver, intent, resultCode, data, extras, in scheduleRegisteredReceiver()
83 mWrapped.scheduleReceiverList(info); in scheduleReceiverList()
94 mWrapped.schedulePing(pong); in schedulePing()
/aosp14/frameworks/base/apct-tests/perftests/core/src/android/libcore/
H A DDeepArrayOpsPerfTest.java149 private final int mWrapped; field in DeepArrayOpsPerfTest.IntWrapper
152 mWrapped = wrap; in IntWrapper()
157 return mWrapped; in hashCode()
166 return ((IntWrapper) o).mWrapped == this.mWrapped; in equals()
/aosp14/frameworks/base/core/java/android/content/
H A DContentResolver.java820 mWrapped = wrapped; in ContentResolver()
918 if (mWrapped != null) return mWrapped.getType(url);
1320 if (mWrapped != null) return mWrapped.canonicalize(url);
1371 if (mWrapped != null) return mWrapped.uncanonicalize(url);
1586 if (mWrapped != null) return mWrapped.openFile(uri, mode, signal);
1713 if (mWrapped != null) return mWrapped.openAssetFile(uri, mode, signal);
2198 if (mWrapped != null) return mWrapped.insert(url, values, extras);
2246 if (mWrapped != null) return mWrapped.applyBatch(authority, operations);
2279 if (mWrapped != null) return mWrapped.bulkInsert(url, values);
2338 if (mWrapped != null) return mWrapped.delete(url, extras);
[all …]
/aosp14/frameworks/base/packages/SystemUI/src/com/android/systemui/shade/
H A DNotificationShadeWindowView.java231 private final ActionMode.Callback mWrapped; field in NotificationShadeWindowView.ActionModeCallback2Wrapper
234 mWrapped = wrapped; in ActionModeCallback2Wrapper()
238 return mWrapped.onCreateActionMode(mode, menu); in onCreateActionMode()
243 return mWrapped.onPrepareActionMode(mode, menu); in onPrepareActionMode()
247 return mWrapped.onActionItemClicked(mode, item); in onActionItemClicked()
251 mWrapped.onDestroyActionMode(mode); in onDestroyActionMode()
261 if (mWrapped instanceof ActionMode.Callback2) { in onGetContentRect()
262 ((ActionMode.Callback2) mWrapped).onGetContentRect(mode, view, outRect); in onGetContentRect()
/aosp14/frameworks/base/core/java/android/widget/
H A DAutoCompleteTextView.java335 mPassThroughClickListener.mWrapped = listener; in setOnClickListener()
1518 private View.OnClickListener mWrapped; field in AutoCompleteTextView.PassThroughClickListener
1524 if (mWrapped != null) mWrapped.onClick(v); in onClick()
H A DAbsListView.java6941 private MultiChoiceModeListener mWrapped; field in AbsListView.FlingRunnable.MultiChoiceModeWrapper
6944 mWrapped = wrapped; in setWrapped()
6948 return mWrapped != null; in hasWrappedCallback()
6953 if (mWrapped.onCreateActionMode(mode, menu)) { in onCreateActionMode()
6963 return mWrapped.onPrepareActionMode(mode, menu); in onPrepareActionMode()
6968 return mWrapped.onActionItemClicked(mode, item); in onActionItemClicked()
6973 mWrapped.onDestroyActionMode(mode); in onDestroyActionMode()
6989 mWrapped.onItemCheckedStateChanged(mode, position, id, checked); in onItemCheckedStateChanged()
/aosp14/frameworks/base/services/core/java/com/android/server/textclassifier/
H A DTextClassificationManagerService.java1226 private final ITextClassifierCallback mWrapped; field in TextClassificationManagerService.CallbackWrapper
1229 mWrapped = Objects.requireNonNull(wrapped); in CallbackWrapper()
1245 mWrapped.onSuccess(result); in onSuccess()
1363 mWrapped.onFailure(); in onFailure()
/aosp14/frameworks/base/core/java/com/android/internal/policy/
H A DDecorView.java2691 private final ActionMode.Callback mWrapped; field in ActionModeCallback2Wrapper
2694 mWrapped = wrapped; in ActionModeCallback2Wrapper()
2698 return mWrapped.onCreateActionMode(mode, menu); in onCreateActionMode()
2703 return mWrapped.onPrepareActionMode(mode, menu); in onPrepareActionMode()
2707 return mWrapped.onActionItemClicked(mode, item); in onActionItemClicked()
2711 mWrapped.onDestroyActionMode(mode); in onDestroyActionMode()
2798 if (mWrapped instanceof ActionMode.Callback2) { in onGetContentRect()
2799 ((ActionMode.Callback2) mWrapped).onGetContentRect(mode, view, outRect); in onGetContentRect()
/aosp14/frameworks/base/boot/hiddenapi/
H A Dhiddenapi-max-target-o.txt38012 Landroid/os/ParcelFileDescriptor;->mWrapped:Landroid/os/ParcelFileDescriptor;
65085 Landroid/view/WindowCallbackWrapper;->mWrapped:Landroid/view/Window$Callback;
65669 Landroid/widget/AbsListView$MultiChoiceModeWrapper;->mWrapped:Landroid/widget/AbsListView$MultiChoi…
66394 Landroid/widget/AutoCompleteTextView$PassThroughClickListener;->mWrapped:Landroid/view/View$OnClick…