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

/frameworks/base/services/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) {
82 int callerUid, int callerPid, String resolvedType, int receivingUid) {
90 int callerUid, int callerPid, String resolvedType, int receivingUid) {
91 return isPrivilegedApp(callerUid, callerPid);
98 int callerUid, int callerPid, String resolvedType, int receivingUid) {
99 return isPrivilegedApp(callerUid, callerPid) ||
107 int callerUid, int callerPid, String resolvedType, int receivingUid) {
112 return ifw.checkComponentPermission(null, callerPid, callerUi
[all...]
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.java124 public boolean checkStartActivity(Intent intent, int callerUid, int callerPid, argument
127 callerUid, callerPid, resolvedType, resolvedApp.uid);
131 int callerPid, String resolvedType, ApplicationInfo resolvedApp) {
133 callerPid, resolvedType, resolvedApp.uid);
136 public boolean checkBroadcast(Intent intent, int callerUid, int callerPid, argument
139 callerUid, callerPid, resolvedType, receivingUid);
143 int intentType, Intent intent, int callerUid, int callerPid, String resolvedType,
161 if (rule.matches(this, resolvedComponent, intent, callerUid, callerPid, resolvedType,
130 checkService(ComponentName resolvedService, Intent intent, int callerUid, int callerPid, String resolvedType, ApplicationInfo resolvedApp) argument
142 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 DEventLogger.java47 EventLogger(SynthesisRequest request, int callerUid, int callerPid, String serviceApp) { argument
50 mCallerPid = callerPid;
H A DTextToSpeechService.java418 public SpeechItem(Object caller, int callerUid, int callerPid, Bundle params) { argument
422 mCallerPid = callerPid;
493 public UtteranceSpeechItem(Object caller, int callerUid, int callerPid, Bundle params) { argument
494 super(caller, callerUid, callerPid, params);
562 public SynthesisSpeechItem(Object callerIdentity, int callerUid, int callerPid, argument
564 super(callerIdentity, callerUid, callerPid, params);
570 mEventLogger = new EventLogger(mSynthesisRequest, callerUid, callerPid,
666 int callerPid, Bundle params, String text, FileOutputStream fileOutputStream) {
667 super(callerIdentity, callerUid, callerPid, params, text);
696 public AudioSpeechItem(Object callerIdentity, int callerUid, int callerPid, argument
665 SynthesisToFileOutputStreamSpeechItem(Object callerIdentity, int callerUid, int callerPid, Bundle params, String text, FileOutputStream fileOutputStream) argument
723 SilenceSpeechItem(Object callerIdentity, int callerUid, int callerPid, Bundle params, long duration) argument
752 LoadLanguageItem(Object callerIdentity, int callerUid, int callerPid, Bundle params, String language, String country, String variant) argument
[all...]

Completed in 92 milliseconds