Home
last modified time | relevance | path

Searched refs:RemoteSessionParams (Results 1 – 6 of 6) sorted by relevance

/aosp12/frameworks/layoutlib/remote/client/src/com/android/layoutlib/bridge/remote/client/adapters/
H A DRemoteSessionParamsAdapter.java31 import com.android.layout.remote.api.RemoteSessionParams;
38 …class RemoteSessionParamsAdapter extends RemoteRenderParamsAdapter implements RemoteSessionParams {
46 public static RemoteSessionParams create(@NotNull SessionParams params) throws RemoteException { in create()
47 return (RemoteSessionParams) UnicastRemoteObject.exportObject( in create()
H A DRemoteRenderParamsAdapter.java30 import com.android.layout.remote.api.RemoteSessionParams;
44 public static RemoteSessionParams create(@NotNull SessionParams params) throws RemoteException { in create()
45 return (RemoteSessionParams) UnicastRemoteObject.exportObject( in create()
/aosp12/frameworks/layoutlib/remote/client/src/com/android/layoutlib/bridge/remote/client/
H A DRemoteBridgeClient.java26 import com.android.layout.remote.api.RemoteSessionParams;
83 RemoteSessionParams remoteParams = RemoteSessionParamsAdapter.create(params); in createSession()
/aosp12/frameworks/layoutlib/remote/server/src/com/android/layoutlib/bridge/remote/server/
H A DRemoteBridgeImpl.java28 import com.android.layout.remote.api.RemoteSessionParams;
95 public RemoteRenderSession createSession(@NotNull RemoteSessionParams remoteParams) { in createSession()
/aosp12/frameworks/layoutlib/remote/common/src/com/android/layout/remote/api/
H A DRemoteSessionParams.java33 public interface RemoteSessionParams extends RemoteRenderParams { interface
H A DRemoteBridge.java68 RemoteRenderSession createSession(@NotNull RemoteSessionParams params) throws RemoteException; in createSession()