Home
last modified time | relevance | path

Searched refs:ar (Results 1 – 22 of 22) sorted by relevance

/cts/tests/tests/media/audio/src/android/media/audio/cts/
DAudioPreProcessingTest.java52 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 …]
DAudioEffectTest.java112 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()
DAudioRecordTest.java819 AudioRecord ar = new AudioRecord.Builder() in testRestrictedAudioSourcePermissions() local
/cts/tests/tests/telephony/current/mockmodem/src/android/telephony/mockmodem/
DIRadioConfigImpl.java94 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 …]
DIRadioModemImpl.java95 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 …]
DIRadioVoiceImpl.java105 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 …]
DIRadioDataImpl.java336 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()
DIRadioSimImpl.java102 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 …]
DIRadioNetworkImpl.java110 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 …]
DMockModemConfigBase.java761 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/
DMoveAnimationTests.java168 WindowManagerState.Activity ar = in assertPlaysMoveAnimation()
170 return ar != null && ar.isAnimating(); in assertPlaysMoveAnimation()
/cts/apps/CameraITS/utils/
Dimage_fov_utils.py89 ar = circle['w'] / circle['h']
90 if not math.isclose(ar, ar_gt, abs_tol=thresh_ar):
Dcapture_request_utils.py215 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/
DAppOpsLoggingTest.kt705 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/
DPackageInfoTest.java106 for (ComponentInfo[] ar : new ComponentInfo[][]{ in testApplicationInfoSame()
109 for (ComponentInfo ci : ar) { in testApplicationInfoSame()
/cts/apps/CameraITS/tests/scene4/
Dtest_multi_camera_alignment.py77 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/
DCameraTestUtils.java2301 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/
Dcve_2018_13925.ts1236 &2�q��/ar�k\�-tGB��2\q�CVWtFk]FW�GF���|�����o�����Av�m.֪�S5P�/�l��iG�1ꉩ�ͫkA�(��L�td'+��…
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&���.��G�1IB-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 G�1�j�.�i�ON��ar�So4?k���Aڤ�F€*]p���…
10493 …���i��}��7q[�G�1I����F��kEPP� ���U|� yM,V�kt��f�)���`\�O�e�ƒ_�K*�V>�ar��F\Yy���`BĹ�M���…
Dcve_2019_2244.ts1235 &2�q��/ar�k\�-tGB��2\q�CVWtFk]FW�GF���|�����o�����Av�m.֪�S5P�/�l��iG�1ꉩ�ͫkA�(��L�td'+��…
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&���.��G�1IB-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 G�1�j�.�i�ON��ar�So4?k���Aڤ�F€*]p���…
10499 …���i��}��7q[�G�1I����F��kEPP� ���U|� yM,V�kt��f�)���`\�O�e�ƒ_�K*�V>�ar��F\Yy���`BĹ�M���…
Dcve_2019_2245.ts1235 &2�q��/ar�k\�-tGB��2\q�CVWtFk]FW�GF���|�����o�����Av�m.֪�S5P�/�l��iG�1ꉩ�ͫkA�(��L�td'+��…
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�SG�1eX�…
10393 …���i��}��7q[�G�1I����F��kEPP� ���U|� yM,V�kt��f�)���`\�O�e�ƒ_�K*�V>�ar��F\Yy���`BĹ�M���…
/cts/apps/CtsVerifier/libs/
Dopencv3-android.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/opencv/ org/ ...
/cts/common/device-side/bedstead/remoteframeworkclasses/java/apis/
Dcurrent.txt13106 field public static final String FEATURE_CAMERA_AR = "android.hardware.camera.ar";