HomeSort by relevance Sort by last modified time
    Searched defs:System (Results 576 - 600 of 839) sorted by null

<<21222324252627282930>>

  /frameworks/base/services/java/com/android/server/
NativeDaemonConnector.java 167 System.arraycopy(buffer, start, buffer, 0, remaining);
  /frameworks/base/services/java/com/android/server/am/
PendingIntentRecord.java 220 System.arraycopy(key.allIntents, 0, allIntents, 0,
223 System.arraycopy(key.allResolvedTypes, 0, allResolvedTypes, 0,
335 sb.append(Integer.toHexString(System.identityHashCode(this)));
  /frameworks/base/services/tests/servicestests/src/com/android/server/
ThrottleServiceTest.java 202 final long baseTime = System.currentTimeMillis();
261 * {@link System#currentTimeMillis()}.
264 expectTime(System.currentTimeMillis());
  /frameworks/base/telephony/java/com/android/internal/telephony/cdma/
CdmaSMSDispatcher.java 239 System.arraycopy(pdu, index, userData, 0, pdu.length - index);
370 System.arraycopy(origPdu, index, omaPdu, 0, omaPdu.length);
  /frameworks/base/tools/layoutlib/bridge/src/com/android/layoutlib/bridge/impl/
FontLoader.java 85 // parse the system fonts
369 System.arraycopy(buffer, i+1, buffer, i, length - i - 1);
  /frameworks/ex/common/java/com/android/common/widget/
CompositeCursorAdapter.java 91 System.arraycopy(mPartitions, 0, newAdapters, 0, mSize);
105 System.arraycopy(mPartitions, partitionIndex + 1, mPartitions, partitionIndex,
GroupingListAdapter.java 206 System.arraycopy(mGroupMetadata, 0, array, 0, mGroupCount);
  /libcore/dalvik/src/main/java/dalvik/system/profiler/
SamplingProfiler.java 17 package dalvik.system.profiler;
54 * AsciiHprofWriter.write(profiler.getHprofData(), System.out);
165 if ("Dalvik Core Library".equals(System.getProperty("java.specification.name"))) {
166 String className = "dalvik.system.profiler.DalvikThreadSampler";
170 System.out.println("Problem creating " + className + ": " + e);
284 hprofData.setStartMillis(System.currentTimeMillis());
  /libcore/luni/src/main/java/java/lang/
AbstractStringBuilder.java 95 System.arraycopy(value, 0, newData, 0, count);
116 System.arraycopy(chars, 0, value, count, chars.length);
126 System.arraycopy(chars, offset, value, count, length);
172 System.arraycopy(other.value, start, value, count, length);
231 System.arraycopy(value, end, value, start, length);
234 System.arraycopy(value, 0, newData, 0, start);
235 System.arraycopy(value, end, newData, start, length);
254 System.arraycopy(value, index + 1, value, index, length);
257 System.arraycopy(value, 0, newData, 0, index);
258 System.arraycopy(value, index + 1, newData, index, length)
    [all...]
ThreadGroup.java 108 * Initialize the special "system" ThreadGroup. Was "main" in Harmony,
112 this.name = "system";
448 * Outputs to {@code System.out} a text representation of the
455 System.out.println();
460 * Outputs to {@code System.out}a text representation of the
469 System.out.println(this.toString());
475 System.out.println(thread);
487 System.out.print(" "); // 4 spaces for each level
695 // No parent group, has to be 'system' Thread Group
696 e.printStackTrace(System.err)
    [all...]
  /libcore/luni/src/main/java/java/text/
Bidi.java 275 System.arraycopy(text, textStart, realText, 0, paragraphLength);
284 System.arraycopy(temp.offsetLevel, 0, realEmbeddings, 0, paragraphLength);
562 System.arraycopy(levels, levelStart, realLevels, 0, count);
571 System.arraycopy(result.toArray(), 0, objects, objectStart, count);
  /libcore/luni/src/main/java/java/util/
ArrayDeque.java 128 System.arraycopy(elements, p, a, 0, r);
129 System.arraycopy(elements, 0, a, r, p);
144 System.arraycopy(elements, head, a, 0, size());
147 System.arraycopy(elements, head, a, 0, headPortionLen);
148 System.arraycopy(elements, 0, a, headPortionLen, tail);
516 System.arraycopy(elements, h, elements, h + 1, front);
518 System.arraycopy(elements, 0, elements, 1, i);
520 System.arraycopy(elements, h, elements, h + 1, mask - h);
527 System.arraycopy(elements, i + 1, elements, i, back);
530 System.arraycopy(elements, i + 1, elements, i, mask - i)
    [all...]
ArrayList.java 96 System.arraycopy(a, 0, newArray, 0, a.length);
117 System.arraycopy(a, 0, newArray, 0, s);
147 System.arraycopy(a, index, a, index + 1, s - index);
151 System.arraycopy(a, 0, newArray, 0, index);
152 System.arraycopy(a, index, newArray, index + 1, s - index);
195 System.arraycopy(a, 0, newArray, 0, s);
198 System.arraycopy(newPart, 0, a, s, newPartSize);
232 System.arraycopy(a, index, a, index + newPartSize, s - index);
236 System.arraycopy(a, 0, newArray, 0, index);
237 System.arraycopy(a, index, newArray, index + newPartSize, s-index)
    [all...]
Arrays.java 131 System.arraycopy(a, 0, contents, 0, size);
    [all...]
BitSet.java 143 System.arraycopy(bits, 0, newBits, 0, longCount);
494 System.arraycopy(bs.bits, minSize, bits, minSize, maxSize - minSize);
510 System.arraycopy(bs.bits, minSize, bits, minSize, maxSize - minSize);
542 //System.err.println("BitSet[longCount=" + longCount + ",bits=" + Arrays.toString(bits) + "]");
TimSort.java 281 default: System.arraycopy(a, left, a, left + 1, n);
652 System.arraycopy(a, base1, tmp, 0, len1);
661 System.arraycopy(tmp, cursor1, a, dest, len1);
665 System.arraycopy(a, cursor2, a, dest, len2);
707 System.arraycopy(tmp, cursor1, a, dest, count1);
720 System.arraycopy(a, cursor2, a, dest, count2);
740 System.arraycopy(a, cursor2, a, dest, len2);
748 System.arraycopy(tmp, cursor1, a, dest, len1);
769 System.arraycopy(a, base2, tmp, 0, len2);
778 System.arraycopy(tmp, 0, a, dest - (len2 - 1), len2)
    [all...]
Timer.java 76 System.arraycopy(timers, 0, appendedTimers, 0, size);
220 long currentTime = System.currentTimeMillis();
270 task.when = System.currentTimeMillis()
438 long delay = when.getTime() - System.currentTimeMillis();
504 long delay = when.getTime() - System.currentTimeMillis();
551 long delay = when.getTime() - System.currentTimeMillis();
564 long when = delay + System.currentTimeMillis();
Vector.java 188 System.arraycopy(elementData, location, elementData, location
310 System.arraycopy(elementData, 0, elements, 0, elementCount);
449 System.arraycopy(elementData, 0, newData, 0, elementCount);
467 System.arraycopy(elementData, 0, newData, 0, elementCount);
487 System.arraycopy(elementData, 0, newData, 0, elementCount);
583 System.arraycopy(elementData, location, elementData,
699 System.arraycopy(elementData, location + 1, elementData,
799 System.arraycopy(elementData, location + 1, elementData,
829 System.arraycopy(elementData, end, elementData, start,
973 System.arraycopy(elementData, 0, result, 0, elementCount)
    [all...]
  /libcore/luni/src/main/java/java/util/concurrent/
CopyOnWriteArrayList.java 233 System.arraycopy(snapshot, 0, contents, 0, snapshot.length);
268 System.arraycopy(elements, 0, newElements, 0, elements.length);
276 System.arraycopy(elements, 0, newElements, 0, index);
278 System.arraycopy(elements, index, newElements, index + 1, elements.length - index);
289 System.arraycopy(elements, 0, newElements, 0, index);
290 System.arraycopy(toAdd, 0, newElements, index, toAdd.length);
291 System.arraycopy(elements, index,
309 System.arraycopy(elements, 0, newElements, 0, elements.length);
381 System.arraycopy(elements, 0, newElements, 0, i);
393 System.arraycopy(elements, to, newElements, newSize, elements.length - to)
    [all...]
  /libcore/luni/src/main/java/java/util/jar/
Manifest.java 244 System.arraycopy(buf, pos, buffer, 0, available);
  /libcore/luni/src/main/java/java/util/zip/
ZipInputStream.java 319 System.arraycopy(buf, lastRead, buffer, offset, toRead);
  /libcore/luni/src/main/java/org/apache/harmony/security/asn1/
BerInputStream.java 126 System.arraycopy(buffer, 0, newBuffer, 0, offset);
662 System.arraycopy(buffer, tagOffset, encoded, 0, encoded.length);
791 System.arraycopy(buffer, 0, newBuffer, 0, offset);
813 System.arraycopy(pool[0], 0, newPool[0], 0, pool[0].length);
814 System.arraycopy(pool[1], 0, newPool[1], 0, pool[0].length);
  /libcore/luni/src/main/java/org/apache/harmony/security/provider/cert/
X509CertFactoryImpl.java 525 System.arraycopy(buff, 0, newbuff, 0, size);
    [all...]
X509CertImpl.java 134 checkValidity(System.currentTimeMillis());
  /libcore/luni/src/main/java/org/apache/harmony/xnet/provider/jsse/
ClientHandshakeImpl.java 297 session.lastAccessedTime = System.currentTimeMillis();
303 session.lastAccessedTime = System.currentTimeMillis();
349 session.lastAccessedTime = System.currentTimeMillis();
431 System.arraycopy(clientHello.client_version, 0, preMasterSecret, 0, 2);

Completed in 1424 milliseconds

<<21222324252627282930>>