OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:DocumentArchive
(Results
1 - 3
of
3
) sorted by null
/frameworks/support/documents-archive/src/android/support/provider/
DocumentArchiveHelper.java
318
* Loads an instance of
DocumentArchive
lazily.
327
private
DocumentArchive
mArchive = null;
338
synchronized
DocumentArchive
get() throws FileNotFoundException {
345
mArchive =
DocumentArchive
.createForLocalFile(
349
mArchive =
DocumentArchive
.createForParcelFileDescriptor(
DocumentArchive.java
70
public class
DocumentArchive
implements Closeable {
71
private static final String TAG = "
DocumentArchive
";
90
private
DocumentArchive
(
175
public static
DocumentArchive
createForLocalFile(
179
return new
DocumentArchive
(context, file, documentId, idDelimiter, notificationUri);
199
public static
DocumentArchive
createForParcelFileDescriptor(
225
return new
DocumentArchive
(context, snapshotFile, documentId, idDelimiter,
/frameworks/support/documents-archive/tests/src/android/support/provider/
DocumentArchiveTest.java
23
import android.support.provider.
DocumentArchive
;
34
* Tests for
DocumentArchive
.
40
private
DocumentArchive
mArchive = null;
62
mArchive =
DocumentArchive
.createForLocalFile(
Completed in 53 milliseconds