/cts/tests/tests/net/jni/ |
D | NativeDnsJni.c | 43 struct addrinfo *current = answer; in Java_android_net_cts_DnsTest_testNativeDns() local 44 while (current != NULL) { in Java_android_net_cts_DnsTest_testNativeDns() 46 if (current->ai_addr->sa_family == AF_INET) { in Java_android_net_cts_DnsTest_testNativeDns() 47 inet_ntop(current->ai_family, &((struct sockaddr_in *)current->ai_addr)->sin_addr, in Java_android_net_cts_DnsTest_testNativeDns() 51 } else if (current->ai_addr->sa_family == AF_INET6) { in Java_android_net_cts_DnsTest_testNativeDns() 52 inet_ntop(current->ai_family, &((struct sockaddr_in6 *)current->ai_addr)->sin6_addr, in Java_android_net_cts_DnsTest_testNativeDns() 57 current = current->ai_next; in Java_android_net_cts_DnsTest_testNativeDns() 76 struct addrinfo *current = answer; in Java_android_net_cts_DnsTest_testNativeDns() local 77 while (current != NULL) { in Java_android_net_cts_DnsTest_testNativeDns() 79 if (current->ai_addr->sa_family == AF_INET) { in Java_android_net_cts_DnsTest_testNativeDns() [all …]
|
/cts/tests/signature/api/ |
D | Android.mk | 23 LOCAL_MODULE := cts-current-api 24 LOCAL_MODULE_STEM := current.api 32 $(LOCAL_BUILT_MODULE) : frameworks/base/api/current.txt | $(APICHECK) 38 cts_api_xml_v1 := $(CTS_TESTCASES_OUT)/current.api
|
/cts/tests/tests/content/src/android/content/pm/cts/ |
D | PackageManagerTest.java | 125 String current; in checkActivityInfoName() local 127 current = infoIterator.next().activityInfo.name; in checkActivityInfoName() 128 if (current.equals(expectedName)) { in checkActivityInfoName() 139 String current; in checkServiceInfoName() local 141 current = infoIterator.next().serviceInfo.name; in checkServiceInfoName() 142 if (current.equals(expectedName)) { in checkServiceInfoName() 162 String current; in checkProviderInfoName() local 164 current = infoIterator.next().name; in checkProviderInfoName() 165 if (current.equals(expectedName)) { in checkProviderInfoName() 177 String current; in checkInstrumentationInfoName() local [all …]
|
D | ProviderInfoTest.java | 46 ProviderInfo current; in testProviderInfo() local 48 current = providerIterator.next(); in testProviderInfo() 49 if (current.name.equals(PROVIDER_NAME)) { in testProviderInfo() 50 checkProviderInfoMethods(current, p); in testProviderInfo()
|
/cts/hostsidetests/appsecurity/test-apps/keysets/uA/ |
D | Android.mk | 20 LOCAL_SDK_VERSION := current 33 LOCAL_SDK_VERSION := current 46 LOCAL_SDK_VERSION := current 59 LOCAL_SDK_VERSION := current
|
/cts/hostsidetests/appsecurity/test-apps/keysets/uB/ |
D | Android.mk | 21 LOCAL_SDK_VERSION := current 36 LOCAL_SDK_VERSION := current 51 LOCAL_SDK_VERSION := current
|
/cts/tests/openglperf2/jni/primitive/shaderperf/ |
D | ShaderPerfRenderer.cpp | 84 char current; in charCopy() local 86 current = source[srcAddr]; in charCopy() 87 dest[destAddr] = current; in charCopy() 90 } while (current != '\0'); in charCopy()
|
/cts/tests/tests/media/src/android/media/cts/ |
D | ResourceManagerTestActivityBase.java | 204 int current = 0; in doUseCodecs() local 206 for (current = 0; current < mCodecs.size(); ++current) { in doUseCodecs() 207 mCodecs.get(current).getName(); in doUseCodecs() 212 Log.d(TAG, "Remove codec " + current + " from the list"); in doUseCodecs() 213 mCodecs.get(current).release(); in doUseCodecs() 214 mCodecs.remove(current); in doUseCodecs()
|
/cts/apps/CtsVerifier/src/com/android/cts/verifier/vr/ |
D | VrListenerVerifierActivity.java | 155 final InteractiveTestCase current = mTests[mCurrentIdx]; in selectNext() local 156 current.markWaiting(); in selectNext() 164 final InteractiveTestCase current = mTests[mCurrentIdx]; in runNext() local 168 Log.i(TAG, "Starting test: " + current.getClass().getSimpleName()); in runNext() 171 current.setUp(); in runNext() 172 current.test(); in runNext() 174 logWithStack("Failed " + current.getClass().getSimpleName() + " with: ", e); in runNext() 175 setFailed(current); in runNext() 179 current.tearDown(); in runNext() 181 logWithStack("Failed tearDown of " + current.getClass().getSimpleName() + in runNext() [all …]
|
/cts/hostsidetests/appsecurity/test-apps/SplitApp/ |
D | Android.mk | 22 LOCAL_SDK_VERSION := current 50 LOCAL_SDK_VERSION := current 77 LOCAL_SDK_VERSION := current 103 LOCAL_SDK_VERSION := current
|
/cts/tests/tests/accounts/CtsUnaffiliatedAccountAuthenticators/ |
D | Android.mk | 26 LOCAL_SDK_VERSION := current 41 LOCAL_SDK_VERSION := current
|
/cts/hostsidetests/appsecurity/test-apps/keysets/permDef/ |
D | Android.mk | 21 LOCAL_SDK_VERSION := current 35 LOCAL_SDK_VERSION := current
|
/cts/hostsidetests/appsecurity/test-apps/keysets/permUse/ |
D | Android.mk | 21 LOCAL_SDK_VERSION := current 36 LOCAL_SDK_VERSION := current
|
/cts/hostsidetests/appsecurity/test-apps/keysets/uBsharedUser/ |
D | Android.mk | 21 LOCAL_SDK_VERSION := current 36 LOCAL_SDK_VERSION := current
|
/cts/tests/accessibilityservice/src/android/accessibilityservice/cts/ |
D | AccessibilityFocusAndInputFocusSyncTest.java | 216 AccessibilityNodeInfo current = workQueue.poll(); in testOnlyOneNodeHasAccessibilityFocus() local 217 if (current.isAccessibilityFocused() && !current.equals(secondEditText)) { in testOnlyOneNodeHasAccessibilityFocus() 220 final int childCount = current.getChildCount(); in testOnlyOneNodeHasAccessibilityFocus() 222 AccessibilityNodeInfo child = current.getChild(i); in testOnlyOneNodeHasAccessibilityFocus()
|
/cts/tests/tests/widget/src/android/widget/cts/ |
D | ViewAnimatorTest.java | 107 int current = 0; in testShowNext() local 109 mViewAnimator.setDisplayedChild(current); in testShowNext() 110 assertEquals(current, mViewAnimator.getDisplayedChild()); in testShowNext() 240 int current = 3; in testShowPrevious() local 243 mViewAnimator.setDisplayedChild(current); in testShowPrevious() 244 assertEquals(current, mViewAnimator.getDisplayedChild()); in testShowPrevious() 270 int current = 0; in testGetCurrentView() local 271 mViewAnimator.setDisplayedChild(current); in testGetCurrentView()
|
/cts/tests/tests/hardware/ |
D | Android.mk | 31 LOCAL_SDK_VERSION := current 71 LOCAL_SDK_VERSION := current
|
/cts/libs/runner/ |
D | Android.mk | 25 LOCAL_SDK_VERSION := current
|
/cts/hostsidetests/net/aidl/ |
D | Android.mk | 19 LOCAL_SDK_VERSION := current
|
/cts/hostsidetests/usage/app/ |
D | Android.mk | 24 LOCAL_SDK_VERSION := current
|
/cts/libs/view/ |
D | Android.mk | 23 LOCAL_SDK_VERSION := current
|
/cts/tests/tests/externalservice/common/ |
D | Android.mk | 28 LOCAL_SDK_VERSION := current
|
/cts/tests/tests/assist/common/ |
D | Android.mk | 28 LOCAL_SDK_VERSION := current
|
/cts/tests/tests/voiceinteraction/common/ |
D | Android.mk | 28 LOCAL_SDK_VERSION := current
|
/cts/hostsidetests/compilation/app/ |
D | Android.mk | 24 LOCAL_SDK_VERSION := current
|