/cts/tests/tests/media/audio/src/android/media/audio/cts/ |
D | AudioPreProcessingTest.java | 52 AudioRecord ar = getAudioRecord(); in test1_1NsCreateAndRelease() local 53 assertNotNull("could not create AudioRecord", ar); in test1_1NsCreateAndRelease() 57 NoiseSuppressor ns = NoiseSuppressor.create(ar.getAudioSessionId()); in test1_1NsCreateAndRelease() 63 ar.release(); in test1_1NsCreateAndRelease() 80 AudioRecord ar = getAudioRecord(); in test1_2NsSetEnabledGetEnabled() local 81 assertNotNull("could not create AudioRecord", ar); in test1_2NsSetEnabledGetEnabled() 83 NoiseSuppressor ns = NoiseSuppressor.create(ar.getAudioSessionId()); in test1_2NsSetEnabledGetEnabled() 95 ar.release(); in test1_2NsSetEnabledGetEnabled() 113 AudioRecord ar = getAudioRecord(); in test2_1AecCreateAndRelease() local 114 assertNotNull("could not create AudioRecord", ar); in test2_1AecCreateAndRelease() [all …]
|
D | AudioEffectTest.java | 112 AudioRecord ar = null; in getAudioRecord() local 114 ar = new AudioRecord(MediaRecorder.AudioSource.DEFAULT, in getAudioRecord() 121 assertNotNull("Could not create AudioRecord", ar); in getAudioRecord() 123 AudioRecord.STATE_INITIALIZED, ar.getState()); in getAudioRecord() 127 return ar; in getAudioRecord()
|
D | AudioRecordTest.java | 819 AudioRecord ar = new AudioRecord.Builder() in testRestrictedAudioSourcePermissions() local
|
/cts/tests/tests/telephony/current/mockmodem/src/android/telephony/mockmodem/ |
D | IRadioConfigImpl.java | 94 AsyncResult ar; in handleMessage() local 99 ar = (AsyncResult) msg.obj; in handleMessage() 100 if (ar != null && ar.exception == null) { in handleMessage() 101 mNumOfLiveModems = (byte) ar.result; in handleMessage() 104 Log.e(mTag, msg.what + " failure. Exception: " + ar.exception); in handleMessage() 109 ar = (AsyncResult) msg.obj; in handleMessage() 110 if (ar != null && ar.exception == null) { in handleMessage() 111 mPhoneCapability = (PhoneCapability) ar.result; in handleMessage() 114 Log.e(mTag, msg.what + " failure. Exception: " + ar.exception); in handleMessage() 119 ar = (AsyncResult) msg.obj; in handleMessage() [all …]
|
D | IRadioModemImpl.java | 95 AsyncResult ar; in handleMessage() local 100 ar = (AsyncResult) msg.obj; in handleMessage() 101 if (ar != null && ar.exception == null) { in handleMessage() 102 mBasebandVer = (String) ar.result; in handleMessage() 109 + ar.exception); in handleMessage() 114 ar = (AsyncResult) msg.obj; in handleMessage() 115 if (ar != null && ar.exception == null) { in handleMessage() 116 String[] deviceIdentity = (String[]) ar.result; in handleMessage() 136 + ar.exception); in handleMessage() 141 ar = (AsyncResult) msg.obj; in handleMessage() [all …]
|
D | IRadioVoiceImpl.java | 105 AsyncResult ar; in handleMessage() local 110 ar = (AsyncResult) msg.obj; in handleMessage() 111 if (ar != null && ar.exception == null) { in handleMessage() 112 mCallList = (ArrayList<MockCallInfo>) ar.result; in handleMessage() 116 Log.e(mTag, msg.what + " failure. Exception: " + ar.exception); in handleMessage() 121 ar = (AsyncResult) msg.obj; in handleMessage() 122 if (ar != null && ar.exception == null) { in handleMessage() 124 (ArrayList<MockCallInfo>) ar.result; in handleMessage() 140 Log.e(mTag, msg.what + " failure. Exception: " + ar.exception); in handleMessage() 145 ar = (AsyncResult) msg.obj; in handleMessage() [all …]
|
D | IRadioDataImpl.java | 336 AsyncResult ar; in handleMessage() local 341 ar = (AsyncResult) msg.obj; in handleMessage() 342 if (ar != null && ar.exception == null) { in handleMessage() 343 sServiceState = (MockNetworkService) ar.result; in handleMessage() 346 Log.e(TAG, msg.what + " failure. Exception: " + ar.exception); in handleMessage()
|
D | IRadioSimImpl.java | 102 AsyncResult ar; in handleMessage() local 107 ar = (AsyncResult) msg.obj; in handleMessage() 108 if (ar != null && ar.exception == null) { in handleMessage() 109 mCardStatus = (CardStatus) ar.result; in handleMessage() 113 Log.e(mTag, msg.what + " failure. Exception: " + ar.exception); in handleMessage() 119 ar = (AsyncResult) msg.obj; in handleMessage() 120 if (ar != null && ar.exception == null) { in handleMessage() 121 mSimAppList = (ArrayList<SimAppData>) ar.result; in handleMessage() 128 Log.e(mTag, msg.what + " failure. Exception: " + ar.exception); in handleMessage() 133 ar = (AsyncResult) msg.obj; in handleMessage() [all …]
|
D | IRadioNetworkImpl.java | 110 AsyncResult ar; in handleMessage() local 116 ar = (AsyncResult) msg.obj; in handleMessage() 117 if (ar != null && ar.exception == null) { in handleMessage() 118 mSimReady = updateSimReady(ar); in handleMessage() 123 Log.e(mTag, msg.what + " failure. Exception: " + ar.exception); in handleMessage() 130 ar = (AsyncResult) msg.obj; in handleMessage() 131 if (ar != null && ar.exception == null) { in handleMessage() 132 mRadioState = (int) ar.result; in handleMessage() 138 Log.e(mTag, msg.what + " failure. Exception: " + ar.exception); in handleMessage() 194 private boolean updateSimReady(AsyncResult ar) { in updateSimReady() argument [all …]
|
D | MockModemConfigBase.java | 761 AsyncResult ar = new AsyncResult(null, deviceIdentity, null); in notifyDeviceIdentityChangedRegistrants() local 762 mDeviceIdentityChangedRegistrants[logicalSlotId].notifyRegistrants(ar); in notifyDeviceIdentityChangedRegistrants() 774 AsyncResult ar = new AsyncResult(null, imeiInfo, null); in notifyDeviceImeiTypeChangedRegistrants() local 775 mDeviceImeiInfoChangedRegistrants[logicalSlotId].notifyRegistrants(ar); in notifyDeviceImeiTypeChangedRegistrants()
|
/cts/tests/framework/base/windowmanager/src/android/server/wm/animations/ |
D | MoveAnimationTests.java | 168 WindowManagerState.Activity ar = in assertPlaysMoveAnimation() 170 return ar != null && ar.isAnimating(); in assertPlaysMoveAnimation()
|
/cts/apps/CameraITS/utils/ |
D | image_fov_utils.py | 89 ar = circle['w'] / circle['h'] 90 if not math.isclose(ar, ar_gt, abs_tol=thresh_ar):
|
D | capture_request_utils.py | 215 ar = match_ar_size[0] / match_ar_size[1] 217 s for s in out_sizes if abs(ar - s[0] / float(s[1])) <= ar_tolerance
|
/cts/tests/tests/appop/src/android/app/appops/cts/ |
D | AppOpsLoggingTest.kt | 705 val ar = AudioRecord.Builder() in nativeNoteOp() constant 708 ar.startRecording() in nativeNoteOp() 709 ar.stop() in nativeNoteOp() 711 ar.release() in nativeNoteOp() 725 val ar = AudioRecord.Builder() in nativeNoteOp() constant 731 ar.startRecording() in nativeNoteOp() 732 ar.stop() in nativeNoteOp() 734 ar.release() in nativeNoteOp()
|
/cts/tests/tests/content/src/android/content/pm/cts/ |
D | PackageInfoTest.java | 106 for (ComponentInfo[] ar : new ComponentInfo[][]{ in testApplicationInfoSame() 109 for (ComponentInfo ci : ar) { in testApplicationInfoSame()
|
/cts/apps/CameraITS/tests/scene4/ |
D | test_multi_camera_alignment.py | 77 ar = props['android.sensor.info.pixelArraySize'] 79 pixel_size_w = sensor_size['width'] / ar['width'] 80 pixel_size_h = sensor_size['height'] / ar['height']
|
/cts/tests/camera/utils/src/android/hardware/camera2/cts/ |
D | CameraTestUtils.java | 2301 float ar = 1.0f * size.getWidth() / size.getHeight(); in getMaxSize() local 2302 if (aspectRatio > 0 && Math.abs(ar - aspectRatio) > ASPECT_RATIO_MATCH_THRESHOLD) { in getMaxSize() 2370 float ar = 1.0f * size.getWidth() / size.getHeight(); in getMaxSizeWithBound() local 2371 if (aspectRatio > 0 && Math.abs(ar - aspectRatio) > ASPECT_RATIO_MATCH_THRESHOLD) { in getMaxSizeWithBound()
|
/cts/tests/tests/security/res/raw/ |
D | cve_2018_13925.ts | 1236 &2�q��/ar�k\�-tGB��2\q�CVWtFk]FW�GF���|�����o�����Av�m.֪�S5P�/�l��iG1ꉩ�ͫkA�(��Ltd'+��… 4184 VFj��ar�U��ƪ�Z7LT: �U�1�SBΆ�/c�Ē8 4358 …Ql���Q9@����"蠕%�G�C�0i-����c��� ��C%$jW}tPAr��o��.� �"�A���#�LCn&�n��M���'�On�a,�ar�t�� 4465 …*D�5��iH&L6N2�$�%2iT�b�̔h�CJ�t���蚁��Uʺ@�Wt��J+y�z����y�|�5��#绢��#ar�E�Q���>"Vɖ�iv��$�H٦… 4571 IU�h��챊cv�:J�Ϣ{&!M��1��2�]K*l�J��U"�ar:&�-�&E 4915 ,w����j&���.��G1IB-ar��F���MEA���Sh�bʹ��:BSBN���.Vd����[L"�D4��S݃-(��R�I#4���U$�aΒ�>!&�… 5219 …�l|(�\�G����O$�{M��B�mO)/�3�Ҋh�M.>T��h��7����Ҧ�Z5���&c)�<�tLj�#gJ�ar��(���+>���{���`�ȲR 6339 …�&�.�z��6"��Krƚ��v�L�hۆр�t|��f�r�h�4���2h��ζ�T?�9 G1�j�.�i�ON��ar�So4?k���Aڤ�F*]p��… 10493 …���i��}�7q[�G1I����F��kEPP� ���U|�yM,V�kt��f�)���`\�O�e�_�K*�V>�ar��F\Yy���`BĹ�M���…
|
D | cve_2019_2244.ts | 1235 &2�q��/ar�k\�-tGB��2\q�CVWtFk]FW�GF���|�����o�����Av�m.֪�S5P�/�l��iG1ꉩ�ͫkA�(��Ltd'+��… 4186 VFj��ar�U��ƪ�Z7LT: �U�1�SBΆ�/c�Ē8 4360 …Ql���Q9@����"蠕%�G�C�0i-����c��� ��C%$jW}tPAr��o��.� �"�A���#�LCn&�n��M���'�On�a,�ar�t�� 4467 …*D�5��iH&L6N2�$�%2iT�b�̔h�CJ�t���蚁��Uʺ@�Wt��J+y�z����y�|�5��#绢��#ar�E�Q���>"Vɖ�iv��$�H٦… 4573 IU�h��챊cv�:J�Ϣ{&!M��1��2�]K*l�J��U"�ar:&�-�&E 4917 ,w����j&���.��G1IB-ar��F���MEA���Sh�bʹ��:BSBN���.Vd����[L"�D4��S݃-(��R�I#4���U$�aΒ�>!&�… 5221 …�l|(�\�G����O$�{M��B�mO)/�3�Ҋh�M.>T��h��7����Ҧ�Z5���&c)�<�tLj�#gJ�ar��(���+>���{���`�ȲR 6342 …�&�.�z��6"��Krƚ��v�L�hۆр�t|��f�r�h�4���2h��ζ�T?�9 G1�j�.�i�ON��ar�So4?k���Aڤ�F*]p��… 10499 …���i��}�7q[�G1I����F��kEPP� ���U|�yM,V�kt��f�)���`\�O�e�_�K*�V>�ar��F\Yy���`BĹ�M���…
|
D | cve_2019_2245.ts | 1235 &2�q��/ar�k\�-tGB��2\q�CVWtFk]FW�GF���|�����o�����Av�m.֪�S5P�/�l��iG1ꉩ�ͫkA�(��Ltd'+��… 4153 VFj��ar�U��ƪ�Z7LT: �U�1�SBΆ�/c�Ē8 6730 …��� MB�\����)y�&pҢ��6���螩|)�aa��҇�P���lkϴ���SQ=Ъ@�PI�_^���R r� �ar�I�����!��F���#ͪ�% 6952 …(D�{[Ȣ�H��(`MWZKH���H뺢�I���Y�bu�A����+8cj�a3[D�\D�YÀ0f˚�ؙE�C�\E#�c=�� ar:�B`ݤQ@zL�E Q�� 7117 �(���E�Q4�"�!��~�H㢽�E�@���`�P1��t����0k�e#�OE4LGh��TB,4fT�ɢ�xQPL�0ar�|�����5�SG1eX�… 10393 …���i��}�7q[�G1I����F��kEPP� ���U|�yM,V�kt��f�)���`\�O�e�_�K*�V>�ar��F\Yy���`BĹ�M���…
|
/cts/apps/CtsVerifier/libs/ |
D | opencv3-android.jar | META-INF/
META-INF/MANIFEST.MF
org/
org/opencv/
org/ ... |
/cts/common/device-side/bedstead/remoteframeworkclasses/java/apis/ |
D | current.txt | 13106 field public static final String FEATURE_CAMERA_AR = "android.hardware.camera.ar";
|