Searched refs:uri (Results 201 - 225 of 353) sorted by relevance

1234567891011>>

/frameworks/base/media/java/android/media/
H A DMediaHTTPConnection.java72 public IBinder connect(String uri, String headers) { argument
74 Log.d(TAG, "connect: uri=" + uri + ", headers=" + headers);
80 mURL = new URL(uri);
H A DThumbnailUtils.java303 Uri uri, ContentResolver cr, ParcelFileDescriptor pfd,
307 if (pfd == null) pfd = makeInputStream(uri, cr);
345 Uri uri, ContentResolver cr) {
347 return cr.openFileDescriptor(uri, "r");
302 makeBitmap(int minSideLength, int maxNumOfPixels, Uri uri, ContentResolver cr, ParcelFileDescriptor pfd, BitmapFactory.Options options) argument
344 makeInputStream( Uri uri, ContentResolver cr) argument
/frameworks/base/packages/DocumentsUI/tests/src/com/android/documentsui/
H A DCopyTest.java91 public void notifyChange(Uri uri, ContentObserver observer, boolean syncToNetwork) { argument
99 if (DocumentsContract.isDocumentUri(mContext, uri)) {
100 Log.d(TAG, "Notification: " + uri);
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/policy/
H A DZenModeControllerImpl.java292 public void onChange(boolean selfChange, Uri uri) { argument
293 if (Global.getUriFor(Global.DEVICE_PROVISIONED).equals(uri)
294 || Secure.getUriFor(Secure.USER_SETUP_COMPLETE).equals(uri)) {
/frameworks/base/services/core/java/com/android/server/telecom/
H A DTelecomLoaderService.java285 public void onChange(boolean selfChange, Uri uri, int userId) {
286 if (defaultSmsAppUri.equals(uri)) {
293 } else if (defaultDialerAppUri.equals(uri)) {
/frameworks/base/tools/aapt2/
H A DSourceXmlPullParser.cpp200 const char* uri) {
202 std::u16string namespaceUri = uri != nullptr ? util::utf8ToUtf16(uri) : std::u16string();
199 startNamespaceHandler(void* userData, const char* prefix, const char* uri) argument
/frameworks/av/drm/libdrmframework/include/
H A DNoOpDrmManagerClientImpl.h58 int uniqueId, const char* uri, const char* mime);
/frameworks/av/drm/libdrmframework/plugins/passthru/include/
H A DDrmPassthruPlugIn.h80 int uniqueId, DecryptHandle* decryptHandle, const char* uri);
/frameworks/av/include/drm/
H A DDrmManagerClient.h78 * @param[in] uri Path of the protected content to be decrypted
83 sp<DecryptHandle> openDecryptSession(const char* uri, const char* mime);
/frameworks/av/include/media/stagefright/
H A DDataSource.h51 const char *uri,
/frameworks/base/test-runner/src/android/test/mock/
H A DMockCursor.java221 public void setNotificationUri(ContentResolver cr, Uri uri) { argument
/frameworks/opt/photoviewer/src/com/android/ex/photo/fragments/
H A DPhotoViewFragment.java325 String uri = null;
328 uri = mThumbnailUri;
331 uri = mResolvedPhotoUri;
334 return mCallback.onCreateBitmapLoader(id, args, uri);
/frameworks/opt/vcard/java/com/android/vcard/
H A DVCardComposer.java510 Uri uri = mContentUriForRawContactsEntity;
514 uri = rawContactEntitlesInfo.rawContactEntitlesUri;
523 mContentResolver, uri, selection, selectionArgs, null);
536 uri, null, selection, selectionArgs, null));
/frameworks/support/tests/java/android/support/v4/provider/
H A DDocumentFileTest.java155 assertEquals("uri", 12, readInt(foo.getUri()));
167 assertEquals("uri", 13, readInt(foo.getUri()));
322 private void writeInt(Uri uri, int value) throws IOException { argument
324 getContext().getContentResolver().openOutputStream(uri));
341 private int readInt(Uri uri) throws IOException { argument
343 getContext().getContentResolver().openInputStream(uri));
/frameworks/wilhelm/src/android/
H A Dandroid_GenericMediaPlayer.h144 bool isDistantProtocol(const char *uri);
/frameworks/wilhelm/tests/mimeUri/
H A DslesTestSlowDownUri.cpp188 SLDataLocator_URI uri; local
224 uri.locatorType = SL_DATALOCATOR_URI;
225 uri.URI = (SLchar*) path;
231 audioSource.pLocator = (void *)&uri;
/frameworks/base/core/java/android/app/
H A DDownloadManager.java421 * @param uri the HTTP or HTTPS URI to download.
423 public Request(Uri uri) { argument
424 if (uri == null) {
427 String scheme = uri.getScheme();
429 throw new IllegalArgumentException("Can only download HTTP/HTTPS URIs: " + uri);
431 mUri = uri;
451 public Request setDestinationUri(Uri uri) { argument
452 mDestinationUri = uri;
846 Uri uri = baseUri;
890 return resolver.query(uri, projectio
[all...]
/frameworks/opt/photoviewer/src/com/android/ex/photo/
H A DPhotoViewController.java131 /** The uri of the initial photo */
135 /** The uri of the currently viewed photo */
236 // uri of the photos to view; optional
267 // We allow specifying the current photo by either index or uri.
511 public Loader<BitmapResult> onCreateBitmapLoader(int id, Bundle args, String uri) { argument
516 return new PhotoBitmapLoader(mActivity.getContext(), uri);
547 final Uri uri;
549 uri = Uri.parse(uriString).buildUpon().clearQuery().build();
551 uri = Uri.parse(uriString).buildUpon().query(null).build();
553 if (currentPhotoUri != null && currentPhotoUri.equals(uri)) {
[all...]
/frameworks/wilhelm/tests/sandbox/
H A Dxaplay.c298 fprintf(stderr, "usage: %s [-a] [-c] [-d#] [-D#] [-f#] [-F#] [-l] [-n#] [-p#] [-s#] uri\n",
312 const char *uri = argv[i]; local
317 fd = open(uri, O_RDONLY);
319 perror(uri);
326 perror(uri);
330 fprintf(stderr, "%s: not an ordinary file\n", uri);
336 perror(uri);
341 fprintf(stderr, "%s: warning file length %zu is not a multiple of %d\n", uri, filelen,
346 printf("%s has %zu total packets\n", uri, totalPackets);
396 locUri.URI = (XAchar *) uri;
[all...]
/frameworks/av/drm/libdrmframework/
H A DDrmManagerClient.cpp127 const char* uri, const char* mime) {
130 mUniqueId, uri, mime);
126 openDecryptSession( const char* uri, const char* mime) argument
/frameworks/av/media/libstagefright/httplive/
H A DPlaylistFetcher.h59 const char *uri,
222 AString &uri,
/frameworks/base/core/java/android/net/
H A DProxy.java111 URI uri = URI.create(url);
114 List<java.net.Proxy> proxyList = proxySelector.select(uri);
/frameworks/base/media/tests/CameraBrowser/src/com/android/camerabrowser/
H A DObjectViewer.java76 public void onScanCompleted(String path, Uri uri) { argument
80 Intent intent = new Intent(Intent.ACTION_VIEW, uri);
/frameworks/base/packages/DocumentsUI/src/com/android/documentsui/
H A DDirectoryLoader.java83 public DirectoryLoader(Context context, int type, RootInfo root, DocumentInfo doc, Uri uri, argument
89 mUri = uri;
H A DRecentLoader.java130 final Uri uri = DocumentsContract.buildRecentDocumentsUri(authority, rootId);
132 uri, null, null, null, DirectoryLoader.getQuerySortOrder(mSortOrder));

Completed in 705 milliseconds

1234567891011>>