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

<<31323334353637383940>>

  /frameworks/base/telephony/java/com/android/internal/telephony/
WapPushOverSms.java 187 System.arraycopy(pdu, headerStartIndex, header, 0, header.length);
192 System.arraycopy(pdu, dataIndex, data, 0, data.length);
207 System.arraycopy(pdu, headerStartIndex, header, 0, header.length);
222 System.arraycopy(pdu, headerStartIndex, header, 0, header.length);
225 System.arraycopy(pdu, dataIndex, data, 0, data.length);
  /frameworks/base/tests/CoreTests/android/core/
DatabaseSessionCache.java 196 long t0 = System.currentTimeMillis();
204 values.put(SSL_CACHE_TIME_SEC, System.currentTimeMillis() / 1000);
218 long t1 = System.currentTimeMillis();
240 long t0 = System.currentTimeMillis();
267 long t1 = System.currentTimeMillis();
DatagramTest.java 61 // System.out.println(s + " (from " + packet.getAddress() + ":" + packet.getPort() + ")");
111 System.arraycopy(bytes, 0, packet.getData(), 0, bytes.length);
153 // System.out.println(t + " (from " + packet.getAddress() + ":" + packet.getPort() + ")");
173 long start = System.currentTimeMillis();
181 long delay = System.currentTimeMillis() - start;
  /frameworks/base/tests/DumpRenderTree/src/com/android/dumprendertree/
ReliabilityTest.java 85 start = System.currentTimeMillis();
100 elapsed = System.currentTimeMillis() - start;
113 System.runFinalization();
114 System.gc();
115 System.gc();
  /packages/apps/Gallery3D/src/com/cooliris/media/
MatrixStack.java 60 System.arraycopy(m, offset, mMatrix, mTop, MATRIX_SIZE);
80 System.arraycopy(mMatrix, mTop, mTemp, 0, MATRIX_SIZE);
119 System.arraycopy(mMatrix, mTop, mMatrix, mTop + MATRIX_SIZE, MATRIX_SIZE);
125 System.arraycopy(mMatrix, mTop, mTemp, MATRIX_SIZE, MATRIX_SIZE);
150 System.arraycopy(mMatrix, mTop, dest, offset, MATRIX_SIZE);
  /cts/tools/dasm/src/dasm/
DAsm.java 177 System.out.println("Line " + line_num + ": " + msg);
214 if (PARSER_DEBUG) System.out.println("setLine(" + l + ")");
235 if (PARSER_DEBUG) System.out.println("setSource(" + name + ")");
251 System.out.println("setClass(" + name + ", " + acc + ")");
272 if (PARSER_DEBUG) System.out.println("setSuperClass(" + name + ")");
280 if (PARSER_DEBUG) System.out.println("addInterface(" + name + ")");
362 System.out.println("addField(" + name + ", " + desc + ", " + sig
391 System.out.println("newMethod(" + name + ", " + descriptor + ", "
413 if (PARSER_DEBUG) System.out.println("endMethod()");
462 if (PARSER_DEBUG) System.out.println("setRegsSize(" + v + ")")
    [all...]
  /dalvik/dx/src/com/android/dx/util/
IntList.java 242 System.arraycopy (values, n, values, n+1, size - n);
262 System.arraycopy (values, n + 1, values, n, size - n - 1);
275 System.arraycopy(values, 0, newv, 0, size);
  /dalvik/hit/src/com/android/hit/
Heap.java 117 System.out.println(theClass + ": " + count);
127 System.out.println(theClass);
142 System.out.println(theClass + ": base " + theClass.getSize()
State.java 150 System.out.println(
158 System.out.println(
166 System.out.println(
  /dalvik/libcore/security/src/main/java/org/bouncycastle/crypto/
BufferedBlockCipher.java 228 System.arraycopy(in, inOff, buf, bufOff, gapLen);
245 System.arraycopy(in, inOff, buf, bufOff, len);
289 System.arraycopy(buf, 0, out, outOff, resultLen);
  /dalvik/libcore/security/src/main/java/org/bouncycastle/crypto/encodings/
PKCS1Encoding.java 20 * work with one of these set the system property org.bouncycastle.pkcs1.strict to false.
22 * The system property is checked during construction of the encoding object, it is set to
44 this.useStrictLength = System.getProperty(STRICT_LENGTH_ENABLED_PROPERTY, "true").equals("true");
158 System.arraycopy(in, inOff, block, block.length - inLen, inLen);
219 System.arraycopy(block, start, result, 0, result.length);
  /dalvik/libcore/security/src/main/java/org/bouncycastle/crypto/generators/
DSAParametersGenerator.java 92 System.arraycopy(seed, 0, part2, 0, seed.length);
123 System.arraycopy(part1, 0, w, w.length - (k + 1) * part1.length, part1.length);
129 System.arraycopy(part1, part1.length - ((w.length - (n) * part1.length)), w, 0, w.length - n * part1.length);
  /dalvik/libcore/security/src/main/java/org/bouncycastle/crypto/macs/
ISO9797Alg3Mac.java 199 System.arraycopy(in, inOff, buf, bufOff, gapLen);
216 System.arraycopy(in, inOff, buf, bufOff, len);
261 System.arraycopy(mac, 0, out, outOff, macSize);
  /dalvik/libcore/security/src/main/java/org/bouncycastle/crypto/paddings/
PaddedBufferedBlockCipher.java 203 System.arraycopy(in, inOff, buf, bufOff, gapLen);
220 System.arraycopy(in, inOff, buf, bufOff, len);
288 System.arraycopy(buf, 0, out, outOff, resultLen);
  /dalvik/libcore/security/src/test/java/org/apache/harmony/security/tests/java/security/
IdentityScopeTest.java 128 String name = Security.getProperty("system.scope");
155 // default implementation is specified by security property system.scope
165 System.setSecurityManager(sm);
180 System.setSecurityManager(null);
181 assertNull("Error, security manager is not removed!", System.getSecurityManager());
  /dalvik/libcore/support/src/test/java/tests/util/
TestEnvironment.java 28 * Prepares system properties and preferences to hygienic values for testing:
30 * <li>System properties are set to reasonable defaults. Referenced
33 * <li>System and user preferences are cleared. Once the preferences classes
36 * first reset the system configuration with this API.
77 String result = System.getProperty(name);
79 throw new AssertionError("Tests require the '" + name + "' system property");
85 // There are two system properties we can't live without.
144 System.setProperties(p);
148 String value = System.getProperty(key);
  /dalvik/libcore/x-net/src/main/java/org/apache/harmony/xnet/provider/jsse/
PRF.java 54 + "algorithms installed in the system"));
91 System.arraycopy(digest, 0, out, pos, out.length - pos);
94 System.arraycopy(digest, 0, out, pos, 16);
121 System.arraycopy(str_byts, 0, tmp_seed, 0, str_byts.length);
122 System.arraycopy(seed, 0, tmp_seed, str_byts.length, seed.length);
169 System.arraycopy(md5_mac.doFinal(), 0, out,
  /dalvik/libcore/xml/src/main/java/org/apache/xml/dtm/ref/
ChunkedIntArray.java 62 System.out.println("*****WARNING: ChunkedIntArray("+slotsize+") wasting "+(this.slotsize-slotsize)+" words per slot");
120 // System.out.println("Using slow read (1)");
250 System.arraycopy(fastArray, position*slotsize, buffer, 0, slotsize);
255 // System.out.println("Using slow read (2): "+position);
264 System.arraycopy(chunk,slotpos,buffer,0,slotsize);
292 System.arraycopy(m_map, 0, newMap, 0, orgMapSize);
  /development/apps/Development/src/com/android/development/
Details.java 142 System.out.println("=== begin data ===");
146 System.out.println(" " + cd.key + ": " + cd.value);
148 System.out.println("=== end data ===");
  /external/apache-http/src/org/apache/http/util/
CharArrayBuffer.java 60 System.arraycopy(this.buffer, 0, newbuffer, 0, this.len);
79 System.arraycopy(b, off, this.buffer, this.len, len);
163 System.arraycopy(this.buffer, 0, b, 0, this.len);
  /external/emma/core/java12/com/vladium/jcd/cls/attribute/
CodeAttribute_info.java 143 String eol = System.getProperty ("line.separator");
230 if (DEBUG) System.out.println ("\t[" + i + "] exception: " + exception_info);
243 if (DEBUG) System.out.println ("\t[" + i + "] attribute: " + attribute_info);
  /external/proguard/src/proguard/optimize/evaluation/
EvaluationSimplifier.java 104 System.err.println("Unexpected error while simplifying instructions after partial evaluation:");
105 System.err.println(" Class = ["+clazz.getName()+"]");
106 System.err.println(" Method = ["+method.getName(clazz)+method.getDescriptor(clazz)+"]");
107 System.err.println(" Exception = ["+ex.getClass().getName()+"] ("+ex.getMessage()+")");
108 System.err.println("Not optimizing this method");
124 System.out.println();
125 System.out.println("Class "+ClassUtil.externalClassName(clazz.getName()));
126 System.out.println("Method "+ClassUtil.externalFullMethodDescription(clazz.getName(),
765 if (DEBUG) System.out.println(" Deleting store of subroutine return address "+instruction.toString(offset));
791 if (DEBUG) System.out.println(" Ignoring zero branch instruction at ["+offset+"]")
    [all...]
  /external/proguard/src/proguard/optimize/info/
ParameterUsageMarker.java 141 System.out.print("ParameterUsageMarker: ["+programClass.getName() +"."+programMethod.getName(programClass)+programMethod.getDescriptor(programClass)+"]: ");
144 System.out.print(isParameterUsed(programMethod, index) ? '+' : '-');
146 System.out.println();
  /frameworks/base/core/java/com/google/android/mms/pdu/
PduPart.java 142 System.arraycopy(data, 0, mPartData, 0, data.length);
156 System.arraycopy(mPartData, 0, byteArray, 0, mPartData.length);
201 System.arraycopy(contentId, 0, buffer, 1, contentId.length);
  /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/
Hints.java 109 editor.putLong(PREF_VOICE_INPUT_LAST_TIME_USED, System.currentTimeMillis());
149 today.setTimeInMillis(System.currentTimeMillis());
171 editor.putLong(PREF_VOICE_HINT_LAST_TIME_SHOWN, System.currentTimeMillis());

Completed in 438 milliseconds

<<31323334353637383940>>