Home
last modified time | relevance | path

Searched refs:data2 (Results 1 – 12 of 12) sorted by relevance

/cts/hostsidetests/securitybulletin/securityPatch/CVE-2020-0226/
Dpoc.cpp45 Parcel data2, reply2; in main() local
46 data2.writeInterfaceToken(binder->getInterfaceDescriptor()); in main()
48 data2.writeInt32(1); in main()
50 data2.setDataPosition(kPosition); in main()
51 data2.writeStrongBinder(binder); in main()
52 binder->transact(code, data2, &reply2, flags); in main()
/cts/hostsidetests/securitybulletin/securityPatch/CVE-2016-2419/
Dpoc.cpp55 Parcel data2, reply2; in doInforLeakTest() local
56 data2.writeInterfaceToken(iDrm->getInterfaceDescriptor()); in doInforLeakTest()
57 iDrm->transact(7 /*GET_KEY_REQUEST*/, data2, &reply2); in doInforLeakTest()
/cts/hostsidetests/locale/src/android/localemanager/cts/
DApplicationLocalesChangedAtomTests.java112 List<StatsLog.EventMetricData> data2 = ReportUtils.getEventMetricDataList(getDevice()); in testAtomLogging_localesChangeFromApp_logsAtomSuccessfully() local
113 assertEquals(1, data2.size()); in testAtomLogging_localesChangeFromApp_logsAtomSuccessfully()
114 AtomsProto.ApplicationLocalesChanged result2 = data2.get(0) in testAtomLogging_localesChangeFromApp_logsAtomSuccessfully()
146 List<StatsLog.EventMetricData> data2 = ReportUtils.getEventMetricDataList(getDevice()); in testAtomLogging_localesChangeFromDelegate_logsAtomSuccessfully() local
147 assertEquals(1, data2.size()); in testAtomLogging_localesChangeFromDelegate_logsAtomSuccessfully()
148 AtomsProto.ApplicationLocalesChanged result2 = data2.get(0) in testAtomLogging_localesChangeFromDelegate_logsAtomSuccessfully()
180 List<StatsLog.EventMetricData> data2 = ReportUtils.getEventMetricDataList(getDevice()); in testAtomLogging_localesChangeFromLocaleConfigOverride_logsAtomSuccessfully() local
181 assertEquals(1, data2.size()); in testAtomLogging_localesChangeFromLocaleConfigOverride_logsAtomSuccessfully()
182 AtomsProto.ApplicationLocalesChanged result2 = data2.get(0) in testAtomLogging_localesChangeFromLocaleConfigOverride_logsAtomSuccessfully()
215 List<StatsLog.EventMetricData> data2 = ReportUtils.getEventMetricDataList(getDevice()); in testAtomLogging_localesChangeFromAppUpdate_logsAtomSuccessfully() local
[all …]
DAppSupportedLocalesChangedAtomTest.java104 List<StatsLog.EventMetricData> data2 = ReportUtils.getEventMetricDataList(getDevice()); in testAtomLogging_removeOverride_logsAtomSuccessfully() local
105 assertEquals(1, data2.size()); in testAtomLogging_removeOverride_logsAtomSuccessfully()
106 AppSupportedLocalesChanged result2 = data2.get(0).getAtom().getAppSupportedLocalesChanged(); in testAtomLogging_removeOverride_logsAtomSuccessfully()
148 List<StatsLog.EventMetricData> data2 = ReportUtils.getEventMetricDataList(getDevice()); in testAtomLogging_sameAsPrevLocaleConfig_logsAtomUnspecified() local
149 assertEquals(1, data2.size()); in testAtomLogging_sameAsPrevLocaleConfig_logsAtomUnspecified()
151 AppSupportedLocalesChanged result2 = data2.get(0).getAtom().getAppSupportedLocalesChanged(); in testAtomLogging_sameAsPrevLocaleConfig_logsAtomUnspecified()
/cts/tests/tests/telephony/current/src/android/telephony/ims/cts/
DImsCallProfileTest.java188 ImsCallProfile data2 = new ImsCallProfile(ImsCallProfile.SERVICE_TYPE_NORMAL, in testUpdateCallType() local
190 data.updateCallType(data2); in testUpdateCallType()
191 assertEquals(data.getCallType(), data2.getCallType()); in testUpdateCallType()
202 ImsCallProfile data2 = new ImsCallProfile(ImsCallProfile.SERVICE_TYPE_NORMAL, in testUpdateCallExtras() local
204 data2.setCallExtra("testData2", "testResult2"); in testUpdateCallExtras()
205 data.updateCallExtras(data2); in testUpdateCallExtras()
218 ImsCallProfile data2 = new ImsCallProfile(ImsCallProfile.SERVICE_TYPE_NORMAL, in testUpdateMediaProfile() local
220 data.updateMediaProfile(data2); in testUpdateMediaProfile()
304 ImsCallProfile data2 = new ImsCallProfile(ImsCallProfile.SERVICE_TYPE_NORMAL, in testIsVideoPaused() local
307 data.updateMediaProfile(data2); in testIsVideoPaused()
[all …]
/cts/apps/CtsVerifier/src/com/android/cts/verifier/audio/
DUtil.java66 public static double[] computeCrossCorrelation(Complex[] data1, Complex[] data2) { in computeCrossCorrelation() argument
68 int n = nextPowerOfTwo(Math.max(data1.length, data2.length)); in computeCrossCorrelation()
70 Complex[] data2Fft = fft.transform(padZeros(data2, n)); in computeCrossCorrelation()
/cts/tests/tests/util/src/android/util/cts/
DEventLogTest.java212 Long data2 = data1 + 1; in testReadEvents() local
213 EventLog.writeEvent(E_TAG, data2); in testReadEvents()
219 verifyEvent(events.get(2), E_TAG, data2); in testReadEvents()
224 verifyEvent(events.get(1), E_TAG, data2); in testReadEvents()
DTypedValueTest.java129 final int data2 = 100000; in testComplexToFraction() local
134 assertEquals(expected2, TypedValue.complexToFraction(data2, base2, pbase2), 0.0f); in testComplexToFraction()
/cts/tests/tests/view/src/android/view/cts/
DFrameMetricsListenerTest.java139 final ArrayList<FrameMetrics> data2 = new ArrayList<>(); in testMultipleListeners() local
145 data2.add(new FrameMetrics(frameMetrics)); in testMultipleListeners()
159 PollingCheck.waitFor(() -> data1.size() != 0 && data1.size() == data2.size()); in testMultipleListeners()
/cts/tests/tests/widget/src/android/widget/cts/
DHeaderViewListAdapterTest.java164 Object data2 = new Object(); in testGetCount() local
168 info2.data = data2; in testGetCount()
235 Object data2 = new Object(); in testGetItem() local
239 info2.data = data2; in testGetItem()
255 assertSame(data2, headerViewListAdapter.getItem(1)); in testGetItem()
/cts/tests/tests/database/src/android/database/cts/
DDatabaseUtilsTest.java722 String data2 = "DECAFBAD"; in testBlobFileDescriptorForQuery() local
729 mDatabase.execSQL("INSERT INTO blob_test (name, data) VALUES ('Jack', X'" + data2 + "');"); in testBlobFileDescriptorForQuery()
732 assertFileDescriptorContent(parseBlob(data2), in testBlobFileDescriptorForQuery()
/cts/common/device-side/bedstead/remoteframeworkclasses/java/apis/
Dcurrent.txt36175 field public static final String TYPE = "data2";
36237 field public static final String NAMESPACE = "data2";
36399 field public static final String GIVEN_NAME = "data2";
36567 field public static final String DATA2 = "data2";