HomeSort by relevance Sort by last modified time
    Searched defs:streamTypes (Results 1 - 6 of 6) sorted by null

  /packages/apps/DocumentsUI/src/com/android/documentsui/base/
DocumentInfo.java 352 final String[] streamTypes = resolver.getStreamTypes(uri, "*/*");
353 if (streamTypes != null) {
354 mimeTypes.addAll(Arrays.asList(streamTypes));
  /cts/hostsidetests/appsecurity/test-apps/DocumentProvider/src/com/android/cts/documentprovider/
MyDocumentsProvider.java 119 String[] streamTypes) {
124 doc.streamTypes = streamTypes;
208 public String[] streamTypes;
284 doc.streamTypes);
435 return doc.streamTypes;
452 for (String streamType : doc.streamTypes) {
  /packages/apps/DocumentsUI/src/com/android/documentsui/services/
CopyJob.java 379 String[] streamTypes = null;
381 streamTypes = getContentResolver().getStreamTypes(src.derivedUri, "*/*");
389 if (streamTypes != null && streamTypes.length > 0) {
390 dstMimeType = streamTypes[0];
    [all...]
  /cts/hostsidetests/appsecurity/test-apps/DocumentClient/src/com/android/cts/documentclient/
DocumentsClientTest.java 186 final String streamTypes[] = resolver.getStreamTypes(uri, "*/*");
187 assertEquals(1, streamTypes.length);
188 assertEquals("text/plain", streamTypes[0]);
200 "Converted contents.".getBytes(), readTypedFully(uri, streamTypes[0]));
  /packages/apps/DocumentsUI/tests/common/com/android/documentsui/
StubProvider.java 381 if (document == null || !document.file.isFile() || document.streamTypes == null) {
384 for (final String mimeType : document.streamTypes) {
415 if (document.streamTypes == null) {
418 return document.streamTypes.toArray(new String[document.streamTypes.size()]);
542 List<String> streamTypes = extras.getStringArrayList(EXTRA_STREAM_TYPES);
548 documentId = createDocument(rootId, mimeType, name, flags, streamTypes);
574 List<String> streamTypes) throws FileNotFoundException {
580 flags, streamTypes);
699 String rootId, String path, String mimeType, List<String> streamTypes, byte[] content
    [all...]
  /frameworks/av/media/libstagefright/httplive/
PlaylistFetcher.cpp     [all...]

Completed in 7326 milliseconds