/aosp12/frameworks/av/services/camera/libcameraservice/api1/client2/ |
H A D | Parameters.cpp | 1320 CameraParameters2 newParams(paramString); in set() local 1405 res = newParams.compareSetOrder( in set() 1579 newParams.setPreviewFrameRate( in set() 1582 newParams.setPreviewFpsRange( in set() 1587 newParams.setPreviewFpsRange( in set() 1591 newParams.setPreviewFrameRate( in set() 1592 newParams.getPreviewFrameRate()); in set() 1726 newParams.get(CameraParameters::KEY_EFFECT) ); in set() 1904 newParams.set(CameraParameters::KEY_FOCUS_MODE, in set() 2047 paramsFlattened = newParams.flatten(); in set() [all …]
|
/aosp12/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/keyboard/internal/ |
H A D | KeyDrawParams.java | 130 final KeyDrawParams newParams = new KeyDrawParams(this); in mayCloneAndUpdateParams() local 131 newParams.updateParams(keyHeight, attr); in mayCloneAndUpdateParams() 132 return newParams; in mayCloneAndUpdateParams()
|
/aosp12/frameworks/av/media/bufferpool/1.0/vts/ |
H A D | allocator.cpp | 149 bool TestBufferPoolAllocator::compatible(const std::vector<uint8_t> &newParams, in compatible() argument 151 size_t newSize = newParams.size(); in compatible() 155 if (newParams[i] != oldParams[i]) { in compatible()
|
H A D | allocator.h | 39 bool compatible(const std::vector<uint8_t> &newParams,
|
/aosp12/frameworks/base/libs/WindowManager/Shell/src/com/android/wm/shell/pip/phone/ |
H A D | PipDismissTargetHandler.java | 223 final FrameLayout.LayoutParams newParams = in updateMagneticTargetSize() local 225 newParams.gravity = Gravity.CENTER_HORIZONTAL | Gravity.BOTTOM; in updateMagneticTargetSize() 226 newParams.bottomMargin = navInset.bottom + mContext.getResources().getDimensionPixelSize( in updateMagneticTargetSize() 228 mTargetView.setLayoutParams(newParams); in updateMagneticTargetSize()
|
/aosp12/frameworks/av/media/bufferpool/2.0/tests/ |
H A D | allocator.cpp | 167 bool TestBufferPoolAllocator::compatible(const std::vector<uint8_t> &newParams, in compatible() argument 169 size_t newSize = newParams.size(); in compatible() 173 if (newParams[i] != oldParams[i]) { in compatible()
|
H A D | allocator.h | 51 bool compatible(const std::vector<uint8_t> &newParams,
|
/aosp12/frameworks/av/media/libstagefright/omx/ |
H A D | SoftVideoDecoderOMXComponent.cpp | 487 OMX_PARAM_PORTDEFINITIONTYPE *newParams = in internalSetParameter() local 490 if (!isValidOMXParam(newParams)) { in internalSetParameter() 494 OMX_VIDEO_PORTDEFINITIONTYPE *video_def = &newParams->format.video; in internalSetParameter() 495 OMX_PARAM_PORTDEFINITIONTYPE *def = &editPortInfo(newParams->nPortIndex)->mDef; in internalSetParameter() 511 bool outputPort = (newParams->nPortIndex == kOutputPortIndex); in internalSetParameter() 519 newParams->nBufferSize = def->nBufferSize; in internalSetParameter()
|
/aosp12/packages/modules/Connectivity/Tethering/src/android/net/ip/ |
H A D | RouterAdvertisementDaemon.java | 257 public void buildNewRa(RaParams deprecatedParams, RaParams newParams) { in buildNewRa() argument 264 if (newParams != null) { in buildNewRa() 266 mDeprecatedInfoTracker.removePrefixes(newParams.prefixes); in buildNewRa() 267 mDeprecatedInfoTracker.removeDnses(newParams.dnses); in buildNewRa() 270 mRaParams = newParams; in buildNewRa()
|
H A D | IpServer.java | 1052 private void setRaParams(RaParams newParams) { in setRaParams() argument 1055 RaParams.getDeprecatedRaParams(mLastRaParams, newParams); in setRaParams() 1058 (newParams != null) ? newParams.prefixes : null); in setRaParams() 1061 (newParams != null) ? newParams.dnses : null); in setRaParams() 1063 mRaDaemon.buildNewRa(deprecatedParams, newParams); in setRaParams() 1066 mLastRaParams = newParams; in setRaParams()
|
/aosp12/hardware/interfaces/camera/device/3.5/default/ |
H A D | CameraDeviceSession.cpp | 377 const camera_metadata_t *oldParams, *newParams; in isReconfigurationRequired() local 379 V3_2::implementation::convertFromHidl(newSessionParams, &newParams); in isReconfigurationRequired() 380 auto ret = mDevice->ops->is_reconfiguration_required(mDevice, oldParams, newParams); in isReconfigurationRequired()
|
/aosp12/frameworks/av/media/bufferpool/1.0/include/bufferpool/ |
H A D | BufferPoolTypes.h | 102 virtual bool compatible(const std::vector<uint8_t> &newParams,
|
/aosp12/frameworks/av/media/bufferpool/2.0/include/bufferpool/ |
H A D | BufferPoolTypes.h | 107 virtual bool compatible(const std::vector<uint8_t> &newParams,
|
/aosp12/packages/modules/Wifi/framework/java/android/net/wifi/ |
H A D | WifiConfiguration.java | 662 public void addSecurityParams(@NonNull SecurityParams newParams) { in addSecurityParams() argument 663 if (mSecurityParamsList.stream().anyMatch(params -> params.isSameSecurityType(newParams))) { in addSecurityParams() 664 throw new IllegalArgumentException("duplicate security params " + newParams); in addSecurityParams() 667 if (newParams.isEnterpriseSecurityType() && !isEnterprise()) { in addSecurityParams() 671 if (!newParams.isEnterpriseSecurityType() && isEnterprise()) { in addSecurityParams() 675 if (newParams.isOpenSecurityType() && !isOpenNetwork()) { in addSecurityParams() 679 if (!newParams.isOpenSecurityType() && isOpenNetwork()) { in addSecurityParams() 683 if (newParams.isSecurityType(SECURITY_TYPE_OSEN)) { in addSecurityParams() 688 mSecurityParamsList.add(new SecurityParams(newParams)); in addSecurityParams()
|
/aosp12/packages/modules/Connectivity/Tethering/tests/privileged/src/android/net/ip/ |
H A D | RouterAdvertisementDaemonTest.java | 154 TestRaPacket(final RaParams oldParams, final RaParams newParams) { in TestRaPacket() argument 156 mNewParams = newParams; in TestRaPacket()
|
/aosp12/frameworks/base/libs/WindowManager/Shell/src/com/android/wm/shell/pip/ |
H A D | PipTaskOrganizer.java | 762 final PictureInPictureParams newParams = info.pictureInPictureParams; in onTaskInfoChanged() local 763 if (newParams == null || !applyPictureInPictureParams(newParams)) { in onTaskInfoChanged() 764 Log.d(TAG, "Ignored onTaskInfoChanged with PiP param: " + newParams); in onTaskInfoChanged()
|
/aosp12/frameworks/av/media/codec2/vndk/ |
H A D | C2Buffer.cpp | 470 bool compatible(const std::vector<uint8_t> &newParams, 620 const std::vector<uint8_t> &newParams, in compatible() argument 624 memcpy(&newAlloc, newParams.data(), std::min(sizeof(AllocParams), newParams.size())); in compatible()
|
/aosp12/packages/apps/Nfc/src/com/android/nfc/ |
H A D | NfcService.java | 2176 NfcDiscoveryParameters newParams = computeDiscoveryParameters(mScreenState); in applyRouting() local 2177 if (force || !newParams.equals(mCurrentDiscoveryParameters)) { in applyRouting() 2178 if (newParams.shouldEnableDiscovery()) { in applyRouting() 2180 mDeviceHost.enableDiscovery(newParams, shouldRestart); in applyRouting() 2184 mCurrentDiscoveryParameters = newParams; in applyRouting()
|
/aosp12/frameworks/base/core/java/android/text/ |
H A D | StaticLayout.java | 664 final PrecomputedText.Params newParams = in generate() 670 precomputed = PrecomputedText.create(precomputed, newParams); in generate()
|
/aosp12/frameworks/av/services/camera/libcameraservice/device3/ |
H A D | Camera3Device.cpp | 3226 android::hardware::hidl_vec<uint8_t> oldParams, newParams; in isReconfigurationRequired() local 3233 newParams.setToExternal(reinterpret_cast<uint8_t*>(newSessioMeta), in isReconfigurationRequired() 3242 auto err = mHidlSession_3_5->isReconfigurationRequired(oldParams, newParams, hidlCb); in isReconfigurationRequired()
|
/aosp12/hardware/interfaces/camera/provider/2.4/vts/functional/ |
H A D | VtsHalCameraProviderV2_4TargetTest.cpp | 8766 android::hardware::hidl_vec<uint8_t> oldParams, newParams; in verifySessionReconfigurationQuery() local 8769 newParams.setToExternal(reinterpret_cast<uint8_t*>(newSessionParams), in verifySessionReconfigurationQuery() 8776 auto ret = session3_5->isReconfigurationRequired(oldParams, newParams, hidlCb); in verifySessionReconfigurationQuery()
|
/aosp12/packages/apps/Car/DebuggingRestrictionController/libs/ |
H A D | httpcore-4.4.13.jar | META-INF/MANIFEST.MF
META-INF/
org/
org/apache/
org/ ... |