Searched defs:opPkg (Results 1 - 7 of 7) sorted by relevance

/frameworks/base/core/java/android/os/
H A DNullVibrator.java45 public void vibrate(int uid, String opPkg, long milliseconds, AudioAttributes attributes) { argument
52 public void vibrate(int uid, String opPkg, long[] pattern, int repeat, argument
H A DVibrator.java140 public abstract void vibrate(int uid, String opPkg, long milliseconds, argument
148 public abstract void vibrate(int uid, String opPkg, long[] pattern, int repeat, argument
H A DSystemVibrator.java62 public void vibrate(int uid, String opPkg, long milliseconds, AudioAttributes attributes) { argument
68 mService.vibrate(uid, opPkg, milliseconds, usageForAttributes(attributes), mToken);
78 public void vibrate(int uid, String opPkg, long[] pattern, int repeat, argument
89 mService.vibratePattern(uid, opPkg, pattern, repeat, usageForAttributes(attributes),
/frameworks/base/core/java/android/service/notification/
H A DStatusBarNotification.java39 private final String opPkg; field in class:StatusBarNotification
49 public StatusBarNotification(String pkg, String opPkg, int id, String tag, int uid, argument
51 this(pkg, opPkg, id, tag, uid, initialPid, score, notification, user,
55 public StatusBarNotification(String pkg, String opPkg, int id, String tag, int uid, argument
62 this.opPkg = opPkg;
77 this.opPkg = in.readString();
113 out.writeString(this.opPkg);
154 return new StatusBarNotification(this.pkg, this.opPkg,
161 return new StatusBarNotification(this.pkg, this.opPkg,
[all...]
/frameworks/base/core/java/android/hardware/input/
H A DInputManager.java1045 public void vibrate(int uid, String opPkg, long milliseconds, AudioAttributes attributes) { argument
1053 public void vibrate(int uid, String opPkg, long[] pattern, int repeat, argument
/frameworks/base/services/core/java/com/android/server/
H A DVibratorService.java104 Vibration(IBinder token, long millis, int usageHint, int uid, String opPkg) { argument
105 this(token, millis, null, 0, usageHint, uid, opPkg);
109 String opPkg) {
110 this(token, 0, pattern, repeat, usageHint, uid, opPkg);
114 int repeat, int usageHint, int uid, String opPkg) {
122 mOpPkg = opPkg;
163 String opPkg; field in class:VibratorService.VibrationInfo
166 int usageHint, int uid, String opPkg) {
173 this.opPkg = opPkg;
108 Vibration(IBinder token, long[] pattern, int repeat, int usageHint, int uid, String opPkg) argument
113 Vibration(IBinder token, long millis, long[] pattern, int repeat, int usageHint, int uid, String opPkg) argument
165 VibrationInfo(long timeout, long startTime, long[] pattern, int repeat, int usageHint, int uid, String opPkg) argument
278 vibrate(int uid, String opPkg, long milliseconds, int usageHint, IBinder token) argument
[all...]
/frameworks/base/services/core/java/com/android/server/notification/
H A DNotificationManagerService.java1161 public void enqueueNotificationWithTag(String pkg, String opPkg, String tag, int id,
1163 enqueueNotificationInternal(pkg, opPkg, Binder.getCallingUid(),
2000 public void enqueueNotification(String pkg, String opPkg, int callingUid, int callingPid,
2002 enqueueNotificationInternal(pkg, opPkg, callingUid, callingPid, tag, id, notification,
2031 void enqueueNotificationInternal(final String pkg, final String opPkg, final int callingUid, argument
2117 pkg, opPkg, id, tag, callingUid, callingPid, score, notification,

Completed in 310 milliseconds