Home
last modified time | relevance | path

Searched refs:packages (Results 1 – 25 of 41) sorted by relevance

12

/frameworks/base/core/java/android/accounts/
DGrantCredentialsPermissionActivity.java56 final String[] packages = getIntent().getExtras().getStringArray(EXTRAS_PACKAGES); in onCreate() local
75 String[] packageLabels = new String[packages.length]; in onCreate()
77 for (int i = 0; i < packages.length; i++) { in onCreate()
80 pm.getApplicationLabel(pm.getApplicationInfo(packages[i], 0)).toString(); in onCreate()
82 packageLabels[i] = packages[i]; in onCreate()
/frameworks/base/docs/html/guide/topics/manifest/
Duses-library-element.jd17 All of the {@code android} packages (such as {@link android.app},
20 against. However, some packages (such as {@code maps} and {@code awt} are
22 documentation for the packages you're using to determine which library
/frameworks/base/services/java/com/android/server/am/
DUsageStatsService.java624 boolean deleteAfterPrint, HashSet<String> packages) { in collectDumpInfoFLOCK() argument
641 packages); in collectDumpInfoFLOCK()
656 String date, boolean isCompactOutput, HashSet<String> packages) { in collectDumpInfoFromParcelFLOCK() argument
686 if (packages != null && !packages.contains(pkgName)) { in collectDumpInfoFromParcelFLOCK()
819 HashSet<String> packages = null; in dump() local
825 if (packages == null) { in dump()
826 packages = new HashSet<String>(); in dump()
828 packages.add(n); in dump()
839 collectDumpInfoFLOCK(pw, isCompactOutput, deleteAfterPrint, packages); in dump()
/frameworks/base/docs/html/guide/developing/tools/
Dmonkey.jd32 <li>If you have constrained the Monkey to run in one or more specific packages, it
33 watches for attempts to navigate to any other packages, and blocks them.</li>
55 events to any (and all) packages installed on your target. Here is a more typical command line,
156 <td>If you specify one or more packages this way, the Monkey will <i>only</i> allow the system
157 to visit activities within those packages. If your application requires access to activities in
158 other packages (e.g. to select a contact) you'll need to specify those packages as well.
159 If you don't specify any packages, the Monkey will allow the system to launch activities
160 in all packages. To specify multiple packages, use the -p option multiple times &mdash; one -p
/frameworks/base/core/java/com/android/internal/backup/
DIBackupTransport.aidl124 int startRestore(long token, in PackageInfo[] packages); in startRestore() argument
DLocalTransport.java157 public int startRestore(long token, PackageInfo[] packages) { in startRestore() argument
159 mRestorePackages = packages; in startRestore()
/frameworks/base/docs/html/guide/basics/
Dfixme-gs-core-packages.jd44 <p> These are the basic packages that make up the Android SDK for writing
45 applications. The packages are organized as layers, listed here from
79 <p> These packages provide additional domain-specific features of the Android
/frameworks/base/docs/html/sdk/
Drequirements.jd30 <li>Recommended Eclipse IDE packages: Eclipse IDE for Java EE
34 (included in most Eclipse IDE packages) </li>
Dadding-components.jd33 and AVD Manager tool is included in Android 1.6 and later SDK packages.</p>
/frameworks/base/docs/html/intl/ja/guide/
Dindex.jd9 … API に関する参考資料は含まれていません。API の仕様については、上部にある [<a href="{@docRoot}reference/packages.html">リファレンス</a>]…
/frameworks/base/tools/layoutlib/create/
DREADME.txt29 - keep all classes in the android.view and android.widget packages (sub-packages excluded).
/frameworks/base/libs/utils/
DResourceTypes.cpp1200 const size_t N = packages.size(); in ~PackageGroup()
1202 Package* pkg = packages[i]; in ~PackageGroup()
1212 Package* pkg = packages[0]; in clearBagCache()
1239 Vector<Package*> packages; member
1364 const Type* type = grp->packages[0]->getType(t); in applyStyle()
1585 for (size_t j=0; j<srcPg->packages.size(); j++) { in add()
1586 pg->packages.add(srcPg->packages[j]); in add()
1760 if (grp->packages.size() > 0) { in getResourceName()
1761 const Package* const package = grp->packages[0]; in getResourceName()
1819 size_t ip = grp->packages.size(); in getResource()
[all …]
/frameworks/base/services/java/com/android/server/
DPackageManagerBackupAgent.java84 PackageManagerBackupAgent(PackageManager packageMgr, List<PackageInfo> packages) { in PackageManagerBackupAgent() argument
86 mAllPackages = packages; in PackageManagerBackupAgent()
DBackupManagerService.java790 List<PackageInfo> packages = mPackageManager.getInstalledPackages(flags); in allAgentPackages() local
791 int N = packages.size(); in allAgentPackages()
793 PackageInfo pkg = packages.get(a); in allAgentPackages()
800 packages.remove(a); in allAgentPackages()
809 packages.remove(a); in allAgentPackages()
812 return packages; in allAgentPackages()
DPackageManagerService.java293 String packages[]; in handleMessage() local
306 packages = new String[size]; in handleMessage()
314 packages[i] = ent.getKey(); in handleMessage()
325 sendPackageChangedBroadcast(packages[i], true, in handleMessage()
1368 final int N = sus.packages.size(); in getPackagesForUid()
1370 Iterator<PackageSetting> it = sus.packages.iterator(); in getPackagesForUid()
2295 + suid.userId + "): packages=" + suid.packages); in scanPackageLI()
2901 ps.sharedUser.packages.remove(ps); in removePackageLI()
2902 if (ps.sharedUser.packages.size() == 0) { in removePackageLI()
5958 final HashSet<PackageSetting> packages = new HashSet<PackageSetting>(); field in PackageManagerService.SharedUserSetting
[all …]
/frameworks/base/cmds/pm/src/com/android/commands/pm/
DPm.java193 List<PackageInfo> packages = mPm.getInstalledPackages(0 /* all */); in runListPackages() local
195 int count = packages.size(); in runListPackages()
197 PackageInfo info = packages.get(p); in runListPackages()
/frameworks/base/core/java/android/content/pm/
DRegisteredServicesCache.java231 String[] packages = mContext.getPackageManager().getPackagesForUid(callerUid); in inSystemImage() local
232 for (String name : packages) { in inSystemImage()
/frameworks/base/docs/html/guide/
Dindex.jd16 <a href="{@docRoot}reference/packages.html">Reference</a> tab above.
/frameworks/base/docs/html/guide/tutorials/views/
Dhello-datepicker.jd75 <p class="note"><strong>Tip:</strong> Press Ctrl(or Cmd) + Shift + O to import all needed packages.…
Dhello-timepicker.jd75 <p class="note"><strong>Tip:</strong> Press Ctrl(or Cmd) + Shift + O to import all needed packages.…
/frameworks/base/docs/html/guide/topics/security/
Dsecurity.jd77 process level, the code of any two packages can not normally
83 the two packages are then treated as being the same application, with the same
89 ID, and not normally accessible to other packages. When creating a new file
/frameworks/base/docs/html/guide/tutorials/
Dhello-world.jd110 packages in the Java programming language) that you want all your source code to
114 all packages installed on the Android system; for this reason, it's very
206 <p class="note"><strong>Tip:</strong> An easy way to add import packages to your project is
208 shortcut that identifies missing packages based on your code and adds them for you.</p>
/frameworks/base/docs/html/intl/ja/sdk/1.5_r2/
Dinstalling.jd155 href="{@docRoot}reference/packages.html">リファレンス</a>] タブの Android Framework API の仕様を参照します。</li>
/frameworks/base/docs/html/intl/ja/sdk/1.5_r3/
Dinstalling.jd155 href="{@docRoot}reference/packages.html">リファレンス</a>] タブの Android Framework API の仕様を参照します。</li>
/frameworks/base/docs/html/guide/topics/data/
Ddata-storage.jd193 To do network operations, use the classes in the following packages:</p>

12