Home
last modified time | relevance | path

Searched refs:RemoteBridge (Results 1 – 4 of 4) sorted by relevance

/aosp12/frameworks/layoutlib/remote/client/src/com/android/layoutlib/bridge/remote/client/
H A DRemoteBridgeClient.java25 import com.android.layout.remote.api.RemoteBridge;
41 private final RemoteBridge mDelegate;
43 private RemoteBridgeClient(@NotNull RemoteBridge delegate) { in RemoteBridgeClient()
51 RemoteBridge remoteBridge = (RemoteBridge) registry.lookup(RemoteBridge.class.getName()); in getRemoteBridge()
/aosp12/frameworks/layoutlib/remote/server/src/com/android/layoutlib/bridge/remote/server/
H A DServerMain.java19 import com.android.layout.remote.api.RemoteBridge;
178 RemoteBridge stub = (RemoteBridge) UnicastRemoteObject.exportObject(remoteBridge, 0);
184 registry.rebind(RemoteBridge.class.getName(), stub);
H A DRemoteBridgeImpl.java23 import com.android.layout.remote.api.RemoteBridge;
50 public class RemoteBridgeImpl implements RemoteBridge {
/aosp12/frameworks/layoutlib/remote/common/src/com/android/layout/remote/api/
H A DRemoteBridge.java36 public interface RemoteBridge extends Remote { interface