HomeSort by relevance Sort by last modified time
    Searched refs:Package (Results 176 - 200 of 953) sorted by null

1 2 3 4 5 6 78 91011>>

  /frameworks/base/services/core/java/com/android/server/pm/
InstantAppRegistry.java 17 package com.android.server.pm;
71 * This class is a part of the package manager service that is responsible
101 private static final String TAG_PACKAGE = "package";
137 PackageParser.Package pkg = mService.mPackages.get(packageName);
163 Slog.e(LOG_TAG, "Instant app cookie for package " + packageName + " size "
169 // Only an installed package can set its own cookie
170 PackageParser.Package pkg = mService.mPackages.get(packageName);
261 public void onPackageInstalledLPw(@NonNull PackageParser.Package pkg, @NonNull int[] userIds) {
320 Slog.i(LOG_TAG, "Signature for package " + pkg.packageName
328 public void onPackageUninstalledLPw(@NonNull PackageParser.Package pkg
    [all...]
PackageDexOptimizer.java 17 package com.android.server.pm;
105 static boolean canOptimizePackage(PackageParser.Package pkg) {
110 * Performs dexopt on all code paths and libraries of the specified package for specified
116 int performDexOpt(PackageParser.Package pkg, String[] sharedLibraries,
134 * Performs dexopt on all code paths of the given package.
138 private int performDexOptLI(PackageParser.Package pkg, String[] sharedLibraries,
148 // For each code path in the package, this array contains the class loader context that
162 + "between PackageParser.Package and its ApplicationInfo. "
177 + "package structure. A split is marked to contain code "
219 * Performs dexopt on the {@code path} belonging to the package {@code pkg}
    [all...]
  /build/blueprint/loadplugins/
loadplugins.go 15 package main
29 pkg = flag.String("p", "main", "package name")
43 Package string
60 package {{.Package}}
  /device/linaro/bootloader/OpenPlatformPkg/Platforms/ARM/Juno/AcpiTables/
AcpiSsdtRootPci.asl 27 Package (4) { \
62 Name(_PRT, Package() {
  /device/linaro/bootloader/edk2/ArmPlatformPkg/ArmJunoPkg/AcpiTables/
AcpiSsdtRootPci.asl 27 Package (4) { \
62 Name(_PRT, Package() {
  /frameworks/base/libs/hwui/
JankTracker.h 37 // The profile data represents a package
38 Package,
  /frameworks/base/services/tests/servicestests/src/com/android/server/pm/
ParallelPackageParserTest.java 17 package com.android.server.pm;
76 protected PackageParser.Package parsePackage(PackageParser packageParser, File scanFile,
78 // Do not actually parse the package for testing
  /prebuilts/go/darwin-x86/src/cmd/doc/
pkg.go 5 package main
31 type Package struct {
33 name string // Package name, json for encoding/json.
34 userPath string // String the user used to find this package.
35 pkg *ast.Package // Parsed package.
36 file *ast.File // Merged from all files in the package
37 doc *doc.Package
38 build *build.Package
49 // prettyPath returns a version of the package path that is suitable for a
    [all...]
  /prebuilts/go/linux-x86/src/cmd/doc/
pkg.go 5 package main
31 type Package struct {
33 name string // Package name, json for encoding/json.
34 userPath string // String the user used to find this package.
35 pkg *ast.Package // Parsed package.
36 file *ast.File // Merged from all files in the package
37 doc *doc.Package
38 build *build.Package
49 // prettyPath returns a version of the package path that is suitable for a
    [all...]
  /prebuilts/go/darwin-x86/src/go/internal/gccgoimporter/
importer_test.go 5 package gccgoimporter
23 func runImporterTest(t *testing.T, imp Importer, initmap map[*types.Package]InitData, test *importerTest) {
24 pkg, err := imp(make(map[string]*types.Package), test.pkgpath)
53 // Check that the package's own init function has the package's priority
109 initmap := make(map[*types.Package]InitData)
131 initmap := make(map[*types.Package]InitData)
138 arinitmap := make(map[*types.Package]InitData)
importer.go 5 // Package gccgoimporter implements Import for gccgo-generated object files.
6 package gccgoimporter // import "go/internal/gccgoimporter"
20 // A PackageInit describes an imported package that needs initialization.
22 Name string // short package name
27 // The gccgo-specific init data for a package.
29 // Initialization priority of this package relative to other packages.
30 // This is based on the maximum depth of the package's dependency graph;
34 // The list of packages which this package depends on to be initialized,
36 // the package's dependencies that need initialization.
134 // packages already known, indexed by package path
    [all...]
  /prebuilts/go/linux-x86/src/go/internal/gccgoimporter/
importer_test.go 5 package gccgoimporter
23 func runImporterTest(t *testing.T, imp Importer, initmap map[*types.Package]InitData, test *importerTest) {
24 pkg, err := imp(make(map[string]*types.Package), test.pkgpath)
53 // Check that the package's own init function has the package's priority
109 initmap := make(map[*types.Package]InitData)
131 initmap := make(map[*types.Package]InitData)
138 arinitmap := make(map[*types.Package]InitData)
importer.go 5 // Package gccgoimporter implements Import for gccgo-generated object files.
6 package gccgoimporter // import "go/internal/gccgoimporter"
20 // A PackageInit describes an imported package that needs initialization.
22 Name string // short package name
27 // The gccgo-specific init data for a package.
29 // Initialization priority of this package relative to other packages.
30 // This is based on the maximum depth of the package's dependency graph;
34 // The list of packages which this package depends on to be initialized,
36 // the package's dependencies that need initialization.
134 // packages already known, indexed by package path
    [all...]
  /prebuilts/go/darwin-x86/src/go/internal/gcimporter/
gcimporter_test.go 5 package gcimporter
49 func testPath(t *testing.T, path, srcDir string) *types.Package {
51 pkg, err := Import(make(map[string]*types.Package), path, srcDir)
92 // This package only handles gc export data.
103 // The package's Imports list must include all packages
115 t.Errorf(`Package("exports").Imports() = %s, does not contain %s`, got, want)
124 // This package only handles gc export data.
139 continue // not a package file
147 _, err := Import(make(map[string]*types.Package), pkgpath, dir)
176 _, err = Import(make(map[string]*types.Package), pkgpath, dir
    [all...]
  /prebuilts/go/linux-x86/src/go/internal/gcimporter/
gcimporter_test.go 5 package gcimporter
49 func testPath(t *testing.T, path, srcDir string) *types.Package {
51 pkg, err := Import(make(map[string]*types.Package), path, srcDir)
92 // This package only handles gc export data.
103 // The package's Imports list must include all packages
115 t.Errorf(`Package("exports").Imports() = %s, does not contain %s`, got, want)
124 // This package only handles gc export data.
139 continue // not a package file
147 _, err := Import(make(map[string]*types.Package), pkgpath, dir)
176 _, err = Import(make(map[string]*types.Package), pkgpath, dir
    [all...]
  /device/linaro/bootloader/edk2/BaseTools/Source/Python/Common/
DecClassObject.py 80 # @var Package: To store value for Package, it is a structure as PackageClass
88 self.Package = PackageClass()
123 # Transfer to Package Object if IsToPackage is True
250 ## Transfer to Package Object
252 # Transfer all contents of a Dec file to a standard Package Object
261 # Generate Package Header
295 ## Get Package Header
297 # Gen Package Header of Dec as <Key> = <Value>
329 self.Package.Header[Arch] = PackageHeader
    [all...]
  /build/blueprint/gotestmain/
gotestmain.go 15 package main
35 pkg = flag.String("pkg", "", "test package")
40 Package string
87 Package: *pkg,
105 package main
115 pkg "{{.Package}}"
  /device/linaro/bootloader/edk2/EdkCompatibilityPkg/Sample/Tools/Source/GenFfsFile/
GenFfsFile.c 53 IN FILE *Package,
204 " -p1 P1Path Specifies fully qualified file name to the primary package",
208 " package. This file will normally exist in the build tip.",
210 " -d Name=Value Add a macro definition for the package file. Optional.",
324 IN FILE *Package,
337 Package - Package to get string from
349 fscanf (Package, "%s", &String);
350 if (feof (Package)) {
354 while (TestComment (String, Package) == 1) {
    [all...]
  /build/make/core/tasks/
collect_gpl_sources.mk 20 @echo Package gpl sources: $@
  /device/linaro/bootloader/edk2/EdkCompatibilityPkg/Compatibility/FrameworkHiiOnUefiHiiThunk/
FrameworkHiiOnUefiHiiThunk.inf 5 # to ensure that all HII packages are generated by UEFI HII package generation tools (UEFI VfrCompiler and
6 # String Gather Tools). This thunk layer only produces the Frameowork HII protocol interface. The binary package
53 Package.c
  /external/boringssl/src/ssl/test/runner/curve25519/
doc.go 5 // Package curve25519 provides an implementation of scalar multiplication on
7 package curve25519 // import "golang.org/x/crypto/curve25519"
  /libcore/dalvik/src/main/java/dalvik/system/
BaseDexClassLoader.java 17 package dalvik.system;
158 * Returns package information for the given package.
164 * a {@code Package} object the first time it is being requested
166 * Package} object is then put into the {@code ClassLoader}'s
167 * package cache, so we see the same one next time. We don't
168 * create {@code Package} objects for {@code null} arguments or
169 * for the default package.
172 * {@code Package} objects representing the same package: It ca
    [all...]
  /prebuilts/go/darwin-x86/src/cmd/internal/browser/
browser.go 5 // Package browser provides utilities for interacting with users' browsers.
6 package browser
  /prebuilts/go/darwin-x86/src/cmd/vet/internal/whitelist/
whitelist.go 5 // Package whitelist defines exceptions for the vet tool.
6 package whitelist
  /prebuilts/go/darwin-x86/src/crypto/rand/
rand.go 5 // Package rand implements a cryptographically secure
7 package rand

Completed in 931 milliseconds

1 2 3 4 5 6 78 91011>>