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

<<21222324252627282930>>

  /external/apache-harmony/logging/src/test/java/org/apache/harmony/logging/tests/java/util/logging/
ConsoleHandlerTest.java 49 private final PrintStream err = System.err;
61 System.setErr(new PrintStream(errSubstituteStream));
72 System.setErr(err);
242 * Test publish(), after system err is reset.
253 System.setErr(new PrintStream(new ByteArrayOutputStream()));
351 PrintStream backup = System.err;
354 System.setErr(new PrintStream(bos));
379 System.setErr(backup);
427 // System.out.println("filter called...");
437 // System.out.println("formatter called...")
    [all...]
MemoryHandlerTest.java 54 private final PrintStream err = System.err;
73 System.setErr(new PrintStream(errSubstituteStream));
98 System.setErr(err);
SocketHandlerTest.java 55 private final PrintStream err = System.err;
71 System.setErr(new PrintStream(errSubstituteStream));
87 System.setErr(err);
519 System.setErr(new PrintStream(new ByteArrayOutputStream()));
645 // System.out.println("filter called...");
655 // System.out.println("formatter called...");
747 e.printStackTrace(System.err);
756 e.printStackTrace(System.err);
  /external/apache-harmony/security/src/test/impl/java/org/apache/harmony/security/tests/provider/cert/
X509CRLImplTest.java 229 System.arraycopy(signatureValueBytes, 0,
252 System.arraycopy(tmp, 0, stamp, 0, tmp.length);
253 System.arraycopy(stamp, 0, encoding,
261 System.out.println("\nUSING: "+ c.getClass());
267 System.arraycopy(enc, enc.length - stamp.length,
548 System.out.println("getNonCriticalExtensionOIDs: "
556 System.out.println("getCriticalExtensionOIDs: "
573 System.out.println("hasUnsupportedCriticalExtension: "
  /external/apache-harmony/security/src/test/impl/java/org/apache/harmony/security/tests/provider/crypto/
DSAKeyFactoryImplTest.java 315 System.arraycopy(publicEncoding, 0, enc1, 0, 20);
356 System.arraycopy(publicEncoding, 0, enc1, 0, publicEncoding.length);
440 System.arraycopy(privateEncoding, 0, enc1, 0, 20);
481 System.arraycopy(privateEncoding, 0, enc1, 0, privateEncoding.length);
629 System.arraycopy(privateEncoding, 0, enc1, 0, lng); // enc1 contains incorrect encoding
665 System.arraycopy(publicEncoding, 0, enc2, 0, lng);; // enc2 contains incorrect encoding
761 System.arraycopy(publicEncoding, 0, enc1, 0, publicEncoding.length);
805 System.arraycopy(privateEncoding, 0, enc1, 0, privateEncoding.length);
  /external/apache-harmony/security/src/test/support/common/java/org/apache/harmony/security/tests/support/
TestCertUtils.java 464 System.arraycopy(asubj, 0, data, 0, asubj.length);
466 System
622 System.arraycopy(data, 0, tmp, 0, data.length);
623 System.arraycopy(chunk, 0, tmp, data.length, len);
634 System.arraycopy(data, 0, subjNameData, 0, subjNameData.length);
636 System.arraycopy(data, pos + 1, issNameData, 0, issNameData.length);
776 // System.out.print("#"+i+": ");
778 // System.out.print(""+counts[j]+"|");
780 // System.out.println();
798 // System.out.println("generated: "+name)
    [all...]
  /external/apache-harmony/x-net/src/test/impl/java.injected/org/apache/harmony/xnet/provider/jsse/
SSLSocketImplTest.java 48 System.out.println("");
49 System.out.println("========================");
50 System.out.println("====== Running the test: " + getName());
401 System.arraycopy(supported, 0,
450 System.arraycopy(supported, 0,
452 System.arraycopy(supported, i,
510 System.arraycopy(supported, i,
542 //System.out.println("Checking of "+enabled[i]);
560 System.arraycopy(supported, 0,
562 System.arraycopy(supported, i
    [all...]
  /external/apache-xml/src/main/java/org/apache/xml/dtm/ref/
DTMDefaultBaseIterators.java     [all...]
  /external/bouncycastle/src/main/java/org/bouncycastle/jce/provider/
PKIXNameConstraintValidator.java 410 System.arraycopy(ip, 0, temp, 0, ipLength);
411 System.arraycopy(subnetMask, 0, temp, ipLength, ipLength);
430 System.arraycopy(ipWithSubmask1, 0, ip1, 0, ipLength);
431 System.arraycopy(ipWithSubmask1, ipLength, subnetmask1, 0, ipLength);
435 System.arraycopy(ipWithSubmask2, 0, ip2, 0, ipLength);
436 System.arraycopy(ipWithSubmask2, ipLength, subnetmask2, 0, ipLength);
619 System.arraycopy(constraint, ipLength, subnetMask, 0, ipLength);
    [all...]
  /external/bouncycastle/src/main/java/org/bouncycastle/math/ec/
Tnaf.java 383 System.arraycopy(u, 0, tnaf, 0, length);
490 // System.out.println(i + ": " + u2);
491 // System.out.println();
528 // System.out.println("mu = " + mu);
529 // System.out.println("tw = " + tw);
  /external/javassist/src/main/javassist/bytecode/
AnnotationsAttribute.java 50 * System.out.println("@Author(name=" + s + ")");
210 System.arraycopy(annotations, 0, newlist, 0, annotations.length);
  /external/nist-sip/java/gov/nist/javax/sip/stack/
UDPMessageChannel.java 323 System.arraycopy(bytes, 0, msgBytes, 0, packetLength);
336 this.receptionTime = System.currentTimeMillis();
629 long time = System.currentTimeMillis();
    [all...]
  /external/protobuf/java/src/main/java/com/google/protobuf/
CodedInputStream.java 740 System.arraycopy(buffer, bufferPos, bytes, 0, size);
750 System.arraycopy(buffer, bufferPos, bytes, 0, pos);
759 System.arraycopy(buffer, 0, bytes, pos, bufferSize);
765 System.arraycopy(buffer, 0, bytes, pos, size - pos);
813 System.arraycopy(buffer, originalBufferPos, bytes, 0, pos);
817 System.arraycopy(chunk, 0, bytes, pos, chunk.length);
  /external/protobuf/java/src/main/java/com/google/protobuf/micro/
CodedInputStreamMicro.java 676 System.arraycopy(buffer, bufferPos, bytes, 0, size);
686 System.arraycopy(buffer, bufferPos, bytes, 0, pos);
695 System.arraycopy(buffer, 0, bytes, pos, bufferSize);
701 System.arraycopy(buffer, 0, bytes, pos, size - pos);
751 System.arraycopy(buffer, originalBufferPos, bytes, 0, pos);
756 System.arraycopy(chunk, 0, bytes, pos, chunk.length);
  /external/protobuf/java/src/test/java/com/google/protobuf/
CodedInputStreamTest.java 116 System.arraycopy(data, 0, longerData, 0, data.length);
334 System.out.printf("testSkipRawBytesPastEndOfBufferWithLimit: E ...\n");
341 System.out.printf("testSkipRawBytesPastEndOfBufferWithLimit: limit=%d\n", limit);
351 System.out.printf("testSkipRawBytesPastEndOfBufferWithLimit: X ...\n");
  /external/v8/src/
d8-posix.cc 161 // bail out of the System() function early. If you don't ever do a waitpid on
195 "os.system(): String conversion of program name failed";
210 "os.system(): String conversion of argument failed.";
239 // Gets the optional timeouts from the arguments to the system() call.
247 ThrowException(String::New("system: Argument 4 must be a number"));
255 ThrowException(String::New("system: Argument 3 must be a number"));
457 // Implementation of the system() function (see d8.h for details).
458 Handle<Value> Shell::System(const Arguments& args) {
466 return ThrowException(String::New("system: Argument 2 must be an array"));
473 return ThrowException(String::New("Too many arguments to system()"));
    [all...]
  /frameworks/base/core/java/android/content/
ContentProviderOperation.java 327 System.arraycopy(mSelectionArgs, 0, newArgs, 0, mSelectionArgs.length);
573 System.arraycopy(selectionArgs, 0, mSelectionArgs, 0, selectionArgs.length);
  /frameworks/base/core/java/android/net/
NetworkStatsHistory.java 375 System.arraycopy(bucketStart, index, bucketStart, dstPos, length);
376 if (activeTime != null) System.arraycopy(activeTime, index, activeTime, dstPos, length);
377 if (rxBytes != null) System.arraycopy(rxBytes, index, rxBytes, dstPos, length);
378 if (rxPackets != null) System.arraycopy(rxPackets, index, rxPackets, dstPos, length);
379 if (txBytes != null) System.arraycopy(txBytes, index, txBytes, dstPos, length);
380 if (txPackets != null) System.arraycopy(txPackets, index, txPackets, dstPos, length);
381 if (operations != null) System.arraycopy(operations, index, operations, dstPos, length);
  /frameworks/base/core/java/android/text/
TextLine.java     [all...]
  /frameworks/base/core/java/android/util/
JsonReader.java 732 System.arraycopy(buffer, pos, buffer, 0, limit);
    [all...]
  /frameworks/base/core/java/android/view/
WindowManagerImpl.java 39 * Low-level communication with the global system window manager. It implements
264 System.arraycopy(old, 0, mViews, 0, index-1);
267 System.arraycopy(old, 0, mRoots, 0, index-1);
270 System.arraycopy(old, 0, mParams, 0, index-1);
525 System.arraycopy(src, 0, dst, 0, index);
528 System.arraycopy(src, index+1, dst, index, src.length-index-1);
  /frameworks/base/core/java/android/widget/
TableLayout.java 507 System.arraycopy(widths, 0, mMaxWidths, 0, newLength);
517 System.arraycopy(oldMaxWidths, 0, mMaxWidths, 0,
519 System.arraycopy(widths, oldMaxWidths.length,
  /frameworks/base/core/java/com/android/internal/os/
ZygoteConnection.java 26 import dalvik.system.PathClassLoader;
27 import dalvik.system.Zygote;
523 System.arraycopy(args, curArg, remainingArgs, 0,
602 // System UID is restricted, except in factory test mode
615 "System UID may not launch process with UID < "
640 * Applies debugger system properties to the zygote arguments.
761 * Applies invoke-with system properties to the zygote arguments.
824 newStderr = System.err;
854 System.arraycopy(parsedArgs.remainingArgs, 1,
    [all...]
  /frameworks/base/graphics/java/android/renderscript/
Mesh.java 565 System.arraycopy(mVtxData, 0, t, 0, mVtxData.length);
707 System.arraycopy(mIndexData, 0, t, 0, mIndexData.length);
  /frameworks/base/media/tests/MediaFrameworkTest/src/com/android/mediaframeworktest/functional/videoeditor/
MediaItemThumbnailTest.java 67 System.gc();
    [all...]

Completed in 1388 milliseconds

<<21222324252627282930>>