blob: aee16265bb80809a24aca1dfa3917f7e40ea8f91 [file] [log] [blame]
Suchi Amalapurapuc028be42010-01-25 12:19:12 -08001/*
2 * Copyright (C) 2008 The Android Open Source Project
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16
17package com.android.internal.app;
18
19import android.net.Uri;
20import android.os.ParcelFileDescriptor;
Suchi Amalapurapua2b6c372010-03-05 17:40:11 -080021import android.content.pm.PackageInfoLite;
Kenny Roota02b8b02010-08-05 16:14:17 -070022import android.content.res.ObbInfo;
Suchi Amalapurapuc028be42010-01-25 12:19:12 -080023
24interface IMediaContainerService {
25 String copyResourceToContainer(in Uri packageURI,
26 String containerId,
27 String key, String resFileName);
28 boolean copyResource(in Uri packageURI,
29 in ParcelFileDescriptor outStream);
Suchi Amalapurapu14b6abd2010-03-17 08:37:04 -070030 PackageInfoLite getMinimalPackageInfo(in Uri fileUri, int flags);
Suchi Amalapurapu8a9ab242010-03-11 16:49:16 -080031 boolean checkFreeStorage(boolean external, in Uri fileUri);
Kenny Rootaa183e22010-12-02 18:00:38 -080032 ObbInfo getObbInfo(in String filename);
33 long calculateDirectorySize(in String directory);
Kenny Root02c87302010-07-01 08:10:18 -070034}