Home
last modified time | relevance | path

Searched refs:maxPointers (Results 1 – 5 of 5) sorted by relevance

/frameworks/base/services/core/java/com/android/server/tv/
DUinputBridge.java34 int maxPointers); in nativeOpen() argument
67 public UinputBridge(IBinder token, String name, int width, int height, int maxPointers) in UinputBridge() argument
72 if (maxPointers < 1 || maxPointers > 32) { in UinputBridge()
78 mPtr = nativeOpen(name, token.toString(), width, height, maxPointers); in UinputBridge()
DTvRemoteServiceInput.java47 int height, int maxPointers) { in openInputBridge() argument
51 + ", height: " + height + ", maxPointers: " + maxPointers); in openInputBridge()
63 new UinputBridge(token, name, width, height, maxPointers)); in openInputBridge()
/frameworks/base/services/core/jni/
Dcom_android_server_tv_TvUinputBridge.cpp283 NativeConnection(int fd, int32_t maxPointers, ConnectionType type);
290 NativeConnection::NativeConnection(int fd, int32_t maxPointers, ConnectionType type) in NativeConnection() argument
291 : mFd(fd), mMaxPointers(maxPointers), mType(type) {} in NativeConnection()
300 int32_t width, int32_t height, int32_t maxPointers) { in open() argument
302 "max pointers %d.", name, width, height, maxPointers); in open()
320 return new NativeConnection(descriptor.Detach(), maxPointers, ConnectionType::kRemoteDevice); in open()
364 jint width, jint height, jint maxPointers) { in nativeOpen() argument
369 width, height, maxPointers); in nativeOpen()
/frameworks/base/media/java/android/media/tv/
DITvRemoteServiceInput.aidl25 void openInputBridge(IBinder token, String name, int width, int height, int maxPointers); in openInputBridge() argument
/frameworks/base/media/lib/tvremote/java/com/android/media/tv/remoteprovider/
DTvRemoteProvider.java194 @NonNull IBinder token, @NonNull String name, int width, int height, int maxPointers) in openRemoteInputBridge() argument
206 finalToken, finalName, width, height, maxPointers); in openRemoteInputBridge()
218 mRemoteServiceInput.openInputBridge(finalToken, finalName, width, height, maxPointers); in openRemoteInputBridge()