Searched refs:arrays (Results 1 – 3 of 3) sorted by relevance
59 byte[][] arrays = new byte[numArrays][]; in doInBackground()60 for (int i = 0; i < arrays.length; i++) { in doInBackground()61 Log.i(TAG, "Allocating array " + i + " of " + arrays.length in doInBackground()63 arrays[i] = new byte[ARRAY_BYTES_SIZE]; in doInBackground()
275 String[] arrays = details.split(LOG_SEPARATOR); in parseDetails() local276 PerfResultDetail[] rs = new PerfResultDetail[arrays.length]; in parseDetails()277 for (int i = 0; i < arrays.length; i++) { in parseDetails()278 String[] elems = arrays[i].split(LOG_ELEM_SEPARATOR); in parseDetails()280 Log.w(TAG, "wrong message " + arrays[i]); in parseDetails()
1555 protected static byte[] concat(byte[]... arrays) { in concat() argument1557 for (byte[] array : arrays) { in concat()1563 for (byte[] array : arrays) { in concat()