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

123

/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 Log.d("CAT", caller + ": " + msg);
H A DRilMessageDecoder.java50 * @param caller
54 public static synchronized RilMessageDecoder getInstance(Handler caller, IccFileHandler 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, IccFileHandler fh) { argument
100 mCaller = caller;
H A DCommandParamsFactory.java59 static synchronized CommandParamsFactory getInstance(RilMessageDecoder caller, argument
65 return new CommandParamsFactory(caller, fh);
70 private CommandParamsFactory(RilMessageDecoder caller, IccFileHandler fh) { argument
71 mCaller = caller;
H A DIconLoader.java78 static IconLoader getInstance(Handler caller, IccFileHandler fh) { argument
167 // post null icon back to the caller.
213 // When all is done pass icon back to caller.
/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.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/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/base/voip/java/android/net/sip/
H A DSipSessionAdapter.java28 public void onRinging(ISipSession session, SipProfile caller, argument
H A DSipSession.java124 * @param caller the SIP profile of the caller
125 * @param sessionDescription the caller's session description
127 public void onRinging(SipSession session, SipProfile caller, argument
472 public void onRinging(ISipSession session, SipProfile caller,
475 mListener.onRinging(SipSession.this, caller,
/frameworks/base/services/java/com/android/server/am/
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/voip/java/com/android/server/sip/
H A DSipSessionListenerProxy.java59 public void onRinging(final ISipSession session, final SipProfile caller, argument
65 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/wilhelm/tests/mimeUri/
H A DslesTestPlayUri2.cpp39 void PlayEventCallback( SLPlayItf caller, void *pContext, SLuint32 event) argument
H A DslesTestGetPositionUri.cpp66 void PrefetchEventCallback( SLPrefetchStatusItf caller, void *pContext, SLuint32 event) argument
69 SLresult res = (*caller)->GetFillLevel(caller, &level); CheckErr(res);
72 res = (*caller)->GetPrefetchStatus(caller, &status); CheckErr(res);
91 SLPlayItf caller,
100 res = (*caller)->GetPosition(caller, &posMsec); CheckErr(res);
113 res = (*caller)->GetPosition(caller,
90 PlayEventCallback( SLPlayItf caller, void *pContext, SLuint32 event) argument
[all...]
H A DslesTestLoopUri.cpp63 void PrefetchEventCallback( SLPrefetchStatusItf caller, void *pContext, SLuint32 event) argument
69 result = (*caller)->GetFillLevel(caller, &level);
72 result = (*caller)->GetPrefetchStatus(caller, &status);
105 SLPlayItf caller,
104 PlayEventCallback( SLPlayItf caller, void *pContext, SLuint32 event) argument
/frameworks/base/core/java/android/preference/
H A DPreferenceFragment.java149 boolean onPreferenceStartFragment(PreferenceFragment caller, Preference pref); argument
/frameworks/base/core/java/android/view/
H A DMenu.java255 * for more * details on the <var>caller</var>, <var>specifics</var>, and
278 * @param caller The current activity component name as defined by
296 ComponentName caller, Intent[] specifics,
295 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.cpp89 sp<IBinder> ProcessState::getContextObject(const sp<IBinder>& caller) argument
100 sp<IBinder> ProcessState::getContextObject(const String16& name, const sp<IBinder>& caller) argument
107 //printf("Getting context object %s for %p\n", String8(name).string(), caller.get());
123 data.writeStrongBinder(caller);
/frameworks/wilhelm/tests/examples/
H A DslesTestFeedback.cpp62 static void recorderCallback(SLAndroidSimpleBufferQueueItf caller, void *context) argument
121 static void playerCallback(SLBufferQueueItf caller, void *context) argument
H A DslesTestRecBuffQueue.cpp92 SLRecordItf caller,
98 (*caller)->GetPosition(caller, &pMsec);
104 (*caller)->GetPosition(caller, &pMsec);
91 RecCallback( SLRecordItf caller, void *pContext, SLuint32 event) argument
H A DslesTestSendToPresetReverb.cpp54 void prefetch_callback(SLPrefetchStatusItf caller, void *context, SLuint32 event) argument
59 result = (*caller)->GetFillLevel(caller, &level);
62 result = (*caller)->GetPrefetchStatus(caller, &status);
/frameworks/wilhelm/tests/listening/
H A DslesTest_playMuteSolo.cpp70 void prefetch_callback(SLPrefetchStatusItf caller, void *context, SLuint32 event) argument
75 result = (*caller)->GetFillLevel(caller, &level);
78 result = (*caller)->GetPrefetchStatus(caller, &status);
102 void PlayEventCallback( SLPlayItf caller, void *pContext, SLuint32 event) argument

Completed in 556 milliseconds

123