/cts/tests/fragment/src/android/fragment/cts/ |
D | FragmentLifecycleTest.java | 319 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/ |
D | AssetFileDescriptor_AutoCloseInputStreamTest.java | 260 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/ |
D | FileChannelInterProcessLockTest.java | 625 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/ |
D | FontFileTestUtil.java | 36 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/ |
D | FontFileTestUtil.java | 37 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()
|
D | SystemFontsTest.java | 141 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/ |
D | openssl_heartbleed_test_cert.pem | 41 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:
|
D | drm_uaf.dm | 72 �*�fΡ�K��K{���Dk`<����|�K���M�u�림�������+��<�$j8R�?�?z�fc��ZKv�er�ᰳV0<�!��X�=(���ξ…
|
D | cve_2018_13925.ts | 3344 ��V؈dn�f�fc�������ʯ+P"QF7%�8SF��������vf5��Cm�bS[�^��қk�v��x�ڧ�>b����Y�>�cx�=�N�8�ۃ�}…
|
D | cve_2019_2244.ts | 3345 ��V؈dn�f�fc�������ʯ+P"QF7%�8SF��������vf5��Cm�bS[�^��қk�v��x�ڧ�>b����Y�>�cx�=�N�8�ۃ�}…
|
/cts/tests/tests/voiceinteraction/service/src/android/voiceinteraction/service/ |
D | MainVisualQueryDetectionService.java | 491 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/ |
D | test_preview_aspect_ratio_and_crop.py | 76 for fc in failed_crop: 77 logging.error('%s', fc)
|
D | test_video_aspect_ratio_and_crop.py | 61 for fc in failed_crop: 62 logging.error('%s', fc)
|
D | test_aspect_ratio_and_crop.py | 135 for fc in failed_crop: 136 logging.error('%s', fc)
|
/cts/tests/framework/base/windowmanager/backgroundactivity/src/android/server/wm/ |
D | BackgroundActivityTestBase.java | 166 for (FutureConnection<ITestService> fc : mServiceConnections.values()) { in tearDown() 167 mContext.unbindService(fc); in tearDown()
|
/cts/apps/CtsVerifier/src/com/android/cts/verifier/sensors/ |
D | RVCVXCheckAnalyzer.java | 836 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()
|