Home
last modified time | relevance | path

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

12345678910>>...17

/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.mk38 $(eval $(call build_xml_api_file,current.api,frameworks/base/api/current.txt))
39 $(eval $(call build_xml_api_file,system-current.api,frameworks/base/api/system-current.txt))
41 $(eval $(call build_xml_api_file,apache-http-legacy-current.api,external/apache-http/api/current.tx…
42 $(eval $(call build_xml_api_file,android-test-base-current.api,frameworks/base/test-base/api/curren…
43 $(eval $(call build_xml_api_file,android-test-mock-current.api,frameworks/base/test-mock/api/curren…
44 …eval $(call build_xml_api_file,android-test-runner-current.api,frameworks/base/test-runner/api/cur…
45 $(eval $(call build_xml_api_file,car-system-current.api,packages/services/Car/car-lib/api/system-cu…
/cts/tests/signature/api-check/current-api/
DAndroid.mk22 current.api \
23 android-test-base-current.api \
24 android-test-mock-current.api \
25 android-test-runner-current.api \
/cts/hostsidetests/gputools/layers/
DAndroid.mk25 LOCAL_SDK_VERSION := current
36 LOCAL_SDK_VERSION := current
47 LOCAL_SDK_VERSION := current
58 LOCAL_SDK_VERSION := current
69 LOCAL_SDK_VERSION := current
80 LOCAL_SDK_VERSION := current
89 LOCAL_SDK_VERSION := current
111 LOCAL_SDK_VERSION := current
/cts/tests/accessibilityservice/src/android/accessibilityservice/cts/utils/
DAsyncUtils.java62 Throwable current = ex; in awaitCancellation() local
63 while (current != null) { in awaitCancellation()
64 if (current instanceof CancellationException) { in awaitCancellation()
65 return (CancellationException) current; in awaitCancellation()
67 current = current.getCause(); in awaitCancellation()
/cts/tests/signature/api-check/system-api/
DAndroid.mk17 all_system_api_files := system-current.api system-removed.api
42 current.api \
43 android-test-mock-current.api \
44 android-test-runner-current.api \
/cts/tests/signature/api-check/android-test-runner-current-api/
DAndroid.mk22 android-test-base-current.api \
23 android-test-mock-current.api \
24 android-test-runner-current.api \
/cts/hostsidetests/appsecurity/test-apps/UseEmbeddedDexApp/
DAndroid.mk27 LOCAL_SDK_VERSION := current
44 LOCAL_SDK_VERSION := current
60 LOCAL_SDK_VERSION := current
81 LOCAL_SDK_VERSION := current
97 LOCAL_SDK_VERSION := current
/cts/apps/CtsVerifier/src/com/android/cts/verifier/vr/
DVrListenerVerifierActivity.java126 final InteractiveTestCase current = mTests[mCurrentIdx]; in onResume() local
127 final Status currentTestStatus = current.getStatus(); in onResume()
144 final InteractiveTestCase current = mTests[mCurrentIdx]; in waitForPreviousRunningTest() local
158 current.markPassed(); in waitForPreviousRunningTest()
161 current.markFailed(); in waitForPreviousRunningTest()
200 final InteractiveTestCase current = mTests[mCurrentIdx]; in selectNext() local
201 current.markWaiting(); in selectNext()
209 final InteractiveTestCase current = mTests[mCurrentIdx]; in runNext() local
213 Log.i(TAG, "Starting test: " + current.getClass().getSimpleName()); in runNext()
217 current.setUp(); in runNext()
[all …]
/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/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/tests/location/src/android/location/cts/psedorange/
DGpsTime.java124 ZonedDateTime current = ZonedDateTime.now(zone); in now() local
125 return fromUtc(current); in now()
151 ZonedDateTime current = ZonedDateTime.now(zone); in fromYumaWeekTow()
152 GpsTime refTime = new GpsTime(current); in fromYumaWeekTow()
225 ZonedDateTime current = ZonedDateTime.now(zone);
227 long gpsTimeMillis = getMillisFromZonedDateTime(current)
228 + TimeUnit.SECONDS.toMillis(getLeapSecond(current));
/cts/tests/tests/content/src/android/content/pm/cts/
DProviderInfoTest.java48 ProviderInfo current; in testProviderInfo() local
50 current = providerIterator.next(); in testProviderInfo()
51 if (current.name.equals(PROVIDER_NAME)) { in testProviderInfo()
52 checkProviderInfoMethods(current, p); in testProviderInfo()
DPackageManagerTest.java175 String current; in checkActivityInfoName() local
177 current = infoIterator.next().activityInfo.name; in checkActivityInfoName()
178 if (current.equals(expectedName)) { in checkActivityInfoName()
189 String current; in checkServiceInfoName() local
191 current = infoIterator.next().serviceInfo.name; in checkServiceInfoName()
192 if (current.equals(expectedName)) { in checkServiceInfoName()
212 String current; in checkProviderInfoName() local
214 current = infoIterator.next().name; in checkProviderInfoName()
215 if (current.equals(expectedName)) { in checkProviderInfoName()
227 String current; in checkInstrumentationInfoName() local
[all …]
/cts/hostsidetests/appsecurity/test-apps/SplitApp/
DAndroid.mk29 LOCAL_SDK_VERSION := current
55 LOCAL_SDK_VERSION := current
85 LOCAL_SDK_VERSION := current
114 LOCAL_SDK_VERSION := current
149 LOCAL_SDK_VERSION := current
/cts/tests/tests/appwidget/packages/widgetprovider/
DAndroid.mk31 LOCAL_SDK_VERSION := current
52 LOCAL_SDK_VERSION := current
73 LOCAL_SDK_VERSION := current
/cts/hostsidetests/gputools/apps/
DAndroid.mk26 LOCAL_SDK_VERSION := current
34 LOCAL_SDK_VERSION := current
57 LOCAL_SDK_VERSION := current
/cts/tests/signature/api-check/apache-http-legacy-uses-library-api/
DAndroid.mk22 current.api \
23 apache-http-legacy-current.api \
/cts/tests/signature/api-check/apache-http-legacy-27-api/
DAndroid.mk22 current.api \
23 apache-http-legacy-current.api \
/cts/tests/tests/appwidget/packages/launchermanifest/
DAndroid.mk31 LOCAL_SDK_VERSION := current
54 LOCAL_SDK_VERSION := current
75 LOCAL_SDK_VERSION := current
/cts/tests/signature/api-check/system-annotation/
DAndroid.mk23 system-current.api \
25 car-system-current.api \
/cts/hostsidetests/appsecurity/test-apps/keysets/uA/
DAndroid.bp19 sdk_version: "current",
37 sdk_version: "current",
55 sdk_version: "current",
73 sdk_version: "current",
/cts/hostsidetests/appsecurity/test-apps/rro/OverlayAll/
DAndroid.bp21 sdk_version: "current",
47 sdk_version: "current",
60 sdk_version: "current",
/cts/hostsidetests/usage/app/
DAndroid.mk24 LOCAL_SDK_VERSION := current
42 LOCAL_SDK_VERSION := current
/cts/hostsidetests/os/test-apps/StaticSharedNativeLibProvider/
DAndroid.mk26 LOCAL_SDK_VERSION := current
58 LOCAL_SDK_VERSION := current

12345678910>>...17