Home
last modified time | relevance | path

Searched refs:copyArray (Results 1 – 2 of 2) sorted by relevance

/frameworks/opt/net/wifi/service/java/com/android/server/wifi/aware/
DWifiAwareNativeApi.java435 copyArray(dest, req.addr); in sendMessage()
629 copyArray(peer, req.peerDiscMacAddr); in initiateDataPath()
638 copyArray(pmk, req.securityConfig.pmk); in initiateDataPath()
702 copyArray(pmk, req.securityConfig.pmk); in respondToDataPathRequest()
800 private void copyArray(byte[] from, byte[] to) { in copyArray() method in WifiAwareNativeApi
/frameworks/base/core/java/com/android/internal/os/
DBatteryStatsImpl.java975 mCounts = copyArray(mPluggedCounts, mCounts); in LongSamplingCounterArray()
994 mUnpluggedCounts = copyArray(mPluggedCounts, mUnpluggedCounts); in onTimeStarted()
999 mPluggedCounts = copyArray(mCounts, mPluggedCounts); in onTimeStopped()
1004 long[] val = copyArray(mTimeBase.isRunning() ? mCounts : mPluggedCounts, null); in getCountsLocked()
1058 mLoadedCounts = copyArray(mCounts, mLoadedCounts); in readSummaryFromParcelLocked()
1059 mUnpluggedCounts = copyArray(mCounts, mUnpluggedCounts); in readSummaryFromParcelLocked()
1060 mPluggedCounts = copyArray(mCounts, mPluggedCounts); in readSummaryFromParcelLocked()
1117 private static long[] copyArray(long[] src, long[] dest) { in copyArray() method in BatteryStatsImpl.LongSamplingCounterArray