Searched refs:caller (Results 1 - 25 of 31) sorted by relevance

12

/frameworks/base/tools/layoutlib/create/src/com/android/tools/layoutlib/create/
H A DMethodAdapter.java30 * Known limitation: caller arguments are not available.
36 * @param caller The calling object. Null for static methods, "this" for instance methods.
38 public void onInvokeV(String signature, boolean isNative, Object caller) { argument
46 public int onInvokeI(String signature, boolean isNative, Object caller) { argument
47 onInvokeV(signature, isNative, caller);
56 public long onInvokeL(String signature, boolean isNative, Object caller) { argument
57 onInvokeV(signature, isNative, caller);
66 public float onInvokeF(String signature, boolean isNative, Object caller) { argument
67 onInvokeV(signature, isNative, caller);
76 public double onInvokeD(String signature, boolean isNative, Object caller) { argument
86 onInvokeA(String signature, boolean isNative, Object caller) argument
[all...]
H A DMethodListener.java31 * Known limitation: caller arguments are not available.
37 * @param caller The calling object. Null for static methods, "this" for instance methods.
39 public void onInvokeV(String signature, boolean isNative, Object caller); argument
46 public int onInvokeI(String signature, boolean isNative, Object caller); argument
53 public long onInvokeL(String signature, boolean isNative, Object caller); argument
60 public float onInvokeF(String signature, boolean isNative, Object caller); argument
67 public double onInvokeD(String signature, boolean isNative, Object caller); argument
74 public Object onInvokeA(String signature, boolean isNative, Object caller); argument
H A DOverrideMethod.java71 * @param caller The calling object. Null for static methods, "this" for instance methods.
73 public static void invokeV(String signature, boolean isNative, Object caller) { argument
76 i.onInvokeV(signature, isNative, caller);
78 sDefaultListener.onInvokeV(signature, isNative, caller);
86 public static int invokeI(String signature, boolean isNative, Object caller) { argument
89 return i.onInvokeI(signature, isNative, caller);
91 return sDefaultListener.onInvokeI(signature, isNative, caller);
100 public static long invokeL(String signature, boolean isNative, Object caller) { argument
103 return i.onInvokeL(signature, isNative, caller);
105 return sDefaultListener.onInvokeL(signature, isNative, caller);
114 invokeF(String signature, boolean isNative, Object caller) argument
128 invokeD(String signature, boolean isNative, Object caller) argument
142 invokeA(String signature, boolean isNative, Object caller) argument
[all...]
/frameworks/base/telephony/java/com/android/internal/telephony/gsm/stk/
H A DStkLog.java24 public static void d(Object caller, String msg) { argument
29 String className = caller.getClass().getName();
34 public static void d(String caller, String msg) { argument
39 Log.d("STK", caller + ": " + msg);
H A DRilMessageDecoder.java50 * @param caller
54 public static synchronized RilMessageDecoder getInstance(Handler caller, SIMFileHandler fh) { argument
56 sInstance = new RilMessageDecoder(caller, fh);
64 * when complete MSG_ID_RIL_MSG_DECODED will be returned to caller.
93 private RilMessageDecoder(Handler caller, SIMFileHandler fh) { argument
100 mCaller = caller;
H A DCommandParamsFactory.java55 static synchronized CommandParamsFactory getInstance(RilMessageDecoder caller, argument
61 return new CommandParamsFactory(caller, fh);
66 private CommandParamsFactory(RilMessageDecoder caller, SIMFileHandler fh) { argument
67 mCaller = caller;
H A DIconLoader.java78 static IconLoader getInstance(Handler caller, SIMFileHandler fh) { argument
167 // post null icon back to the caller.
213 // When all is done pass icon back to caller.
/frameworks/base/core/tests/coretests/src/android/app/activity/
H A DLocalDeniedReceiver.java32 IBinder caller = intent.getIBinderExtra("caller");
36 caller.transact(BroadcastTest.GOT_RECEIVE_TRANSACTION, data, null, 0);
H A DLocalGrantedReceiver.java32 IBinder caller = intent.getIBinderExtra("caller");
36 caller.transact(BroadcastTest.GOT_RECEIVE_TRANSACTION, data, null, 0);
H A DRemoteDeniedReceiver.java32 IBinder caller = intent.getIBinderExtra("caller");
36 caller.transact(BroadcastTest.GOT_RECEIVE_TRANSACTION, data, null, 0);
H A DRemoteGrantedReceiver.java32 IBinder caller = intent.getIBinderExtra("caller");
36 caller.transact(BroadcastTest.GOT_RECEIVE_TRANSACTION, data, null, 0);
H A DAbortReceiver.java37 IBinder caller = intent.getIBinderExtra("caller");
41 caller.transact(LaunchpadActivity.GOT_RECEIVE_TRANSACTION, data, null, 0);
H A DRemoteReceiver.java40 IBinder caller = intent.getIBinderExtra("caller");
44 caller.transact(LaunchpadActivity.GOT_RECEIVE_TRANSACTION, data, null, 0);
H A DLocalReceiver.java67 IBinder caller = intent.getIBinderExtra("caller");
71 caller.transact(LaunchpadActivity.GOT_RECEIVE_TRANSACTION, data, null, 0);
/frameworks/base/include/binder/
H A DProcessState.h45 sp<IBinder> getContextObject(const sp<IBinder>& caller);
50 const sp<IBinder>& caller);
57 const sp<IBinder>& caller,
/frameworks/base/core/java/android/app/
H A DIActivityManager.java69 * Returned by startActivity() if the caller asked that the Intent not
83 public int startActivity(IApplicationThread caller, argument
87 public WaitResult startActivityAndWait(IApplicationThread caller, argument
91 public int startActivityWithConfig(IApplicationThread caller, argument
95 public int startActivityIntentSender(IApplicationThread caller, argument
105 public Intent registerReceiver(IApplicationThread caller, argument
111 public int broadcastIntent(IApplicationThread caller, Intent intent, argument
115 public void unbroadcastIntent(IApplicationThread caller, Intent intent) throws RemoteException; argument
146 public ContentProviderHolder getContentProvider(IApplicationThread caller, argument
148 public void removeContentProvider(IApplicationThread caller, argument
150 publishContentProviders(IApplicationThread caller, List<ContentProviderHolder> providers) argument
154 startService(IApplicationThread caller, Intent service, String resolvedType) argument
156 stopService(IApplicationThread caller, Intent service, String resolvedType) argument
162 bindService(IApplicationThread caller, IBinder token, Intent service, String resolvedType, IServiceConnection connection, int flags) argument
218 grantUriPermission(IApplicationThread caller, String targetPkg, Uri uri, int mode) argument
220 revokeUriPermission(IApplicationThread caller, Uri uri, int mode) argument
250 reportPss(IApplicationThread caller, int pss) argument
[all...]
H A DActivityManagerNative.java1279 public int startActivity(IApplicationThread caller, Intent intent, argument
1287 data.writeStrongBinder(caller != null ? caller.asBinder() : null);
1304 public WaitResult startActivityAndWait(IApplicationThread caller, Intent intent, argument
1312 data.writeStrongBinder(caller != null ? caller.asBinder() : null);
1329 public int startActivityWithConfig(IApplicationThread caller, Intent intent, argument
1337 data.writeStrongBinder(caller != null ? caller.asBinder() : null);
1355 public int startActivityIntentSender(IApplicationThread caller, argument
1442 registerReceiver(IApplicationThread caller, IIntentReceiver receiver, IntentFilter filter, String perm) argument
1475 broadcastIntent(IApplicationThread caller, Intent intent, String resolvedType, IIntentReceiver resultTo, int resultCode, String resultData, Bundle map, String requiredPermission, boolean serialized, boolean sticky) argument
1501 unbroadcastIntent(IApplicationThread caller, Intent intent) argument
1832 getContentProvider(IApplicationThread caller, String name) argument
1851 publishContentProviders(IApplicationThread caller, List<ContentProviderHolder> providers) argument
1865 removeContentProvider(IApplicationThread caller, String name) argument
1893 startService(IApplicationThread caller, Intent service, String resolvedType) argument
1909 stopService(IApplicationThread caller, Intent service, String resolvedType) argument
1960 bindService(IApplicationThread caller, IBinder token, Intent service, String resolvedType, IServiceConnection connection, int flags) argument
2323 grantUriPermission(IApplicationThread caller, String targetPkg, Uri uri, int mode) argument
2337 revokeUriPermission(IApplicationThread caller, Uri uri, int mode) argument
2479 reportPss(IApplicationThread caller, int pss) argument
[all...]
/frameworks/base/core/java/android/view/
H A DMenu.java249 * for more * details on the <var>caller</var>, <var>specifics</var>, and
272 * @param caller The current activity component name as defined by
290 ComponentName caller, Intent[] specifics,
289 addIntentOptions(int groupId, int itemId, int order, ComponentName caller, Intent[] specifics, Intent intent, int flags, MenuItem[] outSpecificItems) argument
/frameworks/base/libs/binder/
H A DProcessState.cpp96 sp<IBinder> ProcessState::getContextObject(const sp<IBinder>& caller) argument
101 return getContextObject(String16("default"), caller);
111 sp<IBinder> ProcessState::getContextObject(const String16& name, const sp<IBinder>& caller) argument
118 //printf("Getting context object %s for %p\n", String8(name).string(), caller.get());
134 data.writeStrongBinder(caller);
/frameworks/base/core/java/android/content/pm/
H A DIPackageManager.aidl97 in ComponentName caller, in Intent[] specifics,
H A DPackageManager.java407 * package and the caller has not supplied the {@link #INSTALL_ALLOW_TEST}
1356 * @param caller The class name of the activity that is making the
1378 ComponentName caller, Intent[] specifics, Intent intent, int flags);
1377 queryIntentActivityOptions( ComponentName caller, Intent[] specifics, Intent intent, int flags) argument
/frameworks/base/services/java/com/android/server/am/
H A DActivityManagerService.java542 * is the pid of the caller who requested it (we hold a death
752 * Thread-local storage used to carry caller permissions over through
919 * Callback of last caller to {@link #requestPss}.
1917 // (2) The caller doesn't think it is dead, OR there is no thread
2952 // If the caller has requested that the target task be
3131 private final int startActivityLocked(IApplicationThread caller, argument
3188 if (err == START_SUCCESS && caller != null) {
3189 callerApp = getRecordForAppLocked(caller);
3194 Slog.w(TAG, "Unable to find app for caller " + caller
3671 startActivityMayWait(IApplicationThread caller, Intent intent, String resolvedType, Uri[] grantedUriPermissions, int grantedMode, IBinder resultTo, String resultWho, int requestCode, boolean onlyIfNeeded, boolean debug, WaitResult outResult, Configuration config) argument
3785 startActivity(IApplicationThread caller, Intent intent, String resolvedType, Uri[] grantedUriPermissions, int grantedMode, IBinder resultTo, String resultWho, int requestCode, boolean onlyIfNeeded, boolean debug) argument
3795 startActivityAndWait(IApplicationThread caller, Intent intent, String resolvedType, Uri[] grantedUriPermissions, int grantedMode, IBinder resultTo, String resultWho, int requestCode, boolean onlyIfNeeded, boolean debug) argument
3807 startActivityWithConfig(IApplicationThread caller, Intent intent, String resolvedType, Uri[] grantedUriPermissions, int grantedMode, IBinder resultTo, String resultWho, int requestCode, boolean onlyIfNeeded, boolean debug, Configuration config) argument
3817 startActivityIntentSender(IApplicationThread caller, IntentSender intent, Intent fillInIntent, String resolvedType, IBinder resultTo, String resultWho, int requestCode, int flagsMask, int flagsValues) argument
6574 grantUriPermission(IApplicationThread caller, String targetPkg, Uri uri, int modeFlags) argument
6722 revokeUriPermission(IApplicationThread caller, Uri uri, int modeFlags) argument
7813 getContentProviderImpl( IApplicationThread caller, String name) argument
8024 getContentProvider( IApplicationThread caller, String name) argument
8044 removeContentProvider(IApplicationThread caller, String name) argument
8102 publishContentProviders(IApplicationThread caller, List<ContentProviderHolder> providers) argument
8560 reportPss(IApplicationThread caller, int pss) argument
11365 startServiceLocked(IApplicationThread caller, Intent service, String resolvedType, int callingPid, int callingUid) argument
11415 startService(IApplicationThread caller, Intent service, String resolvedType) argument
11444 stopService(IApplicationThread caller, Intent service, String resolvedType) argument
11618 bindService(IApplicationThread caller, IBinder token, Intent service, String resolvedType, IServiceConnection connection, int flags) argument
12195 registerReceiver(IApplicationThread caller, IIntentReceiver receiver, IntentFilter filter, String permission) argument
12656 broadcastIntent(IApplicationThread caller, Intent intent, String resolvedType, IIntentReceiver resultTo, int resultCode, String resultData, Bundle map, String requiredPermission, boolean serialized, boolean sticky) argument
12714 unbroadcastIntent(IApplicationThread caller, Intent intent) argument
[all...]
/frameworks/base/core/java/com/android/internal/os/
H A DZygoteInit.java615 } catch (MethodAndArgsCaller caller) {
616 caller.run();
763 * so the caller may want to close the original descriptors.
/frameworks/base/cmds/runtime/
H A Dmain_runtime.cpp197 const String16& name, const sp<IBinder>& caller, void* userData)
196 contextChecker( const String16& name, const sp<IBinder>& caller, void* userData) argument
/frameworks/base/test-runner/src/android/test/mock/
H A DMockPackageManager.java198 public List<ResolveInfo> queryIntentActivityOptions(ComponentName caller, argument

Completed in 317 milliseconds

12