Home
last modified time | relevance | path

Searched refs:current (Results 1 – 25 of 312) sorted by relevance

12345678910>>...13

/cts/tests/tests/net/jni/
DNativeDnsJni.c43 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/
DAndroid.mk26 LOCAL_MODULE := cts-current-api
27 LOCAL_MODULE_STEM := current.api
35 $(LOCAL_BUILT_MODULE) : frameworks/base/api/current.txt | $(APICHECK)
45 LOCAL_MODULE := cts-system-current-api
46 LOCAL_MODULE_STEM := system-current.api
54 $(LOCAL_BUILT_MODULE) : frameworks/base/api/system-current.txt | $(APICHECK)
/cts/tests/tests/content/src/android/content/pm/cts/
DPackageManagerTest.java125 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 …]
DProviderInfoTest.java46 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/
DAndroid.mk20 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/
DAndroid.mk21 LOCAL_SDK_VERSION := current
36 LOCAL_SDK_VERSION := current
51 LOCAL_SDK_VERSION := current
/cts/tests/openglperf2/jni/primitive/shaderperf/
DShaderPerfRenderer.cpp84 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/nativehardware/
DAndroid.mk32 LOCAL_SDK_VERSION := current
58 LOCAL_SDK_VERSION := current
88 LOCAL_SDK_VERSION := current
/cts/tests/tests/media/src/android/media/cts/
DResourceManagerTestActivityBase.java204 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/tests/sensor/
DAndroid.mk32 LOCAL_SDK_VERSION := current
60 LOCAL_SDK_VERSION := current
90 LOCAL_SDK_VERSION := current
/cts/apps/CtsVerifier/src/com/android/cts/verifier/vr/
DVrListenerVerifierActivity.java155 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/
DAndroid.mk22 LOCAL_SDK_VERSION := current
50 LOCAL_SDK_VERSION := current
77 LOCAL_SDK_VERSION := current
103 LOCAL_SDK_VERSION := current
/cts/tests/tests/appwidget/packages/launchermanifest/
DAndroid.mk31 LOCAL_SDK_VERSION := current
54 LOCAL_SDK_VERSION := current
75 LOCAL_SDK_VERSION := current
/cts/hostsidetests/appsecurity/test-apps/keysets/permDef/
DAndroid.mk21 LOCAL_SDK_VERSION := current
35 LOCAL_SDK_VERSION := current
/cts/hostsidetests/appsecurity/test-apps/keysets/uBsharedUser/
DAndroid.mk21 LOCAL_SDK_VERSION := current
36 LOCAL_SDK_VERSION := current
/cts/hostsidetests/appsecurity/test-apps/keysets/permUse/
DAndroid.mk21 LOCAL_SDK_VERSION := current
36 LOCAL_SDK_VERSION := current
/cts/tests/accessibilityservice/src/android/accessibilityservice/cts/
DAccessibilityFocusAndInputFocusSyncTest.java218 AccessibilityNodeInfo current = workQueue.poll(); in testOnlyOneNodeHasAccessibilityFocus() local
219 if (current.isAccessibilityFocused() && !current.equals(secondEditText)) { in testOnlyOneNodeHasAccessibilityFocus()
222 final int childCount = current.getChildCount(); in testOnlyOneNodeHasAccessibilityFocus()
224 AccessibilityNodeInfo child = current.getChild(i); in testOnlyOneNodeHasAccessibilityFocus()
/cts/tests/tests/shortcutmanager/packages/packagemanifest/
DAndroid.mk37 LOCAL_SDK_VERSION := current
67 LOCAL_SDK_VERSION := current
97 LOCAL_SDK_VERSION := current
/cts/tests/tests/shortcutmanager/packages/launchermanifest/
DAndroid.mk38 LOCAL_SDK_VERSION := current
68 LOCAL_SDK_VERSION := current
98 LOCAL_SDK_VERSION := current
/cts/hostsidetests/shortcuts/deviceside/upgrade/
DAndroid.mk46 LOCAL_SDK_VERSION := current
77 LOCAL_SDK_VERSION := current
/cts/tests/tests/media/libmediandkjni/
DAndroid.mk45 LOCAL_SDK_VERSION := current
78 LOCAL_SDK_VERSION := current
/cts/tests/tests/widget/src/android/widget/cts/
DViewAnimatorTest.java110 int current = 0; in testShowNext() local
112 mViewAnimator.setDisplayedChild(current); in testShowNext()
113 assertEquals(current, mViewAnimator.getDisplayedChild()); in testShowNext()
248 int current = 3; in testShowPrevious() local
251 mViewAnimator.setDisplayedChild(current); in testShowPrevious()
252 assertEquals(current, mViewAnimator.getDisplayedChild()); in testShowPrevious()
279 int current = 0; in testGetCurrentView() local
280 mViewAnimator.setDisplayedChild(current); in testGetCurrentView()
/cts/hostsidetests/services/activityandwindowmanager/windowmanager/alertwindowappsdk25/src/android/server/alertwindowappsdk25/
DAlertWindowTestBaseActivity.java73 for (int current : alertWindowTypes) { in isSystemAlertWindowType()
74 if (current == type) { in isSystemAlertWindowType()
/cts/hostsidetests/os/test-apps/HostLinkVerificationApp/
DAndroid.mk22 LOCAL_SDK_VERSION := current
/cts/libs/runner/
DAndroid.mk25 LOCAL_SDK_VERSION := current

12345678910>>...13