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

1 2 3 4 5 6 7 891011>>

  /frameworks/base/telephony/java/com/android/internal/telephony/
IccSmsInterfaceManager.java 205 System.arraycopy(pdu, 0, data, 1, pdu.length);
  /frameworks/base/telephony/java/com/android/internal/telephony/gsm/
SimTlv.java 79 System.arraycopy(record, curDataOffset, ret, 0, curDataLength);
  /frameworks/base/tools/preload/loadclass/
LoadClass.java 28 System.loadLibrary("android_runtime");
38 long start = System.currentTimeMillis();
40 long elapsed = System.currentTimeMillis() - start;
49 System.gc();
77 System.out.println(response.toString());
  /libcore/dalvik/src/main/java/dalvik/system/
CloseGuard.java 17 package dalvik.system;
115 * but enables it with DropBoxing for system apps on debug builds.
227 System.logW(message, allocationSite);
  /libcore/dalvik/src/main/java/dalvik/system/profiler/
HprofBinaryToAscii.java 17 package dalvik.system.profiler;
30 * adb shell dalvikvm 'dalvik.system.profiler.HprofBinaryToAscii'
41 System.exit(convert(args) ? 0 : 1);
65 System.out.println("Problem reading binary hprof data from "
76 System.out.println("Problem reading snapshot containing binary hprof data from "
163 AsciiHprofWriter.write(hprofData, System.out);
165 System.out.println("Problem writing ASCII hprof data: " + e.getMessage());
175 System.out.print("ERROR: ");
176 System.out.println(error);
177 System.out.println()
    [all...]
  /libcore/luni/src/main/java/java/io/
ByteArrayOutputStream.java 70 * Closes this stream. This releases system resources used for this stream.
92 System.arraycopy(buf, 0, newbuf, 0, count);
123 System.arraycopy(buf, 0, newArray, 0, count);
202 System.arraycopy(buffer, offset, buf, this.count, len);
CharArrayWriter.java 86 System.arraycopy(buf, 0, newbuf, 0, count);
132 System.arraycopy(buf, 0, result, 0, count);
170 System.arraycopy(buffer, offset, this.buf, this.count, len);
PushbackInputStream.java 186 System.arraycopy(buf, pos, buffer, newOffset, copyLength);
292 System.arraycopy(buffer, offset, buf, pos - length, length);
PushbackReader.java 195 System.arraycopy(buf, pos, buffer, newOffset, copyLength);
  /libcore/luni/src/main/java/java/nio/
HeapByteBuffer.java 64 System.arraycopy(backingArray, offset + position, dst, dstOffset, byteCount);
  /libcore/luni/src/main/java/java/security/
SignatureSpi.java 197 System.arraycopy(tmp, 0, outbuf, offset, tmp.length);
247 System.arraycopy(sigBytes, offset, tmp, 0, length);
SignedObject.java 47 System.arraycopy(content, 0, tmp, 0, content.length);
50 System.arraycopy(signature, 0, tmp, 0, signature.length);
120 System.arraycopy(signature, 0, sig, 0, signature.length);
  /libcore/luni/src/main/java/java/security/cert/
TrustAnchor.java 72 System.arraycopy(nameConstraints, 0,
115 System.arraycopy(nameConstraints, 0,
162 System.arraycopy(nameConstraints, 0,
183 System.arraycopy(nameConstraints, 0,
  /libcore/luni/src/main/java/java/security/spec/
ECFieldF2m.java 132 System.arraycopy(ks, 0, this.ks, 0, this.ks.length);
238 System.arraycopy(ks, 0, ret, 0, ret.length);
EllipticCurve.java 77 System.arraycopy(seed, 0, this.seed, 0, this.seed.length);
157 System.arraycopy(seed, 0, ret, 0, ret.length);
RSAMultiPrimePrivateCrtKeySpec.java 118 System.arraycopy(otherPrimeInfo, 0,
153 System.arraycopy(otherPrimeInfo, 0, ret, 0, ret.length);
  /libcore/luni/src/main/java/java/util/logging/
XMLFormatter.java 54 String nl = System.lineSeparator();
115 String nl = System.lineSeparator();
138 sb.append(System.lineSeparator());
157 encoding = System.getProperty("file.encoding");
161 sb.append(System.lineSeparator());
162 sb.append("<!DOCTYPE log SYSTEM \"logger.dtd\">");
163 sb.append(System.lineSeparator());
  /libcore/luni/src/main/java/libcore/io/
HeapBufferIterator.java 51 System.arraycopy(buffer, offset + position, dst, dstOffset, byteCount);
  /libcore/luni/src/main/java/org/apache/harmony/crypto/internal/
NullCipherSpi.java 101 System.arraycopy(input, inputOffset, result, 0, inputLen);
111 System.arraycopy(input, inputOffset, output, outputOffset, inputLen);
  /libcore/luni/src/main/java/org/apache/harmony/security/asn1/
ASN1Any.java 91 System.arraycopy(in.buffer, in.tagOffset, bytesEncoded, 0,
ASN1Integer.java 78 System.arraycopy(in.buffer, in.contentOffset, bytesEncoded, 0,
  /libcore/luni/src/main/java/org/apache/harmony/security/provider/cert/
X509CRLEntryImpl.java 86 System.arraycopy(encoding, 0, result, 0, encoding.length);
  /libcore/luni/src/main/java/org/apache/harmony/xnet/provider/jsse/
SSLSocketInputStream.java 156 System.arraycopy(buffer, pos, buffer, 0, end-pos);
160 System.arraycopy(src, 0, buffer, end, length);
ServerKeyExchange.java 94 System.arraycopy(bb, 1, noZero, 0, noZero.length);
  /libcore/luni/src/main/java/org/xml/sax/ext/
Attributes2Impl.java 249 System.arraycopy (declared, 0, newFlags, 0, declared.length);
253 System.arraycopy (specified, 0, newFlags, 0, specified.length);
269 System.arraycopy (declared, index + 1, declared, index,
271 System.arraycopy (specified, index + 1, specified, index,

Completed in 1540 milliseconds

1 2 3 4 5 6 7 891011>>