Home
last modified time | relevance | path

Searched refs:outParams (Results 1 – 18 of 18) sorted by relevance

/frameworks/base/core/java/android/security/keymaster/
DOperationResult.java36 public final KeymasterArguments outParams; field in OperationResult
54 KeymasterArguments outParams) { in OperationResult() argument
60 this.outParams = outParams; in OperationResult()
73 outParams = KeymasterArguments.CREATOR.createFromParcel(in); in OperationResult()
88 outParams.writeToParcel(out, flags); in writeToParcel()
/frameworks/base/core/java/com/android/internal/view/
DTooltipPopup.java95 WindowManager.LayoutParams outParams) { in computePosition() argument
96 outParams.token = anchorView.getApplicationWindowToken(); in computePosition()
124 outParams.gravity = Gravity.CENTER_HORIZONTAL | Gravity.TOP; in computePosition()
145 outParams.x = mTmpAnchorPos[0] + offsetX - appView.getWidth() / 2; in computePosition()
155 outParams.y = yAbove; in computePosition()
157 outParams.y = yBelow; in computePosition()
164 outParams.y = yBelow; in computePosition()
166 outParams.y = yAbove; in computePosition()
/frameworks/base/core/java/android/widget/
DPopupWindow.java1730 protected boolean findDropDownPosition(View anchor, WindowManager.LayoutParams outParams, in findDropDownPosition() argument
1749 outParams.x = drawingLocation[0] + xOffset; in findDropDownPosition()
1750 outParams.y = drawingLocation[1] + anchorHeight + yOffset; in findDropDownPosition()
1762 outParams.gravity = computeGravity(); in findDropDownPosition()
1763 outParams.width = width; in findDropDownPosition()
1764 outParams.height = height; in findDropDownPosition()
1771 outParams.x -= width - anchorWidth; in findDropDownPosition()
1775 final boolean fitsVertical = tryFitVertical(outParams, yOffset, height, in findDropDownPosition()
1780 final boolean fitsHorizontal = tryFitHorizontal(outParams, xOffset, width, in findDropDownPosition()
1795 outParams.x = drawingLocation[0] + xOffset; in findDropDownPosition()
[all …]
/frameworks/base/services/core/java/com/android/server/wm/
DTaskLaunchParamsModifier.java105 LaunchParams currentParams, LaunchParams outParams) { in onCalculate() argument
108 currentParams, outParams); in onCalculate()
116 LaunchParams currentParams, LaunchParams outParams) { in calculate() argument
136 outParams.mPreferredTaskDisplayArea = suggestedDisplayArea; in calculate()
180 outParams.mBounds.set(options.getLaunchBounds()); in calculate()
181 if (DEBUG) appendLog("activity-options-bounds=" + outParams.mBounds); in calculate()
186 if (DEBUG) appendLog("activity-options-fullscreen=" + outParams.mBounds); in calculate()
192 outParams.mBounds.set(mTmpBounds); in calculate()
195 if (DEBUG) appendLog("bounds-from-layout=" + outParams.mBounds); in calculate()
201 outParams.mBounds.set(options.getLaunchBounds()); in calculate()
[all …]
DLaunchParamsPersister.java297 void getLaunchParams(Task task, ActivityRecord activity, LaunchParams outParams) { in getLaunchParams() argument
308 outParams.reset(); in getLaunchParams()
344 outParams.mPreferredTaskDisplayArea = display.getDefaultTaskDisplayArea(); in getLaunchParams()
346 outParams.mWindowingMode = persistableParams.mWindowingMode; in getLaunchParams()
347 outParams.mBounds.set(persistableParams.mBounds); in getLaunchParams()
DLaunchParamsController.java328 @Phase int phase, LaunchParams currentParams, LaunchParams outParams); in onCalculate() argument
/frameworks/base/core/java/android/view/autofill/
DAutofillPopupWindow.java249 protected boolean findDropDownPosition(View anchor, LayoutParams outParams, in findDropDownPosition() argument
253 outParams.x = xOffset; in findDropDownPosition()
254 outParams.y = yOffset; in findDropDownPosition()
255 outParams.width = width; in findDropDownPosition()
256 outParams.height = height; in findDropDownPosition()
257 outParams.gravity = gravity; in findDropDownPosition()
260 return super.findDropDownPosition(anchor, outParams, xOffset, yOffset, in findDropDownPosition()
/frameworks/av/media/libstagefright/omx/1.0/
DWGraphicBufferSource.cpp151 [&fnStatus, &params](Status status, hidl_vec<uint8_t> const& outParams) { in configure() argument
154 outParams.data(), in configure()
155 outParams.data() + outParams.size(), in configure()
DWOmxNode.cpp54 Status status, hidl_vec<uint8_t> const& outParams) { in getParameter() argument
57 outParams.data(), in getParameter()
58 outParams.data() + outParams.size(), in getParameter()
79 Status status, hidl_vec<uint8_t> const& outParams) { in getConfig() argument
82 outParams.data(), in getConfig()
83 outParams.data() + size, in getConfig()
/frameworks/av/media/libmedia/omx/1.0/
DWOmxNode.cpp51 Status status, hidl_vec<uint8_t> const& outParams) { in getParameter() argument
54 outParams.data(), in getParameter()
55 outParams.data() + outParams.size(), in getParameter()
76 Status status, hidl_vec<uint8_t> const& outParams) { in getConfig() argument
79 outParams.data(), in getConfig()
80 outParams.data() + size, in getConfig()
/frameworks/av/media/codec2/hidl/1.0/utils/
DConfigurable.cpp116 hidl_vec<uint8_t> outParams; in config() local
117 if (!createParamsBlob(&outParams, c2params)) { in config()
120 _hidl_cb((Status)c2res, failures, outParams); in config()
/frameworks/base/core/java/android/app/
DIWallpaperManager.aidl70 out Bundle outParams, int userId); in getWallpaper() argument
76 IWallpaperManagerCallback cb, int which, out Bundle outParams, int userId); in getWallpaperWithFeature() argument
DWallpaperManager.java1204 Bundle outParams = new Bundle(); in getWallpaperFile() local
1206 mContext.getAttributionTag(), null, which, outParams, userId); in getWallpaperFile()
/frameworks/av/media/libstagefright/omx/
DSoftVideoDecoderOMXComponent.cpp616 DescribeHDR10PlusInfoParams* outParams = in getConfig() local
619 outParams->nParamSizeUsed = info->size(); in getConfig()
623 if (outParams->nParamSize >= info->size()) { in getConfig()
624 memcpy(outParams->nValue, info->data(), info->size()); in getConfig()
/frameworks/base/services/tests/wmtests/src/com/android/server/wm/
DLaunchParamsControllerTests.java137 (task, layout, activity, source, options, phase, currentParams, outParams, request) in testEarlyExit()
435 LaunchParams currentParams, LaunchParams outParams) { in onCalculate() argument
436 outParams.set(mParams); in onCalculate()
/frameworks/opt/car/services/src/com/android/server/wm/
DCarLaunchParamsModifier.java276 LaunchParamsController.LaunchParams outParams) { in onCalculate() argument
371 outParams.mPreferredTaskDisplayArea = targetDisplayArea; in onCalculate()
/frameworks/base/services/core/java/com/android/server/wallpaper/
DWallpaperManagerService.java2224 final int which, Bundle outParams, int wallpaperUserId) { in getWallpaper() argument
2225 return getWallpaperWithFeature(callingPkg, null, cb, which, outParams, wallpaperUserId); in getWallpaper()
2230 IWallpaperManagerCallback cb, final int which, Bundle outParams, int wallpaperUserId) { in getWallpaperWithFeature() argument
2258 if (outParams != null) { in getWallpaperWithFeature()
2259 outParams.putInt("width", wpdData.mWidth); in getWallpaperWithFeature()
2260 outParams.putInt("height", wpdData.mHeight); in getWallpaperWithFeature()
/frameworks/base/boot/hiddenapi/
Dhiddenapi-max-target-o.txt51119 Landroid/security/keymaster/OperationResult;->outParams:Landroid/security/keymaster/KeymasterArgume…