Searched defs:ostream (Results 1 - 4 of 4) sorted by relevance

/libcore/luni/src/main/java/java/util/prefs/
H A DPreferences.java179 * @param ostream
189 public abstract void exportNode(OutputStream ostream) throws IOException, BackingStoreException; argument
206 * @param ostream
216 public abstract void exportSubtree(OutputStream ostream) throws IOException, argument
H A DAbstractPreferences.java373 public void exportNode(OutputStream ostream) throws IOException, BackingStoreException { argument
374 if (ostream == null) {
375 throw new NullPointerException("ostream == null");
378 XMLParser.exportPrefs(this, ostream, false);
382 public void exportSubtree(OutputStream ostream) throws IOException, BackingStoreException { argument
383 if (ostream == null) {
384 throw new NullPointerException("ostream == null");
387 XMLParser.exportPrefs(this, ostream, true);
/libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/util/prefs/
H A DPreferencesTest.java265 public void exportNode(OutputStream ostream) throws IOException, argument
270 public void exportSubtree(OutputStream ostream) throws IOException, argument
/libcore/luni/src/test/java/libcore/java/util/prefs/
H A DOldPreferencesTest.java981 public void exportNode(OutputStream ostream) throws IOException, BackingStoreException { argument
985 public void exportSubtree(OutputStream ostream) throws IOException, BackingStoreException { argument

Completed in 21 milliseconds