HomeSort by relevance Sort by last modified time
    Searched defs:mUid (Results 1 - 25 of 134) sorted by null

1 2 3 4 5 6

  /frameworks/av/services/audiopolicy/common/managerdefinitions/include/
AudioPatch.h 37 uid_t mUid;
AudioSourceDescriptor.h 37 mDevice(device), mAttributes(*attributes), mUid(uid) {}
46 uid_t mUid;
SessionRoute.h 46 : mUid(uid),
62 uid_t mUid;
  /frameworks/base/keystore/java/android/security/keystore/
AndroidKeyStoreLoadStoreParameter.java 24 private final int mUid;
27 mUid = uid;
36 return mUid;
AndroidKeyStoreKey.java 28 private final int mUid;
33 mUid = uid;
42 return mUid;
68 result = prime * result + mUid;
98 if (mUid != other.mUid) {
  /packages/services/Car/procfs-inspector/server/
process.h 30 uid_t getUid() { return mUid; }
33 ProcessInfo(pid_t pid = -1, uid_t uid = -1) : mPid(pid), mUid(uid) {}
40 uid_t mUid;
  /frameworks/base/cmds/statsd/src/config/
ConfigKey.h 41 return mUid;
48 if (mUid < that.mUid) {
51 if (mUid > that.mUid) {
58 return mUid == that.mUid && mId == that.mId;
65 int mUid;
  /frameworks/native/services/sensorservice/
SensorDirectConnection.h 43 uid_t getUid() const { return mUid; }
69 const uid_t mUid;
SensorRegistrationInfo.h 48 mUid = (thread != nullptr) ? thread->getCallingUid() : -1;
72 << " uid=" << std::setw(5) << mUid << " package=" << mPackageName;
84 uid_t mUid;
  /frameworks/base/core/java/android/service/notification/
NotifyingApp.java 29 private int mUid;
36 mUid = in.readInt();
42 return mUid;
48 public NotifyingApp setUid(int mUid) {
49 this.mUid = mUid;
96 dest.writeInt(mUid);
134 + "mUid=" + mUid
  /frameworks/base/core/java/android/view/inputmethod/
InputBinding.java 43 final int mUid;
62 mUid = uid;
76 mUid = binding.getUid();
83 mUid = source.readInt();
107 return mUid;
120 + " / uid " + mUid + " / pid " + mPid + "}";
131 dest.writeInt(mUid);
  /system/core/libsysutils/include/sysutils/
SocketClient.h 20 uid_t mUid;
40 uid_t getUid() const { return mUid; }
  /system/core/logd/
LogWhiteBlackList.h 32 const uid_t mUid;
43 return mUid;
LogBufferElement.h 39 const uint32_t mUid;
71 return mUid;
  /cts/tests/app/src/android/app/cts/android/app/cts/tools/
UidImportanceListener.java 29 final int mUid;
41 mUid = uid;
51 if (uid == mUid) {
  /frameworks/base/cmds/statsd/src/logd/
LogEvent.h 36 mUid = id;
44 return mUid;
51 int32_t mUid;
  /frameworks/base/services/core/java/com/android/server/location/
GeofenceState.java 39 public final int mUid;
54 mUid = uid;
  /packages/apps/Settings/src/com/android/settings/fuelgauge/batterytip/
AppInfo.java 46 uid = builder.mUid;
111 private int mUid;
129 mUid = uid;
  /packages/apps/Settings/tests/robotests/src/com/android/settings/testutils/shadow/
ShadowPermissionChecker.java 58 private final int mUid;
64 mUid = uid;
80 && mUid == other.mUid
87 return Objects.hash(mPid, mUid, mPackageName, mPermission);
  /frameworks/av/media/libaudioclient/include/media/
AudioPolicy.h 70 uid_t mUid;
  /frameworks/av/media/libmediaplayer2/include/mediaplayer2/
MediaPlayer2AudioOutput.h 123 uid_t mUid;
mediaplayer2.h 141 uid_t mUid;
  /frameworks/base/core/java/android/accounts/
GrantCredentialsPermissionActivity.java 44 private int mUid;
63 // Grant 'account'/'type' to mUID
66 mUid = extras.getInt(EXTRAS_REQUESTING_UID);
68 final String[] packages = pm.getPackagesForUid(mUid);
162 AccountManager.get(this).updateAppPermission(mAccount, mAuthTokenType, mUid, true);
170 AccountManager.get(this).updateAppPermission(mAccount, mAuthTokenType, mUid, false);
  /frameworks/base/core/java/android/app/usage/
CacheQuotaHint.java 39 private final int mUid;
49 this.mUid = builder.mUid;
59 return mUid;
73 dest.writeInt(mUid);
89 && mUid == other.mUid && mQuota == other.mQuota;
97 return Objects.hash(this.mUuid, this.mUid, this.mUsageStats, this.mQuota);
102 private int mUid;
123 mUid = uid
    [all...]
  /frameworks/base/services/tests/uiservicestests/src/com/android/server/notification/
BadgeExtractorTest.java 55 private int mUid = 1000;
67 when(mConfig.getNotificationChannel(mPkg, mUid, "a", false)).thenReturn(channel);
76 StatusBarNotification sbn = new StatusBarNotification(mPkg, mPkg, mId, mTag, mUid,
92 when(mConfig.canShowBadge(mPkg, mUid)).thenReturn(true);
106 when(mConfig.canShowBadge(mPkg, mUid)).thenReturn(false);
120 when(mConfig.canShowBadge(mPkg, mUid)).thenReturn(true);
134 when(mConfig.canShowBadge(mPkg, mUid)).thenReturn(false);
148 when(mConfig.canShowBadge(mPkg, mUid)).thenReturn(true);
162 when(mConfig.canShowBadge(mPkg, mUid)).thenReturn(true);
178 when(mConfig.canShowBadge(mPkg, mUid)).thenReturn(true)
    [all...]

Completed in 310 milliseconds

1 2 3 4 5 6