OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:StreamException
(Results
1 - 3
of
3
) sorted by null
/sdk/common/src/com/android/io/
StreamException.java
23
public class
StreamException
extends Exception {
33
public
StreamException
(Exception e, IAbstractFile file) {
37
public
StreamException
(Exception e, IAbstractFile file, Error error) {
FileWrapper.java
89
public InputStream getContents() throws
StreamException
{
93
throw new
StreamException
(e, this,
StreamException
.Error.FILENOTFOUND);
98
public void setContents(InputStream source) throws
StreamException
{
109
throw new
StreamException
(e, this);
115
throw new
StreamException
(e, this);
122
public OutputStream getOutputStream() throws
StreamException
{
126
throw new
StreamException
(e, this);
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/io/
IFileWrapper.java
21
import com.android.io.
StreamException
;
47
public InputStream getContents() throws
StreamException
{
51
StreamException
.Error error =
StreamException
.Error.DEFAULT;
53
error =
StreamException
.Error.OUTOFSYNC;
55
throw new
StreamException
(e, this, error);
60
public void setContents(InputStream source) throws
StreamException
{
64
throw new
StreamException
(e, this);
69
public OutputStream getOutputStream() throws
StreamException
{
78
} catch (
StreamException
e)
[
all
...]
Completed in 2423 milliseconds