HomeSort by relevance Sort by last modified time
    Searched refs:System (Results 851 - 875 of 2091) sorted by null

<<31323334353637383940>>

  /cts/tools/vm-tests/src/util/build/
DexBuildStep.java 50 System.err.println("exception while dexing "
  /dalvik/dx/src/com/android/dx/ssa/
SsaConverter.java 314 System.out.println("defsites");
320 System.out.println(sb);
366 System.out.println("phisites");
372 System.out.println(sb);
  /dalvik/libcore/dalvik/src/main/java/dalvik/system/
SamplingProfiler.java 17 package dalvik.system;
129 long start = System.nanoTime();
131 long elapsed = System.nanoTime() - start;
277 long start = System.nanoTime();
279 long elapsed = System.nanoTime() - start;
  /dalvik/libcore/luni/src/main/java/java/io/
BufferedInputStream.java 172 System.arraycopy(localBuf, 0, newbuf, 0, localBuf.length);
177 System.arraycopy(localBuf, markpos, localBuf, 0, localBuf.length
323 System.arraycopy(localBuf, pos, buffer, offset, copylength);
359 System.arraycopy(localBuf, pos, buffer, offset, read);
ByteArrayInputStream.java 197 System.arraycopy(buf, pos, b, offset, copylen);
PipedReader.java 254 System.arraycopy(this.buffer, out, buffer, offset, copyLength);
278 System.arraycopy(this.buffer, out, buffer, offset + charsCopied,
428 System.arraycopy(chars, offset, buffer, in, length);
441 System.arraycopy(chars, offset, buffer, in, length);
  /dalvik/libcore/luni/src/main/java/java/lang/
Boolean.java 151 * Returns the {@code boolean} value of the system property identified by
155 * the name of the requested system property.
156 * @return {@code true} if the system property named by {@code string}
159 * @see System#getProperty(String)
165 return (parseBoolean(System.getProperty(string)));
  /dalvik/libcore/luni/src/main/java/java/net/
ServerSocket.java 188 SecurityManager security = System.getSecurityManager();
284 SecurityManager security = System.getSecurityManager();
304 SecurityManager security = System.getSecurityManager();
358 * address on any free port of the system.
375 * available local address on any free port of the system. The value for
409 SecurityManager security = System.getSecurityManager();
  /dalvik/libcore/luni/src/main/java/org/apache/harmony/luni/util/
PriviAction.java 90 * Creates a PrivilegedAction to return the value of the system property
94 * the key of the system property
96 * @see System#getProperty(String)
104 * Creates a PrivilegedAction to return the value of the system property
108 * the key of the system property
110 * the return value if the system property does not exist
112 * @see System#getProperty(String, String)
129 return (T)System.getProperty((String) arg1, (String) arg2);
  /dalvik/libcore/luni/src/test/java/com/google/coretests/
PerfStatCollector.java 19 import dalvik.system.VMDebug;
173 long evalStartTime = System.currentTimeMillis();
191 long evalDuration = System.currentTimeMillis() - evalStartTime;
230 System.gc();
247 * wall clock time of the system.
253 return System.currentTimeMillis();
  /dalvik/libcore/luni/src/test/java/org/apache/harmony/luni/tests/java/io/
InputStreamReaderTest.java 73 in = new InputStreamReader(System.in, "UTF-16BE");
  /dalvik/libcore/luni/src/test/java/tests/api/java/io/
PipedReaderTest.java 39 System.out.println("Couldn't create writer");
55 System.out.println("Exception occurred: " + e.toString());
73 e.printStackTrace(System.out);
74 System.out.println("Error while running the writer thread.");
  /dalvik/libcore/nio/src/main/java/java/nio/
CharArrayBuffer.java 77 System.arraycopy(backingArray, offset + position, dest, off, len);
  /dalvik/libcore/security/src/main/java/java/security/
IdentityScope.java 35 // systemScope holds reference to the current system scope
73 * Returns the system's scope.
75 * @return the system's scope.
80 * "system.scope", and the class is only loaded from boot classpath. No default
86 return Security.getProperty("system.scope"); //$NON-NLS-1$
101 * Sets the system's scope.
107 SecurityManager sm = System.getSecurityManager();
MessageDigestSpi.java 140 System.arraycopy(tmp, 0, buf, offset, tmp.length);
  /dalvik/libcore/security/src/main/java/org/apache/harmony/security/asn1/
ASN1Integer.java 87 System.arraycopy(in.buffer, in.contentOffset, bytesEncoded, 0,
  /dalvik/libcore/security/src/main/java/org/bouncycastle/crypto/
BufferedAsymmetricBlockCipher.java 127 System.arraycopy(in, inOff, buf, bufOff, len);
  /dalvik/libcore/security/src/main/java/org/bouncycastle/crypto/digests/
GeneralDigest.java 35 System.arraycopy(t.xBuf, 0, xBuf, 0, t.xBuf.length);
  /dalvik/libcore/security/src/main/java/org/bouncycastle/crypto/generators/
OpenSSLPBEParametersGenerator.java 60 System.arraycopy(buf, 0, key, offset, len);
  /dalvik/libcore/security/src/main/java/org/bouncycastle/crypto/signers/
ISO9796d2Signer.java 263 System.arraycopy(mBuf, 0, block, delta, mR);
270 System.arraycopy(mBuf, 0, block, delta, messageLength);
429 System.arraycopy(block, mStart, recoveredMessage, 0, recoveredMessage.length);
450 System.arraycopy(block, mStart, recoveredMessage, 0, recoveredMessage.length);
  /dalvik/libcore/security/src/test/java/tests/security/cert/
CertPathCertPathRepTest.java 76 System.out.println(e);
  /dalvik/libcore/security/src/test/java/tests/security/permissions/
JavaNetSocketTest.java 44 old = System.getSecurityManager();
50 System.setSecurityManager(old);
119 System.setSecurityManager(s);
192 System.setSecurityManager(s);
  /dalvik/libcore/security/src/test/java/tests/targets/security/
SecureRandomTest.java 90 random.setSeed(System.currentTimeMillis()+counter);
  /dalvik/libcore/sql/src/test/java/org/apache/harmony/sql/tests/java/sql/
TestHelper_Driver1.java 47 System.out.println("Failed to register driver!");
TestHelper_DriverManager.java 96 // System.out.println("checkDeregisterDriver: got expected Security
107 System.out.println("ClassLoader is: " + theClassLoader.toString()

Completed in 531 milliseconds

<<31323334353637383940>>