HomeSort by relevance Sort by last modified time
    Searched full:ioexception (Results 201 - 225 of 4849) sorted by null

1 2 3 4 5 6 7 891011>>

  /libcore/luni/src/main/java/java/io/
DataOutputStream.java 58 * @throws IOException
62 public void flush() throws IOException {
88 * @throws IOException
94 public void write(byte[] buffer, int offset, int count) throws IOException {
108 * @throws IOException
113 public void write(int oneByte) throws IOException {
123 * @throws IOException
127 public final void writeBoolean(boolean val) throws IOException {
138 * @throws IOException
143 public final void writeByte(int val) throws IOException {
    [all...]
ObjectOutput.java 31 * @throws IOException
34 public void close() throws IOException;
40 * @throws IOException
43 public void flush() throws IOException;
51 * @throws IOException
54 public void write(byte[] buffer) throws IOException;
68 * @throws IOException
71 public void write(byte[] buffer, int offset, int count) throws IOException;
80 * @throws IOException
83 public void write(int value) throws IOException;
    [all...]
  /cts/libs/vogar-expect/src/vogar/util/
IoUtils.java 20 import java.io.IOException;
29 } catch (IOException ignored) {
38 } catch (IOException ignored) {
  /dalvik/tests/004-annotations/src/android/test/anno/
FullyNoted.java 4 import java.io.IOException;
22 throws IOException, EOFException {
31 throws IOException {
  /development/samples/WiFiDirectServiceDiscovery/src/com/example/android/wifidirect/discovery/
ClientSocketHandler.java 7 import java.io.IOException;
34 } catch (IOException e) {
38 } catch (IOException e1) {
  /external/apache-harmony/luni/src/test/api/common/org/apache/harmony/luni/tests/java/io/
WriterTest.java 18 import java.io.IOException;
28 public void test_appendChar() throws IOException {
40 public void test_appendCharSequence() throws IOException {
52 public void test_appendCharSequenceIntInt() throws IOException {
67 public void test_writeLjava_lang_String() throws IOException {
84 public synchronized void close() throws IOException {
89 public synchronized void flush() throws IOException {
94 public void write(char[] arg0, int arg1, int arg2) throws IOException {
113 public synchronized void close() throws IOException {
118 public synchronized void flush() throws IOException {
    [all...]
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/asn1/
ASN1Null.java 3 import java.io.IOException;
33 catch (IOException e)
63 throws IOException;
BERSequence.java 3 import java.io.IOException;
44 throws IOException
59 throws IOException
BERSet.java 3 import java.io.IOException;
44 throws IOException
59 throws IOException
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/crypto/io/
MacInputStream.java 4 import java.io.IOException;
23 throws IOException
38 throws IOException
  /external/ganymed-ssh2/src/main/java/ch/ethz/ssh2/crypto/cipher/
CipherInputStream.java 7 import java.io.IOException;
41 private int fill_buffer() throws IOException
49 private int internal_read(byte[] b, int off, int len) throws IOException
82 private void getBlock() throws IOException
90 throw new IOException("Cannot read full block, EOF reached.");
101 throw new IOException("Error while decrypting block.");
106 public int read(byte[] dst) throws IOException
111 public int read(byte[] dst, int off, int len) throws IOException
133 public int read() throws IOException
142 public int readPlain(byte[] b, int off, int len) throws IOException
    [all...]
  /external/ganymed-ssh2/src/main/java/ch/ethz/ssh2/packets/
PacketKexDhGexGroup.java 7 import java.io.IOException;
24 public PacketKexDhGexGroup(byte payload[], int off, int len) throws IOException
42 throw new IOException("PADDING IN SSH_MSG_KEX_DH_GEX_GROUP!");
  /external/guava/guava/src/com/google/common/io/
Closeables.java 23 import java.io.IOException;
44 * {@code IOException} may be thrown. This is primarily useful in a
49 * {@code IOException} but merely log it.
53 * <p><pre>public void useStreamNicely() throws IOException {
71 * @throws IOException if {@code swallowIOException} is false and
72 * {@code close} throws an {@code IOException}.
75 boolean swallowIOException) throws IOException {
81 } catch (IOException e) {
84 "IOException thrown while closing Closeable.", e);
93 * IOException in the signature
    [all...]
  /external/hamcrest/src/org/hamcrest/
StringDescription.java 3 import java.io.IOException;
41 } catch (IOException e) {
49 } catch (IOException e) {
  /external/jmonkeyengine/engine/src/core/com/jme3/effect/influencers/
EmptyParticleInfluencer.java 8 import java.io.IOException;
18 public void write(JmeExporter ex) throws IOException {
22 public void read(JmeImporter im) throws IOException {
  /external/jmonkeyengine/engine/src/networking/com/jme3/network/serializing/serializers/
Vector3Serializer.java 5 import java.io.IOException;
14 public Vector3f readObject(ByteBuffer data, Class c) throws IOException {
22 public void writeObject(ByteBuffer buffer, Object object) throws IOException {
  /external/jsilver/src/com/google/clearsilver/jsilver/exceptions/
JSilverIOException.java 19 import java.io.IOException;
22 * JSilver failed to access underlying IO stream. Wraps an IOException to make it a
27 public JSilverIOException(IOException cause) {
  /frameworks/base/core/java/android/content/pm/
XmlSerializerAndParser.java 24 import java.io.IOException;
28 void writeAsXml(T item, XmlSerializer out) throws IOException;
29 T createFromXml(XmlPullParser parser) throws IOException, XmlPullParserException;
  /frameworks/base/core/java/android/speech/srec/
MicrophoneInputStream.java 23 import java.io.IOException;
46 public MicrophoneInputStream(int sampleRate, int fifoDepth) throws IOException {
48 if (mAudioRecord == 0) throw new IOException("AudioRecord constructor failed - busy?");
52 throw new IOException("AudioRecord start failed: " + status);
57 public int read() throws IOException {
64 public int read(byte[] b) throws IOException {
70 public int read(byte[] b, int offset, int length) throws IOException {
80 public void close() throws IOException {
98 throw new IOException("someone forgot to close MicrophoneInputStream");
107 private static native int AudioRecordRead(int audioRecord, byte[] b, int offset, int length) throws IOException;
    [all...]
  /packages/apps/Calendar/src/com/android/calendar/
CloudNotificationBackplane.java 19 import java.io.IOException;
27 throws IOException;
28 public void send(String to, String msgId, Bundle data) throws IOException;
  /sdk/testapps/libsTest/app/src/com/android/tests/libstest/app/
App.java 7 import java.io.IOException;
31 } catch (IOException e) {
36 } catch (IOException e) {
  /sdk/testapps/libsTest/lib1/src/com/android/tests/libstest/lib1/
Lib1.java 7 import java.io.IOException;
31 } catch (IOException e) {
36 } catch (IOException e) {
  /sdk/testapps/libsTest/lib2/src/com/android/tests/libstest/lib2/
Lib2.java 7 import java.io.IOException;
31 } catch (IOException e) {
36 } catch (IOException e) {
  /external/ganymed-ssh2/src/main/java/ch/ethz/ssh2/channel/
ChannelInputStream.java 7 import java.io.IOException;
31 public int available() throws IOException
44 public void close() throws IOException
50 public int read(byte[] b, int off, int len) throws IOException
75 public int read(byte[] b) throws IOException
81 public int read() throws IOException
  /external/javassist/src/main/javassist/bytecode/annotation/
AnnotationsWriter.java 85 public void close() throws IOException {
95 public void numParameters(int num) throws IOException {
105 public void numAnnotations(int num) throws IOException {
119 throws IOException
134 throws IOException
149 public void memberValuePair(String memberName) throws IOException {
163 public void memberValuePair(int memberNameIndex) throws IOException {
173 public void constValueIndex(boolean value) throws IOException {
183 public void constValueIndex(byte value) throws IOException {
193 public void constValueIndex(char value) throws IOException {
    [all...]

Completed in 1322 milliseconds

1 2 3 4 5 6 7 891011>>