Home | History | Annotate | Download | only in assetprovider

Lines Matching defs:path

62         // interface. Looks up the file indicated by /res/assets/{uri.path}, and returns the MIME
66 String path = uri.getPath();
69 if (!fileExists(path)) {
83 // /res/assets/{uri.path} will be returned.
92 String path = uri.getPath();
94 return mAssets.openFd(path);
103 * @param path Fully qualified path to file.
106 private boolean fileExists(String path) {
109 mAssets.openFd(path).close();
112 // Unable to open file descriptor for specified path; file doesn't exist.