Searched defs:copyArray (Results 1 - 2 of 2) sorted by relevance

/frameworks/opt/net/wifi/service/java/com/android/server/wifi/aware/
H A DWifiAwareNativeApi.java551 copyArray(dest, req.addr);
745 copyArray(peer, req.peerDiscMacAddr);
754 copyArray(pmk, req.securityConfig.pmk);
827 copyArray(pmk, req.securityConfig.pmk);
963 private void copyArray(byte[] from, byte[] to) { method in class:WifiAwareNativeApi
965 Log.e(TAG, "copyArray error: from=" + from + ", to=" + to);
/frameworks/base/core/java/com/android/internal/os/
H A DBatteryStatsImpl.java1047 mCounts = copyArray(mPluggedCounts, mCounts);
1066 mUnpluggedCounts = copyArray(mPluggedCounts, mUnpluggedCounts);
1071 mPluggedCounts = copyArray(mCounts, mPluggedCounts);
1076 long[] val = copyArray(mTimeBase.isRunning() ? mCounts : mPluggedCounts, null);
1134 mLoadedCounts = copyArray(mCounts, mLoadedCounts);
1135 mUnpluggedCounts = copyArray(mCounts, mUnpluggedCounts);
1136 mPluggedCounts = copyArray(mCounts, mPluggedCounts);
1193 private static long[] copyArray(long[] src, long[] dest) { method in class:BatteryStatsImpl.LongSamplingCounterArray

Completed in 147 milliseconds