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

/libcore/luni/src/main/java/java/util/prefs/
H A DPreferences.java170 * @param ostream
180 public abstract void exportNode(OutputStream ostream) throws IOException, BackingStoreException; argument
197 * @param ostream
207 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/luni/src/test/java/libcore/java/util/prefs/
H A DOldPreferencesTest.java967 public void exportNode(OutputStream ostream) throws IOException, BackingStoreException { argument
971 public void exportSubtree(OutputStream ostream) throws IOException, BackingStoreException { argument

Completed in 74 milliseconds