OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:destUri
(Results
1 - 3
of
3
) sorted by null
/packages/apps/Contacts/src/com/android/contacts/vcard/
ExportRequest.java
21
public final Uri
destUri
;
27
public ExportRequest(Uri
destUri
) {
28
this(
destUri
, null);
31
public ExportRequest(Uri
destUri
, String exportType) {
32
this.
destUri
=
destUri
;
ExportProcessor.java
106
final Uri uri = request.
destUri
;
191
Log.i(LOG_TAG, "Successfully finished exporting vCard " + request.
destUri
);
194
Log.d(LOG_TAG, "Ask MediaScanner to scan the file: " + request.
destUri
.getPath());
196
mService.updateMediaScanner(request.
destUri
.getPath());
248
mExportRequest.
destUri
.getLastPathSegment());
ImportVCardActivity.java
306
Log.w(LOG_TAG, "
destUri
is null");
390
Uri
destUri
= null;
393
destUri
= Uri.parse(context.getFileStreamPath(filename).toURI().toString());
425
return
destUri
;
[
all
...]
Completed in 29 milliseconds