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

/frameworks/base/services/java/com/android/server/pm/
H A DPackageVerificationResponse.java22 public final int callerUid; field in class:PackageVerificationResponse
24 public PackageVerificationResponse(int code, int callerUid) { argument
26 this.callerUid = callerUid;
/frameworks/base/core/java/android/speech/tts/
H A DEventLogger.java47 EventLogger(SynthesisRequest request, int callerUid, int callerPid, String serviceApp) { argument
49 mCallerUid = callerUid;
H A DTextToSpeechService.java404 public SpeechItem(Object caller, int callerUid, int callerPid, Bundle params) { argument
407 mCallerUid = callerUid;
534 public SynthesisSpeechItem(Object callerIdentity, int callerUid, int callerPid, argument
536 super(callerIdentity, callerUid, callerPid, params);
541 mEventLogger = new EventLogger(mSynthesisRequest, callerUid, callerPid,
636 public SynthesisToFileSpeechItem(Object callerIdentity, int callerUid, int callerPid, argument
639 super(callerIdentity, callerUid, callerPid, params, text);
663 public AudioSpeechItem(Object callerIdentity, int callerUid, int callerPid, argument
665 super(callerIdentity, callerUid, callerPid, params);
690 public SilenceSpeechItem(Object callerIdentity, int callerUid, in argument
[all...]
/frameworks/base/core/java/android/content/pm/
H A DRegisteredServicesCache.java272 private boolean inSystemImage(int callerUid) { argument
273 String[] packages = mContext.getPackageManager().getPackagesForUid(callerUid);
/frameworks/base/services/java/com/android/server/
H A DTelephonyRegistry.java73 int callerUid; field in class:TelephonyRegistry.Record
79 return "{pkgForDebug=" + pkgForDebug + " callerUid=" + callerUid +
192 int callerUid = UserHandle.getCallingUserId();
197 + " callerUid=" + callerUid);
219 r.callerUid = callerUid;
786 valid = r.callerUid == foregroundUser && (r.events & events) != 0;
789 + " r.callerUid
[all...]
H A DMountService.java1855 private boolean isUidOwnerOfPackageOrSystem(String packageName, int callerUid) { argument
1856 if (callerUid == android.os.Process.SYSTEM_UID) {
1864 final int packageUid = mPms.getPackageUid(packageName, UserHandle.getUserId(callerUid));
1868 packageUid + ", callerUid = " + callerUid);
1871 return callerUid == packageUid;
/frameworks/base/core/java/android/accounts/
H A DAccountManagerService.java1085 final int callerUid = Binder.getCallingUid();
1087 permissionIsGranted(account, authTokenType, callerUid);
1092 loginOptions.putInt(AccountManager.KEY_CALLER_UID, callerUid);
1138 Intent intent = newGrantCredentialsPermissionIntent(account, callerUid,
2222 private boolean permissionIsGranted(Account account, String authTokenType, int callerUid) { argument
2223 final boolean inSystemImage = inSystemImage(callerUid);
2225 && hasAuthenticatorUid(account.type, callerUid);
2227 && hasExplicitlyGrantedPermission(account, authTokenType, callerUid);
2230 + callerUid + ", " + account
2251 int callerUid) {
2250 hasExplicitlyGrantedPermission(Account account, String authTokenType, int callerUid) argument
[all...]

Completed in 1165 milliseconds