OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:callCursor
(Results
1 - 2
of
2
) sorted by null
/packages/apps/Bluetooth/src/com/android/bluetooth/pbap/
BluetoothPbapVcardManager.java
183
Cursor
callCursor
= null;
185
callCursor
= mResolver.query(myUri, null, selection, null,
187
if (
callCursor
!= null) {
188
size =
callCursor
.getCount();
191
if (
callCursor
!= null) {
192
callCursor
.close();
208
Cursor
callCursor
= null;
211
callCursor
= mResolver.query(myUri, projection, selection, null,
213
if (
callCursor
!= null) {
214
for (
callCursor
.moveToFirst(); !callCursor.isAfterLast()
[
all
...]
/packages/apps/Dialer/src/com/android/dialer/
CallDetailActivity.java
680
Cursor
callCursor
= resolver.query(callUri, CALL_LOG_PROJECTION, null, null, null);
682
if (
callCursor
== null || !
callCursor
.moveToFirst()) {
687
final String number =
callCursor
.getString(NUMBER_COLUMN_INDEX);
688
final int numberPresentation =
callCursor
.getInt(
690
final long date =
callCursor
.getLong(DATE_COLUMN_INDEX);
691
final long duration =
callCursor
.getLong(DURATION_COLUMN_INDEX);
692
final int callType =
callCursor
.getInt(CALL_TYPE_COLUMN_INDEX);
693
String countryIso =
callCursor
.getString(COUNTRY_ISO_COLUMN_INDEX);
694
final String geocode =
callCursor
.getString(GEOCODED_LOCATION_COLUMN_INDEX)
[
all
...]
Completed in 32 milliseconds