Searched refs:maxPointers (Results 1 - 6 of 6) sorted by relevance

/frameworks/base/services/core/java/com/android/server/tv/
H A DUinputBridge.java35 int maxPointers);
44 public UinputBridge(IBinder token, String name, int width, int height, int maxPointers) argument
49 if (maxPointers < 1 || maxPointers > 32) {
55 mPtr = nativeOpen(name, token.toString(), width, height, maxPointers);
34 nativeOpen(String name, String uniqueId, int width, int height, int maxPointers) argument
H A DTvRemoteService.java96 int maxPointers) {
99 ", width: " + width + ", height: " + height + ", maxPointers: " + maxPointers);
111 UinputBridge inputBridge = new UinputBridge(token, name, width, height, maxPointers);
264 int width, int height, int maxPointers) {
268 ", height: " + height + ", maxPointers: " + maxPointers);
274 maxPointers);
94 openInputBridgeInternalLocked(TvRemoteProviderProxy provider, IBinder token, String name, int width, int height, int maxPointers) argument
263 openInputBridge(TvRemoteProviderProxy provider, IBinder token, String name, int width, int height, int maxPointers) argument
H A DTvRemoteProviderProxy.java252 int width, int height, int maxPointers);
326 final int height, final int maxPointers) {
337 name, width, height, maxPointers);
575 int height, int maxPointers) throws RemoteException {
578 connection.openInputBridge(token, name, width, height, maxPointers);
251 openInputBridge(TvRemoteProviderProxy provider, IBinder token, String name, int width, int height, int maxPointers) argument
325 openInputBridge(final IBinder token, final String name, final int width, final int height, final int maxPointers) argument
574 openInputBridge(IBinder token, String name, int width, int height, int maxPointers) argument
/frameworks/base/media/java/android/media/tv/
H A DITvRemoteServiceInput.aidl24 void openInputBridge(IBinder token, String name, int width, int height, int maxPointers);
/frameworks/base/services/core/jni/
H A Dcom_android_server_tv_TvUinputBridge.cpp111 NativeConnection(int fd, int32_t maxPointers);
117 NativeConnection::NativeConnection(int fd, int32_t maxPointers) : argument
118 mFd(fd), mMaxPointers(maxPointers) {
128 int32_t width, int32_t height, int32_t maxPointers) {
130 "max pointers %d.", name, width, height, maxPointers);
174 return new NativeConnection(fd, maxPointers);
189 jint width, jint height, jint maxPointers) {
194 width, height, maxPointers);
127 open(const char* name, const char* uniqueId, int32_t width, int32_t height, int32_t maxPointers) argument
187 nativeOpen(JNIEnv* env, jclass clazz, jstring nameStr, jstring uniqueIdStr, jint width, jint height, jint maxPointers) argument
/frameworks/base/media/lib/tvremote/java/com/android/media/tv/remoteprovider/
H A DTvRemoteProvider.java123 * @param maxPointers Maximum supported pointers
127 int maxPointers) throws RuntimeException {
129 mRemoteServiceInput.openInputBridge(token, name, width, height, maxPointers);
126 openRemoteInputBridge(IBinder token, String name, int width, int height, int maxPointers) argument

Completed in 182 milliseconds