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
658
Cursor
callCursor
= resolver.query(callUri, CALL_LOG_PROJECTION, null, null, null);
660
if (
callCursor
== null || !
callCursor
.moveToFirst()) {
665
final String number =
callCursor
.getString(NUMBER_COLUMN_INDEX);
666
final int numberPresentation =
callCursor
.getInt(
668
final long date =
callCursor
.getLong(DATE_COLUMN_INDEX);
669
final long duration =
callCursor
.getLong(DURATION_COLUMN_INDEX);
670
final int callType =
callCursor
.getInt(CALL_TYPE_COLUMN_INDEX);
671
String countryIso =
callCursor
.getString(COUNTRY_ISO_COLUMN_INDEX);
672
final String geocode =
callCursor
.getString(GEOCODED_LOCATION_COLUMN_INDEX)
[
all
...]
Completed in 86 milliseconds