OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:getCallerInfo
(Results
1 - 5
of
5
) sorted by null
/packages/providers/ContactsProvider/tests/src/com/android/providers/contacts/
CallerInfoIntegrationTest.java
51
CallerInfo callerInfo = CallerInfo.
getCallerInfo
(getProvider().getContext(), "18004664411");
/frameworks/base/telephony/java/com/android/internal/telephony/
CallerInfo.java
151
*
getCallerInfo
given a Cursor.
158
public static CallerInfo
getCallerInfo
(Context context, Uri contactRef, Cursor cursor) {
168
if (VDBG) Rlog.v(TAG, "
getCallerInfo
() based on cursor...");
249
*
getCallerInfo
given a URI, look up in the call-log database
256
public static CallerInfo
getCallerInfo
(Context context, Uri contactRef) {
258
return
getCallerInfo
(context, contactRef,
263
*
getCallerInfo
given a phone number, look up in the call-log database
272
public static CallerInfo
getCallerInfo
(Context context, String number) {
273
if (VDBG) Rlog.v(TAG, "
getCallerInfo
() based on number...");
290
CallerInfo info =
getCallerInfo
(context, contactUri)
[
all
...]
CallerInfoAsyncQuery.java
239
mCallerInfo = CallerInfo.
getCallerInfo
(mQueryContext, mQueryUri, cursor);
/packages/apps/Phone/src/com/android/phone/
PhoneUtils.java
693
info = CallerInfo.
getCallerInfo
(context, contactRef);
700
info = CallerInfo.
getCallerInfo
(context, number);
[
all
...]
CallCard.java
544
// with the current implementation of
getCallerInfo
and
546
CallerInfo info = PhoneUtils.
getCallerInfo
(getContext(), null /* conn */);
[
all
...]
Completed in 215 milliseconds