Searched defs:caller (Results 1 - 25 of 64) sorted by relevance

123

/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.
39 public void onInvokeV(String signature, boolean isNative, Object caller) { argument
48 public int onInvokeI(String signature, boolean isNative, Object caller) { argument
49 onInvokeV(signature, isNative, caller);
59 public long onInvokeL(String signature, boolean isNative, Object caller) { argument
60 onInvokeV(signature, isNative, caller);
70 public float onInvokeF(String signature, boolean isNative, Object caller) { argument
71 onInvokeV(signature, isNative, caller);
81 public double onInvokeD(String signature, boolean isNative, Object caller) { argument
92 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.java72 * @param caller The calling object. Null for static methods, "this" for instance methods.
74 public static void invokeV(String signature, boolean isNative, Object caller) { argument
77 i.onInvokeV(signature, isNative, caller);
79 sDefaultListener.onInvokeV(signature, isNative, caller);
87 public static int invokeI(String signature, boolean isNative, Object caller) { argument
90 return i.onInvokeI(signature, isNative, caller);
92 return sDefaultListener.onInvokeI(signature, isNative, caller);
101 public static long invokeL(String signature, boolean isNative, Object caller) { argument
104 return i.onInvokeL(signature, isNative, caller);
106 return sDefaultListener.onInvokeL(signature, isNative, caller);
115 invokeF(String signature, boolean isNative, Object caller) argument
129 invokeD(String signature, boolean isNative, Object caller) argument
143 invokeA(String signature, boolean isNative, Object caller) argument
[all...]
/frameworks/native/opengl/libs/EGL/
H A Degl_tls.h44 const char* caller, int line, EGLint error, bool quiet);
57 static T setErrorEtc(const char* caller, argument
59 setErrorEtcImpl(caller, line, error, quiet);
H A Degl_tls.cpp71 const char* caller, int line, EGLint error, bool quiet) {
77 caller, line, error, egl_strerror(error));
70 setErrorEtcImpl( const char* caller, int line, EGLint error, bool quiet) argument
/frameworks/opt/telephony/src/java/com/android/internal/telephony/cat/
H A DCatLog.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 Rlog.d("CAT", caller + ": " + msg);
41 public static void e(Object caller, String msg) { argument
42 String className = caller.getClass().getName();
47 public static void e(String caller, String msg) { argument
48 Rlog.e("CAT", caller + ": " + msg);
H A DRilMessageDecoder.java54 * @param caller
58 public static synchronized RilMessageDecoder getInstance(Handler caller, IccFileHandler fh, argument
70 mInstance[slotId] = new RilMessageDecoder(caller, fh);
82 * when complete MSG_ID_RIL_MSG_DECODED will be returned to caller.
111 private RilMessageDecoder(Handler caller, IccFileHandler fh) { argument
118 mCaller = caller;
H A DCommandParamsFactory.java85 static synchronized CommandParamsFactory getInstance(RilMessageDecoder caller, argument
91 return new CommandParamsFactory(caller, fh);
96 private CommandParamsFactory(RilMessageDecoder caller, IccFileHandler fh) { argument
97 mCaller = caller;
H A DIconLoader.java77 static IconLoader getInstance(Handler caller, IccFileHandler fh) { argument
170 // post null icon back to the caller.
216 // When all is done pass icon back to caller.
/frameworks/opt/net/voip/src/java/android/net/sip/
H A DSipSessionAdapter.java28 public void onRinging(ISipSession session, SipProfile caller, argument
/frameworks/support/v17/preference-leanback/src/android/support/v17/preference/
H A DLeanbackSettingsFragment.java63 public boolean onPreferenceDisplayDialog(PreferenceFragment caller, Preference pref) { argument
68 f.setTargetFragment(caller, 0);
73 f.setTargetFragment(caller, 0);
/frameworks/base/core/java/com/android/internal/os/
H A DTransferPipe.java73 static void go(Caller caller, IInterface iface, FileDescriptor out, argument
75 go(caller, iface, out, prefix, args, DEFAULT_TIMEOUT);
78 static void go(Caller caller, IInterface iface, FileDescriptor out, argument
83 caller.go(iface, out, prefix, args);
91 caller.go(iface, tp.getWriteFd().getFileDescriptor(), prefix, args);
/frameworks/base/media/java/android/media/
H A DAudioManagerInternal.java42 public abstract void setRingerModeInternal(int ringerMode, String caller); argument
50 int onSetRingerModeExternal(int ringerModeOld, int ringerModeNew, String caller, argument
54 int onSetRingerModeInternal(int ringerModeOld, int ringerModeNew, String caller, argument
/frameworks/opt/net/voip/src/java/com/android/server/sip/
H A DSipSessionListenerProxy.java62 public void onRinging(final ISipSession session, final SipProfile caller, argument
69 mListener.onRinging(session, caller, sessionDescription);
/frameworks/wilhelm/src/desktop/
H A DSndFile.c26 void SndFile_Callback(SLBufferQueueItf caller, void *pContext) argument
78 result = IBufferQueue_Enqueue(caller, pBuffer, size);
/frameworks/base/core/java/android/preference/
H A DPreferenceFragment.java154 boolean onPreferenceStartFragment(PreferenceFragment caller, Preference pref); argument
/frameworks/base/core/java/android/view/
H A DMenu.java256 * for more * details on the <var>caller</var>, <var>specifics</var>, and
279 * @param caller The current activity component name as defined by
297 ComponentName caller, Intent[] specifics,
296 addIntentOptions(int groupId, int itemId, int order, ComponentName caller, Intent[] specifics, Intent intent, int flags, MenuItem[] outSpecificItems) argument
/frameworks/base/core/java/com/android/internal/view/menu/
H A DActionMenu.java71 ComponentName caller, Intent[] specifics, Intent intent, int flags,
75 pm.queryIntentActivityOptions(caller, specifics, intent, 0);
70 addIntentOptions(int groupId, int itemId, int order, ComponentName caller, Intent[] specifics, Intent intent, int flags, MenuItem[] outSpecificItems) argument
/frameworks/native/libs/binder/
H A DProcessState.cpp85 sp<IBinder> ProcessState::getContextObject(const sp<IBinder>& /*caller*/)
96 sp<IBinder> ProcessState::getContextObject(const String16& name, const sp<IBinder>& caller) argument
103 //printf("Getting context object %s for %p\n", String8(name).string(), caller.get());
119 data.writeStrongBinder(caller);
/frameworks/support/v14/preference/src/android/support/v14/preference/
H A DPreferenceFragment.java168 * @param caller The fragment requesting navigation.
172 boolean onPreferenceStartFragment(PreferenceFragment caller, Preference pref); argument
184 * @param caller The fragment requesting navigation.
188 boolean onPreferenceStartScreen(PreferenceFragment caller, PreferenceScreen pref); argument
195 * @param caller The fragment containing the preference requesting the dialog.
199 boolean onPreferenceDisplayDialog(PreferenceFragment caller, Preference pref); argument
/frameworks/support/v7/appcompat/src/android/support/v7/internal/view/menu/
H A DMenuWrapperICS.java81 public int addIntentOptions(int groupId, int itemId, int order, ComponentName caller, argument
89 .addIntentOptions(groupId, itemId, order, caller, specifics, intent, flags, items);
/frameworks/support/v7/preference/src/android/support/v7/preference/
H A DPreferenceFragmentCompat.java161 * @param caller The fragment requesting navigation.
165 boolean onPreferenceStartFragment(PreferenceFragmentCompat caller, Preference pref); argument
177 * @param caller The fragment requesting navigation.
181 boolean onPreferenceStartScreen(PreferenceFragmentCompat caller, PreferenceScreen pref); argument
188 * @param caller The fragment containing the preference requesting the dialog.
192 boolean onPreferenceDisplayDialog(PreferenceFragmentCompat caller, Preference pref); argument
/frameworks/wilhelm/tests/examples/
H A DslesTestRecBuffQueue.cpp90 SLRecordItf caller,
96 (*caller)->GetPosition(caller, &pMsec);
102 (*caller)->GetPosition(caller, &pMsec);
89 RecCallback( SLRecordItf caller, void *pContext __unused, SLuint32 event) argument
H A DslesTestSendToPresetReverb.cpp54 void prefetch_callback(SLPrefetchStatusItf caller, void *context __unused, SLuint32 event) argument
58 result = (*caller)->GetFillLevel(caller, &level);
61 result = (*caller)->GetPrefetchStatus(caller, &status);
/frameworks/wilhelm/tests/listening/
H A DslesTest_playMuteSolo.cpp70 void prefetch_callback(SLPrefetchStatusItf caller, void *context __unused, SLuint32 event) argument
75 result = (*caller)->GetFillLevel(caller, &level);
78 result = (*caller)->GetPrefetchStatus(caller, &status);
102 void PlayEventCallback( SLPlayItf caller __unused, void *pContext, SLuint32 event __unused)

Completed in 4568 milliseconds

123