Searched defs:callerPid (Results 1 - 16 of 16) sorted by relevance

/frameworks/base/services/core/java/com/android/server/firewall/
H A DAndFilter.java29 int callerUid, int callerPid, String resolvedType, int receivingUid) {
31 if (!children.get(i).matches(ifw, resolvedComponent, intent, callerUid, callerPid,
28 matches(IntentFirewall ifw, ComponentName resolvedComponent, Intent intent, int callerUid, int callerPid, String resolvedType, int receivingUid) argument
H A DFilter.java30 * @param callerPid The pid of the caller
35 int callerUid, int callerPid, String resolvedType, int receivingUid);
34 matches(IntentFirewall ifw, ComponentName resolvedComponent, Intent intent, int callerUid, int callerPid, String resolvedType, int receivingUid) argument
H A DNotFilter.java36 int callerUid, int callerPid, String resolvedType, int receivingUid) {
37 return !mChild.matches(ifw, resolvedComponent, intent, callerUid, callerPid, resolvedType,
35 matches(IntentFirewall ifw, ComponentName resolvedComponent, Intent intent, int callerUid, int callerPid, String resolvedType, int receivingUid) argument
H A DOrFilter.java29 int callerUid, int callerPid, String resolvedType, int receivingUid) {
31 if (children.get(i).matches(ifw, resolvedComponent, intent, callerUid, callerPid,
28 matches(IntentFirewall ifw, ComponentName resolvedComponent, Intent intent, int callerUid, int callerPid, String resolvedType, int receivingUid) argument
H A DCategoryFilter.java38 int callerUid, int callerPid, String resolvedType, int receivingUid) {
37 matches(IntentFirewall ifw, ComponentName resolvedComponent, Intent intent, int callerUid, int callerPid, String resolvedType, int receivingUid) argument
H A DSenderFilter.java40 static boolean isPrivilegedApp(int callerUid, int callerPid) { argument
42 callerPid == Process.myPid() || callerPid == 0) {
83 int callerUid, int callerPid, String resolvedType, int receivingUid) {
91 int callerUid, int callerPid, String resolvedType, int receivingUid) {
92 return isPrivilegedApp(callerUid, callerPid);
99 int callerUid, int callerPid, String resolvedType, int receivingUid) {
100 return isPrivilegedApp(callerUid, callerPid) ||
108 int callerUid, int callerPid, String resolvedType, int receivingUid) {
113 return ifw.checkComponentPermission(null, callerPid, callerUi
[all...]
H A DSenderPackageFilter.java43 int callerUid, int callerPid, String resolvedType, int receivingUid) {
42 matches(IntentFirewall ifw, ComponentName resolvedComponent, Intent intent, int callerUid, int callerPid, String resolvedType, int receivingUid) argument
H A DSenderPermissionFilter.java37 int callerUid, int callerPid, String resolvedType, int receivingUid) {
41 return ifw.checkComponentPermission(mPermission, callerPid, callerUid, receivingUid,
36 matches(IntentFirewall ifw, ComponentName resolvedComponent, Intent intent, int callerUid, int callerPid, String resolvedType, int receivingUid) argument
H A DPortFilter.java45 int callerUid, int callerPid, String resolvedType, int receivingUid) {
44 matches(IntentFirewall ifw, ComponentName resolvedComponent, Intent intent, int callerUid, int callerPid, String resolvedType, int receivingUid) argument
H A DStringFilter.java122 int callerUid, int callerPid, String resolvedType, int receivingUid) {
121 matches(IntentFirewall ifw, ComponentName resolvedComponent, Intent intent, int callerUid, int callerPid, String resolvedType, int receivingUid) argument
H A DIntentFirewall.java127 public boolean checkStartActivity(Intent intent, int callerUid, int callerPid, argument
130 callerUid, callerPid, resolvedType, resolvedApp.uid);
134 int callerPid, String resolvedType, ApplicationInfo resolvedApp) {
136 callerPid, resolvedType, resolvedApp.uid);
139 public boolean checkBroadcast(Intent intent, int callerUid, int callerPid, argument
142 callerUid, callerPid, resolvedType, receivingUid);
146 int intentType, Intent intent, int callerUid, int callerPid, String resolvedType,
164 if (rule.matches(this, resolvedComponent, intent, callerUid, callerPid, resolvedType,
133 checkService(ComponentName resolvedService, Intent intent, int callerUid, int callerPid, String resolvedType, ApplicationInfo resolvedApp) argument
145 checkIntent(FirewallIntentResolver resolver, ComponentName resolvedComponent, int intentType, Intent intent, int callerUid, int callerPid, String resolvedType, int receivingUid) argument
/frameworks/base/core/java/android/speech/tts/
H A DEventLoggerV1.java28 EventLoggerV1(SynthesisRequest request, int callerUid, int callerPid, String serviceApp) { argument
29 super(callerUid, callerPid, serviceApp);
H A DAbstractEventLogger.java40 AbstractEventLogger(int callerUid, int callerPid, String serviceApp) { argument
42 mCallerPid = callerPid;
H A DTextToSpeechService.java756 public SpeechItem(Object caller, int callerUid, int callerPid) { argument
759 mCallerPid = callerPid;
832 public UtteranceSpeechItem(Object caller, int callerUid, int callerPid) { argument
833 super(caller, callerUid, callerPid);
908 SpeechItemV1(Object callerIdentity, int callerUid, int callerPid, argument
910 super(callerIdentity, callerUid, callerPid);
948 public SynthesisSpeechItemV1(Object callerIdentity, int callerUid, int callerPid, argument
950 super(callerIdentity, callerUid, callerPid, params, utteranceId);
956 mEventLogger = new EventLoggerV1(mSynthesisRequest, callerUid, callerPid,
1055 int callerPid, Bundl
1054 SynthesisToFileOutputStreamSpeechItemV1(Object callerIdentity, int callerUid, int callerPid, Bundle params, String utteranceId, CharSequence text, FileOutputStream fileOutputStream) argument
1081 AudioSpeechItemV1(Object callerIdentity, int callerUid, int callerPid, Bundle params, String utteranceId, Uri uri) argument
1118 SilenceSpeechItem(Object callerIdentity, int callerUid, int callerPid, String utteranceId, long duration) argument
1155 LoadLanguageItem(Object callerIdentity, int callerUid, int callerPid, String language, String country, String variant) argument
1185 LoadVoiceItem(Object callerIdentity, int callerUid, int callerPid, String voiceName) argument
[all...]
/frameworks/base/services/core/java/com/android/server/media/
H A DMediaSessionService.java429 private MediaSessionRecord createSessionInternal(int callerPid, int callerUid, int userId, argument
432 return createSessionLocked(callerPid, callerUid, userId, callerPackageName, cb, tag);
443 private MediaSessionRecord createSessionLocked(int callerPid, int callerUid, int userId, argument
452 final MediaSessionRecord session = new MediaSessionRecord(callerPid, callerUid, userId,
/frameworks/base/services/core/java/com/android/server/am/
H A DActivityManagerService.java7282 void tempWhitelistAppForPowerSave(int callerPid, int callerUid, int targetUid, long duration) { argument
7284 Slog.d(TAG, "tempWhitelistAppForPowerSave(" + callerPid + ", " + callerUid + ", "
7288 final ProcessRecord pr = mPidsSelfLocked.get(callerPid);
7290 Slog.w(TAG, "tempWhitelistAppForPowerSave() no ProcessRecord for pid " + callerPid);
7296 + callerPid + " is not allowed");

Completed in 562 milliseconds