Searched refs:data (Results 251 - 260 of 260) sorted by relevance

<<11

/libcore/luni/src/main/java/java/util/concurrent/
H A DLinkedTransferQueue.java68 * (linked) queues in which nodes may represent either data or
69 * requests. When a thread tries to enqueue a data node, but
76 * additionally arrange that threads enqueuing unmatched data also
87 * empty). For example, here is a possible queue with four data
107 * this here as: for a data-mode node, matching entails CASing an
108 * "item" field from a non-null data value to null upon match, and
109 * vice-versa for request nodes, CASing from null to a data
314 * represent phase changes (from data to request node or vice
488 * has opposite data mode.
497 * Tries to artificially match a data nod
760 countOfMode(boolean data) argument
[all...]
/libcore/ojluni/src/main/native/
H A DPlainSocketImpl.c1042 jint data) {
1046 unsigned char d = data & 0xFF;
1041 PlainSocketImpl_socketSendUrgentData(JNIEnv *env, jobject this, jint data) argument
H A Djvm.h1024 unsigned char *data,
1145 * Read data from a file decriptor into a char array.
1148 * buf the buffer where to put the read data.
1157 * Write data from a char array to a file decriptor.
1160 * buf the buffer from which to fetch the data.
/libcore/luni/src/test/java/libcore/xml/
H A DDomTest.java1624 assertEquals("Expected text value only and no expanded entity data",
1703 public void handle(short operation, String key, Object data, Node src, Node dst) { argument
1704 calls.add(notification(operation, key, data, src, dst));
1708 private String notification(short operation, String key, Object data, Node src, Node dst) { argument
1709 return "op:" + operation + " key:" + key + " data:" + data + " src:" + src + " dst:" + dst;
/libcore/ojluni/src/main/java/sun/nio/ch/
H A DSocketChannelImpl.java409 // operation was initiated but no data could be transferred;
1035 private static native int sendOutOfBandData(FileDescriptor fd, byte data) argument
/libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/util/
H A DFormatterTest.java101 private StringBuilder data = new StringBuilder(); field in class:FormatterTest.MockDestination
107 data.append(c);
117 data.append(csq);
128 data.append(csq, start, end);
141 return data.toString();
/libcore/ojluni/src/main/java/java/security/cert/
H A DX509CertSelector.java2242 AlgorithmId algID = AlgorithmId.parse(val.data.getDerValue());
/libcore/luni/src/test/java/libcore/javax/net/ssl/
H A DSSLSocketTest.java1678 renegotiationInfoExtension.data.length == 1 &&
1679 renegotiationInfoExtension.data[0] == 0) {
1766 // Assert that the chunk does not contain any more data
1780 // the first chunk of data received. This chunk is assumed to be the ClientHello.
/libcore/benchmarks/src/benchmarks/regression/
H A DR.java1505 public static final int data = 0; field in class:R
/libcore/luni/src/test/java/libcore/java/security/
H A DSignatureTest.java389 * The RI appears to clear out the input data in RawDSA while calling
436 byte[] data = new byte[len / 2];
438 data[i / 2] = (byte) ((Character.digit(s.charAt(i), 16) << 4)
441 return data;
610 /* Test data is: "Android.\n" */
2753 fail("Should throw exception when data is too large");
2775 fail("Should throw exception when data is too large");

Completed in 481 milliseconds

<<11