Home
last modified time | relevance | path

Searched refs:getParams (Results 1 – 25 of 240) sorted by relevance

12345678910

/frameworks/base/services/core/java/com/android/server/hdmi/
DRequestSadAction.java163 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()
DHdmiCecAtomWriter.java112 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()
DDeviceDiscoveryAction.java304 ((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();
DSetAudioVolumeLevelDiscoveryAction.java80 if (cmd.getParams().length < 2) { in handleFeatureAbort()
83 int originalOpcode = cmd.getParams()[0] & 0xFF; in handleFeatureAbort()
DHdmiCecNetwork.java607 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()
DHdmiCecLocalDeviceSource.java217 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()
DTimerRecordingAction.java113 byte[] timerStatusData = cmd.getParams(); in handleTimerStatus()
128 byte[] params = cmd.getParams(); in handleFeatureAbort()
DArcInitiationActionFromAvr.java51 if ((cmd.getParams()[0] & 0xFF) == Constants.MESSAGE_INITIATE_ARC) { in processCommand()
DHdmiUtils.java213 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/
DTestHttpClient.java91 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/
DLayout.java158 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/
DAndroidKeyStoreECPublicKey.java54 this(descriptor, metadata, info.getEncoded(), securityLevel, info.getParams(), info.getW()); in AndroidKeyStoreECPublicKey()
82 public ECParameterSpec getParams() { in getParams() method in AndroidKeyStoreECPublicKey
DAndroidKeyStoreEdECPrivateKey.java43 public NamedParameterSpec getParams() { in getParams() method in AndroidKeyStoreEdECPrivateKey
DAndroidKeyStoreXDHPrivateKey.java46 public NamedParameterSpec getParams() { in getParams() method in AndroidKeyStoreXDHPrivateKey
DAndroidKeyStoreECPrivateKey.java47 public ECParameterSpec getParams() { in getParams() method in AndroidKeyStoreECPrivateKey
DAndroidKeyStoreKeyAgreementSpi.java147 && !((ECKey) key).getParams().getCurve() in engineDoPhase()
148 .equals(((ECKey) mKey).getParams().getCurve())) { in engineDoPhase()
/frameworks/av/media/codec2/sfplugin/
DReflectedParamUpdater.h202 Dict getParams(
205 Dict getParams(
/frameworks/base/services/tests/servicestests/src/com/android/server/hdmi/
DFakeNativeWrapper.java180 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/
DVtsHalMediaC2V1_0TargetComponentTest.cpp64 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/
DUiAutomatorTestCase.java53 public Bundle getParams() { in getParams() method in UiAutomatorTestCase
/frameworks/base/tests/FlickerTests/AppClose/src/com/android/server/wm/flicker/close/
DCloseAppBackButtonTest.kt102 fun getParams() = LegacyFlickerTestFactory.nonRotationTests() in navBarLayerPositionAtStartAndEnd() method
DCloseAppHomeButtonTest.kt102 fun getParams() = LegacyFlickerTestFactory.nonRotationTests() in navBarLayerPositionAtStartAndEnd() method
/frameworks/base/libs/WindowManager/Shell/tests/flicker/splitscreen/src/com/android/wm/shell/flicker/splitscreen/benchmark/
DDismissSplitScreenByGoHomeBenchmark.kt57 fun getParams() = LegacyFlickerTestFactory.nonRotationTests() method
/frameworks/base/libs/WindowManager/Shell/tests/flicker/pip/src/com/android/wm/shell/flicker/pip/tv/
DPipTestBase.kt51 fun getParams(): Collection<Array<Any>> { in getParams() method
/frameworks/base/core/tests/coretests/src/android/net/http/
DAbstractProxyTest.java214 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()

12345678910