Home
last modified time | relevance | path

Searched refs:fc (Results 1 – 16 of 16) sorted by relevance

/cts/tests/fragment/src/android/fragment/cts/
DFragmentLifecycleTest.java319 final FragmentController fc = FragmentTestUtil.createController(mActivityRule); in fragmentDestroyedOnFinish() local
320 FragmentTestUtil.resume(mActivityRule, fc, null); in fragmentDestroyedOnFinish()
324 FragmentManager fm = fc.getFragmentManager(); in fragmentDestroyedOnFinish()
336 FragmentTestUtil.destroy(mActivityRule, fc); in fragmentDestroyedOnFinish()
352 FragmentController fc = FragmentController.createController( in childFragmentManagerAttach()
354 fc.attachHost(null); in childFragmentManagerAttach()
355 fc.dispatchCreate(); in childFragmentManagerAttach()
360 FragmentManager fm = fc.getFragmentManager(); in childFragmentManagerAttach()
371 fc.dispatchActivityCreated(); in childFragmentManagerAttach()
379 fc.dispatchStart(); in childFragmentManagerAttach()
[all …]
/cts/tests/tests/content/src/android/content/res/cts/
DAssetFileDescriptor_AutoCloseInputStreamTest.java260 FileChannel fc = input.getChannel(); in testGetChannel() local
262 assertEquals(3, fc.position()); in testGetChannel()
268 FileChannel fc = input.getChannel(); in testOffsetCorrectFileChannelSize() local
269 assertEquals(fc.size(), FILE_LENGTH); in testOffsetCorrectFileChannelSize()
275 FileChannel fc = input.getChannel(); in testOffsetCorrectFileChannelReadBuffer() local
280 int bytesRead = fc.read(buffer); in testOffsetCorrectFileChannelReadBuffer()
288 assertEquals(startPosition + bufferSize, fc.position()); in testOffsetCorrectFileChannelReadBuffer()
294 FileChannel fc = input.getChannel(); in testOffsetCorrectFileChannelReadBuffers() local
300 fc.read(buffers, 0, buffers.length); in testOffsetCorrectFileChannelReadBuffers()
306 assertEquals(startPosition + bufferSize, fc.position()); in testOffsetCorrectFileChannelReadBuffers()
[all …]
/cts/tests/tests/libcorefileio/src/android/cts/
DFileChannelInterProcessLockTest.java625 FileChannel fc = null;
628 fc = FileChannel.open(file.toPath(),
637 if (fc != null) {
638 return fc.tryLock();
643 if (fc != null) {
644 return fc.tryLock(LOCK_POSITION, LOCK_SIZE, false /*isShared*/);
649 if (fc != null) {
650 return fc.tryLock(LOCK_POSITION + LOCK_SIZE, LOCK_SIZE, false /*isShared*/);
655 if (fc != null) {
656 return fc.tryLock(LOCK_POSITION, LOCK_SIZE, true /*isShared*/);
[all …]
/cts/tests/tests/text/src/android/text/cts/
DFontFileTestUtil.java36 final FileChannel fc = fis.getChannel(); in getPostScriptName() local
37 long size = fc.size(); in getPostScriptName()
38 ByteBuffer buffer = fc.map(FileChannel.MapMode.READ_ONLY, 0, size) in getPostScriptName()
118 final FileChannel fc = fis.getChannel(); in hasTable() local
119 long size = fc.size(); in hasTable()
120 ByteBuffer buffer = fc.map(FileChannel.MapMode.READ_ONLY, 0, size) in hasTable()
/cts/tests/tests/graphics/src/android/graphics/fonts/
DFontFileTestUtil.java37 final FileChannel fc = fis.getChannel(); in getPostScriptName() local
38 long size = fc.size(); in getPostScriptName()
39 ByteBuffer buffer = fc.map(FileChannel.MapMode.READ_ONLY, 0, size) in getPostScriptName()
DSystemFontsTest.java141 FileChannel fc = fis.getChannel(); in testFontsFallbackUnreadable() local
142 ByteBuffer buf = fc.map(FileChannel.MapMode.READ_ONLY, 0, fc.size()); in testFontsFallbackUnreadable()
/cts/tests/tests/security/res/raw/
Dopenssl_heartbleed_test_cert.pem41 00:b7:85:fc:7d:7b:11:34:10:6a:24:a4:cc:8d:8f:
74 13:fc:87:a6:7c:60:10:a9:60:63:64:1c:84:8d:4a:13:5b:60:
82 c7:ac:3c:93:8d:fc:c3:41:1b:75:7c:90:8e:b3:4c:72:ab:87:
Ddrm_uaf.dm72 �*�fΡ�K׿��K{���D�k`<����|��K���M�u�림�������+��<�$j8R�?�?z�fc��ZKv�er�ᰳV0<�!��X�=(���ξ…
Dcve_2018_13925.ts3344 ��V؈dn�f�fc�������ʯ+P"QF7%�8S F��������v f5��Cm�bS[�^��қk�v���x�ڧ�>b����Y��>�cx�=�N�8�ۃ�}…
Dcve_2019_2244.ts3345 ��V؈dn�f�fc�������ʯ+P"QF7%�8S F��������v f5��Cm�bS[�^��қk�v���x�ڧ�>b����Y��>�cx�=�N�8�ۃ�}…
/cts/tests/tests/voiceinteraction/service/src/android/voiceinteraction/service/
DMainVisualQueryDetectionService.java491 FileChannel fc = fis.getChannel(); in readFileWithMMap() local
492 MappedByteBuffer buffer = fc.map(mode, 0, fc.size()); in readFileWithMMap()
493 byte[] data = new byte[(int) fc.size()]; in readFileWithMMap()
/cts/apps/CameraITS/tests/scene4/
Dtest_preview_aspect_ratio_and_crop.py76 for fc in failed_crop:
77 logging.error('%s', fc)
Dtest_video_aspect_ratio_and_crop.py61 for fc in failed_crop:
62 logging.error('%s', fc)
Dtest_aspect_ratio_and_crop.py135 for fc in failed_crop:
136 logging.error('%s', fc)
/cts/tests/framework/base/windowmanager/backgroundactivity/src/android/server/wm/
DBackgroundActivityTestBase.java166 for (FutureConnection<ITestService> fc : mServiceConnections.values()) { in tearDown()
167 mContext.unbindService(fc); in tearDown()
/cts/apps/CtsVerifier/src/com/android/cts/verifier/sensors/
DRVCVXCheckAnalyzer.java836 float fc = (float)(meta.frameWidth/2.0/Math.tan(meta.fovWidth/2.0)); in analyzeVideo() local
837 Mat camMat = cameraMatrix(fc, new Size(frameSize.width/2, frameSize.height/2)); in analyzeVideo()