/frameworks/base/services/core/java/com/android/server/hdmi/ |
D | RequestSadAction.java | 163 if (cmd.getParams() == null || cmd.getParams().length == 0 in processCommand() 164 || cmd.getParams().length % 3 != 0) { in processCommand() 168 for (int i = 0; i < cmd.getParams().length - 2; i += 3) { in processCommand() 169 if (isValidCodec(cmd.getParams()[i])) { in processCommand() 170 byte[] sad = new byte[]{cmd.getParams()[i], cmd.getParams()[i + 1], in processCommand() 171 cmd.getParams()[i + 2]}; in processCommand() 175 Slog.w(TAG, "Dropped invalid codec " + cmd.getParams()[i] + "."); in processCommand() 184 && (cmd.getParams()[0] & 0xFF) in processCommand() 186 if ((cmd.getParams()[1] & 0xFF) == Constants.ABORT_UNRECOGNIZED_OPCODE) { in processCommand() 191 if ((cmd.getParams()[1] & 0xFF) == Constants.ABORT_INVALID_OPERAND) { in processCommand()
|
D | HdmiCecAtomWriter.java | 112 if (message.getParams().length > 0) { in createUserControlPressedSpecialArgs() 113 int keycode = message.getParams()[0]; in createUserControlPressedSpecialArgs() 132 if (message.getParams().length > 0) { in createFeatureAbortSpecialArgs() 133 specialArgs.mFeatureAbortOpcode = message.getParams()[0] & 0xFF; // Unsigned byte in createFeatureAbortSpecialArgs() 134 if (message.getParams().length > 1) { in createFeatureAbortSpecialArgs() 135 specialArgs.mFeatureAbortReason = message.getParams()[1] + 10; in createFeatureAbortSpecialArgs()
|
D | DeviceDiscoveryAction.java | 304 ((cmd.getParams()[0] & 0xFF) == Constants.MESSAGE_GIVE_OSD_NAME)) { in processCommand() 314 ((cmd.getParams()[0] & 0xFF) == Constants.MESSAGE_GIVE_DEVICE_VENDOR_ID)) { in processCommand() 324 && ((cmd.getParams()[0] & 0xFF) == Constants.MESSAGE_REPORT_POWER_STATUS)) { in processCommand() 346 byte params[] = cmd.getParams(); in handleReportPhysicalAddress() 381 displayName = new String(cmd.getParams(), "US-ASCII"); 402 byte[] params = cmd.getParams(); 422 byte[] params = cmd.getParams();
|
D | SetAudioVolumeLevelDiscoveryAction.java | 80 if (cmd.getParams().length < 2) { in handleFeatureAbort() 83 int originalOpcode = cmd.getParams()[0] & 0xFF; in handleFeatureAbort()
|
D | HdmiCecNetwork.java | 607 if (message.getParams().length < 2) { in handleFeatureAbort() 611 int originalOpcode = message.getParams()[0] & 0xFF; in handleFeatureAbort() 612 int reason = message.getParams()[1] & 0xFF; in handleFeatureAbort() 641 int version = Byte.toUnsignedInt(message.getParams()[0]); in handleCecVersion() 649 int physicalAddress = HdmiUtils.twoBytesToInt(message.getParams()); in handleReportPhysicalAddress() 650 int type = message.getParams()[2]; in handleReportPhysicalAddress() 671 int newStatus = message.getParams()[0] & 0xFF; in handleReportPowerStatus() 710 osdName = new String(message.getParams(), "US-ASCII"); in handleSetOsdName() 736 int vendorId = HdmiUtils.threeBytesToInt(message.getParams()); in handleDeviceVendorId()
|
D | HdmiCecLocalDeviceSource.java | 217 int physicalAddress = HdmiUtils.twoBytesToInt(message.getParams()); in handleActiveSource() 243 int physicalAddress = HdmiUtils.twoBytesToInt(message.getParams()); in handleSetStreamPath() 263 int physicalAddress = HdmiUtils.twoBytesToInt(message.getParams(), 2); in handleRoutingChange() 281 int physicalAddress = HdmiUtils.twoBytesToInt(message.getParams()); in handleRoutingInformation()
|
D | TimerRecordingAction.java | 113 byte[] timerStatusData = cmd.getParams(); in handleTimerStatus() 128 byte[] params = cmd.getParams(); in handleFeatureAbort()
|
D | ArcInitiationActionFromAvr.java | 51 if ((cmd.getParams()[0] & 0xFF) == Constants.MESSAGE_INITIATE_ARC) { in processCommand()
|
D | HdmiUtils.java | 213 return cmd.getParams()[0] == Constants.SYSTEM_AUDIO_STATUS_ON; in parseCommandParamSystemAudioStatus() 223 byte params[] = cmd.getParams(); in isAudioStatusMute() 234 byte params[] = cmd.getParams(); in getAudioStatusVolume() 516 return cmd.getParams()[0] & 0xFF; in getAbortFeatureOpcode() 527 return cmd.getParams()[1]; in getAbortReason()
|
/frameworks/base/tests/CoreTests/android/core/ |
D | TestHttpClient.java | 91 public HttpParams getParams() { in getParams() method in TestHttpClient 103 new DefaultedHttpParams(request.getParams(), this.params)); in execute() 107 new DefaultedHttpParams(response.getParams(), this.params)); in execute()
|
/frameworks/layoutlib/bridge/src/com/android/layoutlib/bridge/impl/ |
D | Layout.java | 158 int simulatedPlatformVersion = getParams().getSimulatedPlatformVersion(); in Layout() 159 HardwareConfig hwConfig = getParams().getHardwareConfig(); in Layout() 161 boolean isRtl = Bridge.isLocaleRtl(getParams().getLocale()); in Layout() 166 getParams().isRtlSupported(), simulatedPlatformVersion, false); in Layout() 170 statusBar = createStatusBar(getContext(), density, isRtl, getParams().isRtlSupported(), in Layout() 175 BridgeActionBar bar = createActionBar(getContext(), getParams(), true); in Layout() 182 titleBar = createTitleBar(getContext(), getParams().getAppLabel(), in Layout() 185 BridgeActionBar bar = createActionBar(getContext(), getParams(), false); in Layout() 272 private SessionParams getParams() { in getParams() method in Layout
|
/frameworks/base/keystore/java/android/security/keystore2/ |
D | AndroidKeyStoreECPublicKey.java | 54 this(descriptor, metadata, info.getEncoded(), securityLevel, info.getParams(), info.getW()); in AndroidKeyStoreECPublicKey() 82 public ECParameterSpec getParams() { in getParams() method in AndroidKeyStoreECPublicKey
|
D | AndroidKeyStoreEdECPrivateKey.java | 43 public NamedParameterSpec getParams() { in getParams() method in AndroidKeyStoreEdECPrivateKey
|
D | AndroidKeyStoreXDHPrivateKey.java | 46 public NamedParameterSpec getParams() { in getParams() method in AndroidKeyStoreXDHPrivateKey
|
D | AndroidKeyStoreECPrivateKey.java | 47 public ECParameterSpec getParams() { in getParams() method in AndroidKeyStoreECPrivateKey
|
D | AndroidKeyStoreKeyAgreementSpi.java | 147 && !((ECKey) key).getParams().getCurve() in engineDoPhase() 148 .equals(((ECKey) mKey).getParams().getCurve())) { in engineDoPhase()
|
/frameworks/av/media/codec2/sfplugin/ |
D | ReflectedParamUpdater.h | 202 Dict getParams( 205 Dict getParams(
|
/frameworks/base/services/tests/servicestests/src/com/android/server/hdmi/ |
D | FakeNativeWrapper.java | 180 byte[] body = new byte[hdmiCecMessage.getParams().length + 1]; in onCecMessage() 183 for (byte param : hdmiCecMessage.getParams()) { in onCecMessage()
|
/frameworks/av/media/codec2/hal/hidl/1.0/vts/functional/component/ |
D | VtsHalMediaC2V1_0TargetComponentTest.cpp | 64 getParams(); in SetUp() 100 virtual void getParams() {} in getParams() function in __anon7cb228cd0111::Codec2ComponentHidlTestBase 135 void getParams() { in getParams() function in __anon7cb228cd0111::Codec2ComponentHidlTest 331 void getParams() { in getParams() function in __anon7cb228cd0111::Codec2ComponentInputTests
|
/frameworks/base/cmds/uiautomator/instrumentation/testrunner-src/com/android/uiautomator/testrunner/ |
D | UiAutomatorTestCase.java | 53 public Bundle getParams() { in getParams() method in UiAutomatorTestCase
|
/frameworks/base/tests/FlickerTests/AppClose/src/com/android/server/wm/flicker/close/ |
D | CloseAppBackButtonTest.kt | 102 fun getParams() = LegacyFlickerTestFactory.nonRotationTests() in navBarLayerPositionAtStartAndEnd() method
|
D | CloseAppHomeButtonTest.kt | 102 fun getParams() = LegacyFlickerTestFactory.nonRotationTests() in navBarLayerPositionAtStartAndEnd() method
|
/frameworks/base/libs/WindowManager/Shell/tests/flicker/splitscreen/src/com/android/wm/shell/flicker/splitscreen/benchmark/ |
D | DismissSplitScreenByGoHomeBenchmark.kt | 57 fun getParams() = LegacyFlickerTestFactory.nonRotationTests() method
|
/frameworks/base/libs/WindowManager/Shell/tests/flicker/pip/src/com/android/wm/shell/flicker/pip/tv/ |
D | PipTestBase.kt | 51 fun getParams(): Collection<Array<Any>> { in getParams() method
|
/frameworks/base/core/tests/coretests/src/android/net/http/ |
D | AbstractProxyTest.java | 214 request.getParams().setParameter(ConnRoutePNames.DEFAULT_PROXY, ConnRouteParams.NO_HOST); in testExplicitNoProxyCancelsSystemProperty() 260 client.getParams().setParameter(ConnRoutePNames.DEFAULT_PROXY, in CLIENT_PARAMETER() 266 request.getParams().setParameter(ConnRoutePNames.DEFAULT_PROXY, in REQUEST_PARAMETER()
|