Home
last modified time | relevance | path

Searched refs:RemoteInputStream (Results 1 – 7 of 7) sorted by relevance

/frameworks/layoutlib/remote/common/src/com/android/layout/remote/api/
DRemoteAssetRepository.java20 import com.android.layout.remote.util.RemoteInputStream;
32 RemoteInputStream openAsset(String path, int mode) throws IOException; in openAsset()
35 RemoteInputStream openNonAsset(int cookie, String path, int mode) throws IOException; in openNonAsset()
DRemoteXmlPullParser.java19 import com.android.layout.remote.util.RemoteInputStream;
43 void setInput(RemoteInputStream inputStream, String inputEncoding) in setInput()
/frameworks/layoutlib/remote/client/src/com/android/layoutlib/bridge/remote/client/adapters/
DRemoteAssetRepositoryAdapter.java21 import com.android.layout.remote.util.RemoteInputStream;
42 public RemoteInputStream openAsset(String path, int mode) throws IOException, RemoteException { in openAsset()
47 public RemoteInputStream openNonAsset(int cookie, String path, int mode) in openNonAsset()
DRemoteXmlPullParserAdapter.java20 import com.android.layout.remote.util.RemoteInputStream;
73 public void setInput(RemoteInputStream inputStream, String inputEncoding) in setInput()
/frameworks/layoutlib/remote/common/src/com/android/layout/remote/util/
DRemoteInputStreamAdapter.java26 public class RemoteInputStreamAdapter implements RemoteInputStream {
34 public static RemoteInputStream create(@NotNull InputStream is) throws RemoteException { in create()
35 return (RemoteInputStream) UnicastRemoteObject.exportObject( in create()
DStreamUtil.java19 import com.android.layout.remote.util.RemoteInputStream.EndOfStreamException;
31 public static InputStream getInputStream(@NotNull RemoteInputStream is) { in getInputStream()
DRemoteInputStream.java23 public interface RemoteInputStream extends Remote { interface