/cts/tests/tests/telephony/current/src/android/telephony/cts/ |
D | SignalStrengthTest.java | 64 ServiceState ss = mTm.getServiceState(); in isCamped() local 65 if (ss == null) return false; in isCamped() 66 return (ss.getState() == ServiceState.STATE_IN_SERVICE in isCamped() 67 || ss.getState() == ServiceState.STATE_EMERGENCY_ONLY); in isCamped() 89 SignalStrength ss = mTm.getSignalStrength(); in testSignalStrength() local 90 assertNotNull("TelephonyManager.getSignalStrength() returned NULL!", ss); in testSignalStrength() 93 assertTrue("Invalid timestamp in SignalStrength: " + ss.getTimestampMillis(), in testSignalStrength() 94 ss.getTimestampMillis() > 0 && ss.getTimestampMillis() <= curTime); in testSignalStrength() 95 Log.d(TAG, "Timestamp of SignalStrength: " + ss.getTimestampMillis()); in testSignalStrength() 97 SignalStrength copy = new SignalStrength(ss); in testSignalStrength() [all …]
|
D | ServiceStateTest.java | 370 ServiceState ss = new ServiceState(); in testVopsSupportInfo() local 372 ss.addNetworkRegistrationInfo(wwanDataRegState); in testVopsSupportInfo() 374 assertEquals(ss.getNetworkRegistrationInfo(NetworkRegistrationInfo.DOMAIN_PS, in testVopsSupportInfo() 384 ss.addNetworkRegistrationInfo(wwanDataRegState); in testVopsSupportInfo() 385 assertEquals(ss.getNetworkRegistrationInfo(NetworkRegistrationInfo.DOMAIN_PS, in testVopsSupportInfo() 387 assertEquals(ss.getNetworkRegistrationInfo(NetworkRegistrationInfo.DOMAIN_PS, in testVopsSupportInfo() 390 assertEquals(ss.getNetworkRegistrationInfo(NetworkRegistrationInfo.DOMAIN_PS, in testVopsSupportInfo() 400 ss.addNetworkRegistrationInfo(wwanDataRegState); in testVopsSupportInfo() 401 assertEquals(ss.getNetworkRegistrationInfo(NetworkRegistrationInfo.DOMAIN_PS, in testVopsSupportInfo() 403 assertEquals(ss.getNetworkRegistrationInfo(NetworkRegistrationInfo.DOMAIN_PS, in testVopsSupportInfo()
|
D | TelephonyLocationTests.java | 87 ServiceState ss = (ServiceState) performLocationAccessCommand( in testServiceStateLocationSanitization() 89 assertServiceStateSanitization(ss, true); in testServiceStateLocationSanitization() 113 ServiceState ss = (ServiceState) performLocationAccessCommand( in testServiceStateListeningWithoutPermissions() 115 assertServiceStateSanitization(ss, true); in testServiceStateListeningWithoutPermissions() 141 ServiceState ss = (ServiceState) performLocationAccessCommand( in testSdk28ServiceStateListeningWithoutPermissions() 143 assertNotNull(ss); in testSdk28ServiceStateListeningWithoutPermissions() 144 assertNotEquals(ss, ss.createLocationInfoSanitizedCopy(false)); in testSdk28ServiceStateListeningWithoutPermissions()
|
D | TelephonyRegistryManagerTest.java | 124 public void onServiceStateChanged(ServiceState ss) { in testNotifyServiceStateChanged() 125 queue.offer(ss); in testNotifyServiceStateChanged() 154 public void onSignalStrengthsChanged(SignalStrength ss) { in testNotifySignalStrengthChanged() 155 queue.offer(ss); in testNotifySignalStrengthChanged()
|
D | CellInfoTest.java | 241 ServiceState ss = mTm.getServiceState(); in isCamped() local 242 if (ss == null) return false; in isCamped() 243 return (ss.getState() == ServiceState.STATE_IN_SERVICE in isCamped() 244 || ss.getState() == ServiceState.STATE_EMERGENCY_ONLY); in isCamped()
|
D | TelephonyManagerTest.java | 1769 ServiceState ss = mTelephonyManager.getServiceState(); in testNetworkRegistrationInfoRegisteredPlmn() local 1770 assertNotNull(ss); in testNetworkRegistrationInfoRegisteredPlmn() 1773 for (NetworkRegistrationInfo nwReg : ss.getNetworkRegistrationInfoList()) { in testNetworkRegistrationInfoRegisteredPlmn()
|
/cts/tests/tests/telephony/current/src/android/telephony/gba/cts/ |
D | GbaServiceTest.java | 242 int ss = sConfig.getServiceState(); in testServiceReleaseDefault() local 243 boolean isExpected = (ss == TestGbaConfig.STATE_UNKNOWN in testServiceReleaseDefault() 244 || ss == TestGbaConfig.STATE_REMOVED in testServiceReleaseDefault() 245 || ss == TestGbaConfig.STATE_UNBOUND); in testServiceReleaseDefault() 263 int ss = sConfig.getServiceState(); in testServiceReleaseDuration() local 264 boolean isExpected = (ss == TestGbaConfig.STATE_UNKNOWN in testServiceReleaseDuration() 265 || ss == TestGbaConfig.STATE_REMOVED in testServiceReleaseDuration() 266 || ss == TestGbaConfig.STATE_UNBOUND); in testServiceReleaseDuration() 288 int ss = sConfig.getServiceState(); in testServiceNoRelease() local 289 boolean isExpected = (ss == TestGbaConfig.STATE_UNKNOWN in testServiceNoRelease() [all …]
|
/cts/hostsidetests/statsdatom/apps/statsdapp/jni/ |
D | alloc_stress_activity.cpp | 47 std::stringstream ss; in Java_com_android_server_cts_device_statsdatom_StatsdCtsForegroundActivity_cmain() local 48 ss << "total alloc: " << allocCount / (1 << 20); in Java_com_android_server_cts_device_statsdatom_StatsdCtsForegroundActivity_cmain() 49 LOG(ss.str().c_str()); in Java_com_android_server_cts_device_statsdatom_StatsdCtsForegroundActivity_cmain()
|
/cts/tests/tests/telephony/current/LocationAccessingApp/src/android/telephony/cts/locationaccessingapp/ |
D | CtsLocationAccessService.java | 157 public void onServiceStateChanged(ServiceState ss) { in listenForServiceState() 158 if (ss == null) ss = new ServiceState(); in listenForServiceState() 159 queue.offer(ss); in listenForServiceState() 166 ServiceState ss = queue.poll(LISTENER_TIMEOUT, TimeUnit.MILLISECONDS); in listenForServiceState() local 167 if (ss == null) { in listenForServiceState() 170 return ss; in listenForServiceState()
|
/cts/tests/tests/telephony/sdk28/src/android/telephony/sdk28/cts/ |
D | CellInfoTest.java | 54 ServiceState ss = ShellIdentityUtils.invokeMethodWithShellPermissions( in isCamped() local 57 if (ss == null) return false; in isCamped() 58 return (ss.getState() == ServiceState.STATE_IN_SERVICE in isCamped() 59 || ss.getState() == ServiceState.STATE_EMERGENCY_ONLY); in isCamped()
|
/cts/apps/CtsVerifier/src/com/android/cts/verifier/audio/wavelib/ |
D | DspFftServer.java | 54 double cc, ss, t1, t2; in fft() local 87 ss = sign * mSin.mData[aa]; in fft() 90 t1 = cc * r.mReal[kk + n1] - ss * r.mImag[kk + n1]; in fft() 91 t2 = ss * r.mReal[kk + n1] + cc * r.mImag[kk + n1]; in fft()
|
/cts/tests/signature/api-check/src/jni/ |
D | classdescriptors.cpp | 172 std::stringstream ss; in Java_android_signature_cts_api_BootClassPathClassesProvider_getClassMemberNamesAndTypes() local 173 ss << "Error while executing " in Java_android_signature_cts_api_BootClassPathClassesProvider_getClassMemberNamesAndTypes() 176 std::string error = ss.str(); in Java_android_signature_cts_api_BootClassPathClassesProvider_getClassMemberNamesAndTypes() 196 std::stringstream ss; in Java_android_signature_cts_api_BootClassPathClassesProvider_getClassMemberNamesAndTypes() local 197 ss << "Error while executing " in Java_android_signature_cts_api_BootClassPathClassesProvider_getClassMemberNamesAndTypes() 200 std::string error = ss.str(); in Java_android_signature_cts_api_BootClassPathClassesProvider_getClassMemberNamesAndTypes()
|
/cts/tests/tests/text/src/android/text/cts/ |
D | StaticLayoutGetLineLeftRightTest.java | 101 final SpannableString ss = new SpannableString(TEST_STR); in StaticLayoutGetLineLeftRightTest() local 102 ss.setSpan(new LeadingMarginSpan.Standard(mLeadingMargin), in StaticLayoutGetLineLeftRightTest() 103 0, ss.length(), Spanned.SPAN_EXCLUSIVE_EXCLUSIVE); in StaticLayoutGetLineLeftRightTest() 104 mText = ss; in StaticLayoutGetLineLeftRightTest()
|
/cts/tests/tests/binder_ndk/libbinder_ndk_test/ |
D | utilities.h | 51 inline ::testing::AssertionResult ContainsSubstring(const std::string& s, const std::string& ss) { in ContainsSubstring() argument 52 if (s.find(ss) != std::string::npos) { in ContainsSubstring() 56 << "String: '" << s << "' does not contain substring: " << ss; in ContainsSubstring()
|
/cts/hostsidetests/jvmti/attaching/host/src/android/jvmti/cts/ |
D | JvmtiAttachingHostTest.java | 250 try (final ServerSocket ss = new ServerSocket(0)) { in runAttachTestCmd() argument 252 "reverse", "localabstract:" + REMOTE_SOCKET_NAME, "tcp:" + ss.getLocalPort()); in runAttachTestCmd() 262 ss.setSoTimeout(30000); in runAttachTestCmd() 263 try (Socket s = ss.accept()) { in runAttachTestCmd()
|
/cts/tests/tests/view/jni/ |
D | android_view_cts_ChoreographerNativeTest.cpp | 143 std::stringstream ss; in dumpSupportedRefreshPeriods() local 144 ss << "{ "; in dumpSupportedRefreshPeriods() 146 ss << period << ","; in dumpSupportedRefreshPeriods() 148 ss << "}"; in dumpSupportedRefreshPeriods() 149 return ss.str(); in dumpSupportedRefreshPeriods()
|
/cts/tests/tests/os/src/android/os/cts/ |
D | ParcelFileDescriptorTest.java | 110 ServerSocket ss; in testFromSocket() 111 ss = new ServerSocket(PORT); in testFromSocket() 112 Socket sSocket = ss.accept(); in testFromSocket()
|
/cts/tests/autofillservice/src/android/autofillservice/cts/saveui/ |
D | SimpleSaveActivityTest.java | 1924 final SpannableString ss = new SpannableString("Here is URLSpan"); in newDescriptionWithUrlSpan() local 1925 ss.setSpan(new URLSpan(url), in newDescriptionWithUrlSpan() 1927 return ss; in newDescriptionWithUrlSpan()
|
/cts/tests/tests/media/assets/hls_variant/165340/ |
D | 23.ts | 107 …������P�<2(���Q���X��2�4���Zp�"�RZ�>�/m�����������#NrR�����6�o���J72ssX�X��Z�VU����쐔@A… 486 …A���!�����\@"��$,�k)*S7W%�ӱX)�*T�A�.�qy�Gn���&S=GoY�����-��ss�N�.���-��a�/w&zs� …
|
D | 11.ts | 303 ��{{{��"�#��p{�����`��@/�lr���Ddb6��$�I'72ssn>�����3ޫ����w}
|
D | 10.ts | 117 Q��P�G�ss��7�O?W�6���r��zX_/��;�"!I������3���p�DY����3�1�����I������ɤ ��b�3��kݑgH-2��
|
/cts/tests/tests/security/res/raw/ |
D | cve_2019_14048.ts | 3725 …�U#/&S`������յ+f]k�i65]sFVO-���������6�7����*5?n�Uc�kD�mXӊ�����+T��jI�ss�����o4��8Q���ӛw�a�… 3854 …d9�u[9�KVyac&u0���̜��ѭ�b$H�m�Kj��^�����YҜ�{>[t���ڧ�Ľ�]j7�G1&�/��ss�s:2�x9ՉYZ���GB�H… 3884 …��X��cy�����ִk/R�z��ung}�F�5�ЭM�n;���#}�U��^�e5��y�9��W�F��m-��j�QXo��#ss#R���qu�7�>��̲��klk… 4523 …�U#/&S`������յ+f]k�i65]sFVO-���������6�7����*5?n�Uc�kD�mXӊ�����+T��jI�ss�����o4��8Q���ӛw�a�… 4652 …��e�d9�u[9�KVyac&u0���̜��ѭ�b$H�m�Kj��^�����YҜ�{>[t���ڧ�Ľ�]j7�&�/��ss�s:2�x9ՉG1YZ���… 4682 …��X��cy�����ִk/R�z��ung}�F�5�ЭM�n;���#}�U��^�e5��y�9��W�F��m-��j�QXo��#ss#R���qu�7�>��̲��klk… 5321 …�U#/&S`������յ+f]k�i65]sFVO-���������6�7����*5?n�Uc�kD�mXӊ�����+T��jI�ss�����o4��8Q���ӛw�a�… 5450 …��e�d9�u[9�KVyac&u0���̜��ѭ�b$H�m�Kj��^�����YҜ�{>[t���ڧ�Ľ�]j7�&�/��ss�s:2�x9ՉYZ���GB�H… 5480 …��X��cy�����ִk/R�z��ung}�F�5�ЭM�n;���#}�U��^�e5��y�9��W�F��m-��j�QXo��#ss#R���qu�7�>��̲��klk… 6119 …&S`������յ+f]G1k�i65]sFVO-���������6�7����*5?n�Uc�kD�mXӊ�����+T��jI�ss�����o4��8Q���ӛw�a�… [all …]
|
/cts/tests/tests/media/assets/hls_variant/765178/ |
D | 02.ts | 299 …y\�YžL3���%�����*h�7�ε݀���cq>���m���]�5��MH���ƫ��UV2]:o���ı-�y�x}q�ssКФ�5j4<�R�*�䝖Hv�IS(… 479 …�������`�=l6:�2�s�\�����s@�?,�$�2U`���i�x'r��d��Ob� ��>G���ƭ;j��ss�o�/��f��-�Q�r�K�… 2142 �`YȞD�c9�z�pxܳ�t<w?w��'��.�%�Ɂ��ss�O�s���9�0S�g�=0���roH�Vo?@��ܟ8�'9/����Zs3Q��?���…
|
/cts/tests/tests/media/assets/hls_variant/387360/ |
D | 20.ts | 440 …:���`{\*^��gkرW9B�2c�8�n��z1�#2�g$��X{/�����������ym� �/<����1T?aGS�k�^(�y��ss�1[I]�� 1255 ��^�u9�7Yκ�V[<�,�45E��a�}�瘃#o�KiV6���Ѡ��f+��v7��_���d��5z��ɸx�CE��,�R�J�ss�AfSЅĠ�#�!����)��…
|
/cts/tests/tests/media/assets/hls_variant/344388/ |
D | 05.ts | 192 …��X:�7�{o`}x�H�E������ʾ���z�W�^F�m�(��g�5@ǧ����r�S�_�`�&�����i2ss�^�b(3�RoA���"e��9… 782 …z@K�#+a���ٺ��>�s�%{\8Ml�of���rf^�����n������5e`�F�qOS�#(�����[{%�6J�ss��C�hϲ���i`�&��T�#Yu{…
|