/frameworks/base/services/core/java/com/android/server/input/ |
D | InputManagerService.java | 164 private final NativeInputManagerService mNative; field in InputManagerService 449 mNative = injector.getNativeService(this); in InputManagerService() 450 mSettingsObserver = new InputSettingsObserver(mContext, mHandler, this, mNative); in InputManagerService() 451 mKeyboardLayoutManager = new KeyboardLayoutManager(mContext, mNative, mDataStore, in InputManagerService() 453 mBatteryController = new BatteryController(mContext, mNative, injector.getLooper(), in InputManagerService() 456 ? new KeyboardBacklightController(mContext, mNative, mDataStore, in InputManagerService() 461 mNative); in InputManagerService() 462 mKeyRemapper = new KeyRemapper(mContext, mNative, mDataStore, injector.getLooper()); in InputManagerService() 463 mPointerIconCache = new PointerIconCache(mContext, mNative); in InputManagerService() 516 mNative.start(); in start() [all …]
|
D | InputSettingsObserver.java | 52 private final NativeInputManagerService mNative; field in InputSettingsObserver 61 mNative = nativeIms; in InputSettingsObserver() 156 mNative.setPointerSpeed(constrainPointerSpeedValue(speed)); in updateMousePointerSpeed() 160 mNative.setTouchpadPointerSpeed( in updateTouchpadPointerSpeed() 165 mNative.setTouchpadNaturalScrollingEnabled( in updateTouchpadNaturalScrollingEnabled() 170 mNative.setTouchpadTapToClickEnabled(InputSettings.useTouchpadTapToClick(mContext)); in updateTouchpadTapToClickEnabled() 174 mNative.setTouchpadTapDraggingEnabled(InputSettings.useTouchpadTapDragging(mContext)); in updateTouchpadTapDraggingEnabled() 178 mNative.setTouchpadRightClickZoneEnabled(InputSettings.useTouchpadRightClickZone(mContext)); in updateTouchpadRightClickZoneEnabled() 182 mNative.setShowTouches(getBoolean(Settings.System.SHOW_TOUCHES, false)); in updateShowTouches() 220 mNative.setMotionClassifierEnabled(enabled); in updateLongPressTimeout() [all …]
|
D | PointerIconCache.java | 50 private final NativeInputManagerService mNative; field in PointerIconCache 96 mNative = nativeService; in PointerIconCache() 197 mNative.reloadPointerIcons(); in handleDisplayChanged() 210 mNative.reloadPointerIcons(); in handleSetUseLargePointerIcons() 223 mNative.reloadPointerIcons(); in handleSetPointerFillStyle() 236 mNative.reloadPointerIcons(); in handleSetPointerScale()
|
D | KeyRemapper.java | 45 private final NativeInputManagerService mNative; field in KeyRemapper 54 mNative = nativeService; in KeyRemapper() 100 mNative.addKeyRemapping(deviceId, fromKey, toKey); in addKeyRemapping() 147 (fromKey, toKey) -> mNative.addKeyRemapping(deviceId, fromKey, toKey)); in onInputDeviceAdded()
|
D | KeyboardLedController.java | 52 private final NativeInputManagerService mNative; field in KeyboardLedController 72 mNative = nativeService; in KeyboardLedController() 102 mNative.setLightColor(deviceId, light.getId(), color); in updateMicMuteLedState()
|
D | KeyboardBacklightController.java | 91 private final NativeInputManagerService mNative; field in KeyboardBacklightController 136 mNative = nativeService; in KeyboardBacklightController() 467 mNative.sysfsNodeChanged("/sys" + devPath); in onKeyboardBacklightUEvent() 624 int fromValue = Color.alpha(mNative.getLightColor(mDeviceId, mLight.getId())); in setBacklightValue() 631 mNative.setLightColor(mDeviceId, mLight.getId(), Color.argb(toValue, 0, 0, 0)); in setBacklightValue() 640 (animation) -> mNative.setLightColor(mDeviceId, mLight.getId(), in startAnimation()
|
D | BatteryController.java | 82 private final NativeInputManagerService mNative; field in BatteryController 114 mNative = nativeService; in BatteryController() 529 isPresent ? mNative.getBatteryStatus(deviceId) : BatteryState.STATUS_UNKNOWN, in queryBatteryStateFromNative() 530 isPresent ? mNative.getBatteryCapacity(deviceId) / 100.f : Float.NaN); in queryBatteryStateFromNative() 628 final String batteryPath = mNative.getBatteryDevicePath(mState.deviceId); in startNativeMonitoring()
|
D | KeyboardLayoutManager.java | 116 private final NativeInputManagerService mNative; field in KeyboardLayoutManager 141 mNative = nativeService; in KeyboardLayoutManager() 834 mNative.reloadKeyboardLayouts(); in reloadKeyboardLayouts()
|
/frameworks/base/services/core/java/com/android/server/utils/ |
D | AnrTimer.java | 526 private long mNative = 0; field in AnrTimer.FeatureEnabled 534 mNative = nativeAnrTimerCreate(mLabel, in FeatureEnabled() 537 if (mNative == 0) throw new IllegalArgumentException("unable to create native timer"); in FeatureEnabled() 539 sAnrTimerList.put(mNative, new WeakReference(AnrTimer.this)); in FeatureEnabled() 553 int timerId = nativeAnrTimerStart(mNative, pid, uid, timeoutMs); in start() 576 if (!nativeAnrTimerCancel(mNative, timer)) { in cancel() 601 boolean accepted = nativeAnrTimerAccept(mNative, timer); in accept() 623 nativeAnrTimerDiscard(mNative, timer); in discard() 639 if (!nativeAnrTimerRelease(mNative, t.mTimerId)) { in release() 654 if (mNative == 0) { in dump() [all …]
|
/frameworks/base/core/java/android/content/res/ |
D | StringBlock.java | 67 private long mNative; // final, but gets modified when closed field in StringBlock 79 mNative = nativeCreate(data, 0, data.length); in StringBlock() 83 + ": " + nativeGetSize(mNative)); in StringBlock() 87 mNative = nativeCreate(data, offset, size); in StringBlock() 91 + ": " + nativeGetSize(mNative)); in StringBlock() 119 final int num = nativeGetSize(mNative); in getSequence() 126 String str = nativeGetString(mNative, idx); in getSequence() 131 int[] style = nativeGetStyle(mNative, idx); in getSequence() 154 String styleTag = nativeGetString(mNative, styleId); in getSequence() 214 nativeDestroy(mNative); in close() [all …]
|
D | XmlBlock.java | 53 mNative = nativeCreate(data, 0, data.length); in XmlBlock() 54 mStrings = new StringBlock(nativeGetStringBlock(mNative), false); in XmlBlock() 59 mNative = nativeCreate(data, offset, size); in XmlBlock() 60 mStrings = new StringBlock(nativeGetStringBlock(mNative), false); in XmlBlock() 77 nativeDestroy(mNative); in decOpenCountLocked() 78 mNative = 0; in decOpenCountLocked() 92 if (mNative != 0) { in newParser() 93 return new Parser(nativeCreateParseState(mNative, resId), this); in newParser() 104 if (mNative != 0) { in newParser() 105 return new Parser(nativeCreateParseState(mNative, resId), this, validator); in newParser() [all …]
|
/frameworks/opt/net/voip/src/java/android/net/rtp/ |
D | AudioGroup.java | 104 private long mNative; field in AudioGroup
|
/frameworks/base/boot/hiddenapi/ |
D | hiddenapi-max-target-o.txt | 13954 Landroid/content/res/StringBlock;->mNative:J 14005 Landroid/content/res/XmlBlock;->mNative:J 33277 Landroid/net/rtp/AudioGroup;->mNative:J 59395 Landroid/view/FrameMetricsObserver;->mNative:Lcom/android/internal/util/VirtualRefBasePtr; 62029 Landroid/view/textclassifier/TextClassifierImpl;->mNative:Landroid/view/textclassifier/TextClassifi…
|