Home
last modified time | relevance | path

Searched refs:toIntArray (Results 1 – 6 of 6) sorted by relevance

/packages/modules/NetworkStack/tests/unit/src/android/net/dhcp/
DDhcpServingParamsTest.java180 parcel.defaultRouters = toIntArray(TEST_DEFAULT_ROUTERS); in testFromParcelableObject()
182 parcel.dnsServers = toIntArray(TEST_DNS_SERVERS); in testFromParcelableObject()
186 parcel.excludedAddrs = toIntArray(TEST_EXCLUDED_ADDRS); in testFromParcelableObject()
210 private static int[] toIntArray(Collection<Inet4Address> addrs) { in toIntArray() method in DhcpServingParamsTest
DDhcpServerTest.java377 private int[] toIntArray(@NonNull Collection<Inet4Address> addrs) { in toIntArray() method in DhcpServerTest
387 params.defaultRouters = toIntArray(defaultRouters); in updateServingParams()
388 params.dnsServers = toIntArray(dnsServers); in updateServingParams()
389 params.excludedAddrs = toIntArray(excludedAddrs); in updateServingParams()
/packages/services/Car/car-lib/src/android/car/hardware/property/
DCarPropertyManager.java417 return carProp != null ? toIntArray(carProp.getValue()) : new int[0]; in getIntArrayProperty()
420 private static int[] toIntArray(Integer[] input) { in toIntArray() method in CarPropertyManager
/packages/services/Car/service/src/com/android/car/
DAppFocusService.java98 return toIntArray(mActiveAppTypes); in getActiveAppTypes()
485 private static int[] toIntArray(Set<Integer> intSet) { in toIntArray() method in AppFocusService
DCarServiceUtils.java152 public static int[] toIntArray(List<Integer> list) { in toIntArray() method in CarServiceUtils
/packages/services/Car/service/src/com/android/car/hal/
DVehicleHal.java21 import static com.android.car.CarServiceUtils.toIntArray;
357 return (T) toIntArray(propValue.value.int32Values); in get()