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

1234567891011

/libcore/ojluni/src/main/java/sun/security/x509/
H A DCRLDistributionPointsExtension.java180 while (val.data.available() != 0) {
181 DerValue seq = val.data.getDerValue();
H A DIssuingDistributionPointExtension.java185 if ((val.data == null) || (val.data.available() == 0)) {
189 DerInputStream in = val.data;
196 new DistributionPointName(opt.data.getDerValue());
H A DAuthorityKeyIdentifierExtension.java73 // Private data members
160 // in val.data being null.
161 while ((val.data != null) && (val.data.available() != 0)) {
162 DerValue opt = val.data.getDerValue();
H A DX509CertImpl.java60 * placing data in the X.509 standard format and then digitally signing
61 * that data. Such signatures are quite difficult to forge. CAs act as
128 // Certificate data, and its envelope
187 * the end. If you need to ignore data at the end of a certificate,
600 // Wrap the signed data in a SEQUENCE { data, algorithm, sig }
737 signedCert = null; //reset this as certificate data has changed
740 signedCert = null; //reset this as certificate data has changed
1518 byte[] data = val.getOctetString();
1521 new ExtendedKeyUsageExtension(Boolean.FALSE, data);
[all...]
H A DX509CRLImpl.java94 // CRL data, and its envelope
413 * @exception CRLException if any mandatory data was omitted.
433 * @exception CRLException if any mandatory data was omitted.
467 // Wrap the signed data in a SEQUENCE { data, algorithm, sig }
473 throw new CRLException("Error while encoding data: " +
1010 throw new CRLException("Invalid DER-encoded CRL data");
1015 seq[0] = val.data.getDerValue();
1016 seq[1] = val.data.getDerValue();
1017 seq[2] = val.data
[all...]
H A DNameConstraintsExtension.java77 // Private data members
184 // in val.data being null.
185 if (val.data == null)
187 while (val.data.available() != 0) {
188 DerValue opt = val.data.getDerValue();
H A DInhibitAnyPolicyExtension.java93 // Private data members
144 + "data not integer");
146 if (val.data == null)
148 + "null data");
H A DIssuerAlternativeNameExtension.java64 // private data members
131 if (val.data == null) {
H A DSubjectAlternativeNameExtension.java69 // private data members
136 if (val.data == null) {
/libcore/tzdata/tools/
H A DcreateIcuUpdateResources.sh3 # A script that generates an ICU data file containing just timezone rules data.
73 # Copy all the .res files we need here a from, e.g. ./data/out/build/icudt55l
74 RES_DIR=data/out/build/icudt${ICU_VERSION}l
/libcore/luni/src/main/java/org/w3c/dom/
H A DNode.java54 * <td valign='top' rowspan='1' colspan='1'>same as <code>CharacterData.data</code>, the
62 * <td valign='top' rowspan='1' colspan='1'>same as <code>CharacterData.data</code>, the
122 * <code>ProcessingInstruction.data</code></td>
129 * <td valign='top' rowspan='1' colspan='1'>same as <code>CharacterData.data</code>, the content
406 * <code>parentNode</code> is <code>null</code>) and no user data. User
407 * data associated to the imported node is not carried over. However, if
409 * associated data these handlers will be called with the appropriate
833 * <code>Text</code> nodes, as well as any user data or event listeners
877 * @param data The object to associate to the given key, or
886 Object data,
885 setUserData(String key, Object data, UserDataHandler handler) argument
[all...]
/libcore/luni/src/main/java/org/xml/sax/helpers/
H A DDefaultHandler.java309 * Receive notification of character data inside an element.
312 * method to take specific actions for each chunk of character data
313 * (such as adding the data to a node or buffer, or printing it to
336 * whitespace (such as adding data to a node or buffer, or printing
363 * @param data The processing instruction data, or null if
369 public void processingInstruction (String target, String data)
366 processingInstruction(String target, String data) argument
/libcore/dex/src/test/java/com/android/dex/
H A DEncodedValueReaderTest.java121 byte[] data = new byte[bytes.length];
123 data[i] = (byte) bytes[i];
125 return new EncodedValueReader(new ByteArrayByteInput(data));
/libcore/luni/src/test/java/libcore/java/io/
H A DOldInputStreamReaderTest.java144 byte[] data = new byte[8192 * 2];
145 Arrays.fill(data, (byte) 116); // 116 = ISO-8859-1 value for 't'
146 ByteArrayInputStream bis = new ByteArrayInputStream(data);
/libcore/ojluni/src/test/java/util/stream/boottest/java/util/stream/
H A DDoubleNodeTest.java153 TestData.OfDouble data = TestData.Factory.ofNode("Node", n);
155 exerciseOps(data, s -> s);
157 exerciseTerminalOps(data, s -> s.toArray());
H A DIntNodeTest.java153 TestData.OfInt data = TestData.Factory.ofNode("Node", n);
155 exerciseOps(data, s -> s);
156 exerciseTerminalOps(data, s -> s.toArray());
H A DLongNodeTest.java153 TestData.OfLong data = TestData.Factory.ofNode("Node", n);
155 exerciseOps(data, s -> s);
157 exerciseTerminalOps(data, s -> s.toArray());
H A DNodeTest.java129 TestData<Integer, Stream<Integer>> data = TestData.Factory.ofRefNode("Node", n);
131 exerciseOps(data, s -> s);
133 exerciseTerminalOps(data, s -> s.toArray());
/libcore/luni/src/test/java/libcore/xml/
H A DExpatSaxParserTest.java350 public void processingInstruction(String target, String data) argument
508 assertEquals("lee", handler.data);
514 String data; field in class:ExpatSaxParserTest.TestProcessingInstrutionHandler
517 public void processingInstruction(String target, String data) { argument
519 this.data = data;
/libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/util/zip/
H A DZipFileTest.java202 assertEquals("testdir1/ should not contain data", -1, r);
227 int data = -1;
229 data = in.read();
232 assertEquals("Must not be able to read directory data", -1, data);
262 assertEquals("getInputStream read incorrect data", "This is text",
/libcore/luni/src/test/java/libcore/io/
H A DBase64Test.java45 int[] data = new int[61];
46 Arrays.fill(data, 0xff);
49 assertEncodeDecode(expected, data);
77 // Correct data, for reference.
/libcore/ojluni/src/main/java/java/net/
H A DAbstractPlainSocketImpl.java537 protected void sendUrgentData (int data) throws IOException { argument
541 socketSendUrgentData (data);
644 abstract void socketSendUrgentData(int data) argument
/libcore/ojluni/src/main/java/sun/security/util/
H A DDerOutputStream.java41 * Output stream marshaling DER-encoded data. This is eventually provided
46 * DER data encodings which are defined. That subset is sufficient for
69 * Writes tagged, pre-marshaled data. This calcuates and encodes
70 * the length, so that the output data is the standard triple of
71 * { tag, length, data } used by all DER values.
73 * @param tag the DER value tag for the data, such as
75 * @param buf buffered data, which must be DER-encoded
84 * Writes tagged data using buffer-to-buffer copy. As above,
88 * @param tag the DER value tag for the data, such as
90 * @param out buffered data
[all...]
/libcore/support/src/test/java/org/apache/harmony/testframework/serialization/
H A DSerializationTest.java81 * Tests that data objects can be serialized and deserialized without
96 * Tests that data objects can be deserialized from golden files, to verify
107 * @param index array index of tested data (as returned by
135 Object[] data = getData();
136 for (int i = 0; i < data.length; i++) {
142 putObjectToStream(data[i], new FileOutputStream(goldenFile));
/libcore/luni/src/test/java/org/apache/harmony/security/tests/java/security/
H A DMessageDigest2Test.java105 // Made up data
152 byte[] data = out.toByteArray();
153 byte[] hash = sha.digest(data);
165 // Made up data
195 byte[] data = out.toByteArray();
196 byte[] hash = sha.digest(data);

Completed in 1603 milliseconds

1234567891011