HomeSort by relevance Sort by last modified time
    Searched refs:Package (Results 201 - 225 of 1161) sorted by null

1 2 3 4 5 6 7 891011>>

  /prebuilts/go/darwin-x86/src/cmd/cgo/
main.go 11 package main
32 // A Package collects information about the package we're going to write.
33 type Package struct {
34 PackageName string // name of package
54 Package string // Package name
96 Go string // name used in Go referring to package C
191 var dynpackage = flag.String("dynpackage", "main", "set Go package for -dynimport output")
201 var importPath = flag.String("importpath", "", "import path of package being built (for comments in generated files)"
    [all...]
  /prebuilts/go/linux-x86/src/cmd/cgo/
main.go 11 package main
32 // A Package collects information about the package we're going to write.
33 type Package struct {
34 PackageName string // name of package
54 Package string // Package name
96 Go string // name used in Go referring to package C
191 var dynpackage = flag.String("dynpackage", "main", "set Go package for -dynimport output")
201 var importPath = flag.String("importpath", "", "import path of package being built (for comments in generated files)"
    [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}}"
160 return "{{.Package}}"
  /build/kati/
doc.go 16 Package kati provides GNU make compatible functions, especially
20 package kati
  /device/linaro/bootloader/edk2/EdkCompatibilityPkg/Compatibility/FrameworkHiiOnUefiHiiThunk/
Utility.c 26 This function returns a list of the package handles of the
28 pseudo-type EFI_HII_PACKAGE_TYPE_ALL will cause all package
39 @param PackageType Specifies the package type of the packages
116 Exports the contents of one or all package lists in the HII database into a buffer.
128 @retval EFI_SUCCESS Package exported.
184 Extract Hii package list GUID for given HII handle.
190 @param Guid Package list GUID
393 that is created when a package list registered by a module calling
434 Get the number of HII Package for a Package type.
    [all...]
  /device/linaro/bootloader/edk2/EdkCompatibilityPkg/Foundation/Library/Dxe/UefiEfiIfrSupportLib/
UefiIfrCommon.c 105 GuidId - Package GUID.
261 DevicePath - Device Path associated with the HII package list handle.
264 Handle - HII package list Handle associated with the Device Path.
265 NULL - Hii Package list handle is not found.
442 Extract Hii package list GUID for given HII handle.
446 Guid - Package list GUID
524 UINT8 *Package;
570 // Get Form package from this HII package List
577 Package = ((UINT8 *) HiiPackageList) + Offset;
    [all...]
  /external/objenesis/tck/src/main/java/org/objenesis/tck/search/
ClassEnumerator.java 16 package org.objenesis.tck.search;
34 // Get the list of the files contained in the package
81 * Return all the classes in this package recursively. The class loader of the {@code ClassEnumerator} class
84 * @param pkg the searched package
87 public static SortedSet<String> getClassesForPackage(Package pkg) {
92 * Return all the classes in this package recursively.
94 * @param pkg the searched package
97 public static SortedSet<String> getClassesForPackage(Package pkg, ClassLoader classLoader) {
113 // Get a File object for the package
  /frameworks/base/services/core/java/com/android/server/pm/
OtaDexoptService.java 17 package com.android.server.pm;
122 final List<PackageParser.Package> important;
123 final List<PackageParser.Package> others;
136 for (PackageParser.Package p : important) {
139 for (PackageParser.Package p : others) {
153 for (PackageParser.Package pkg : others) {
245 * Generate all dexopt commands for the given package.
247 private synchronized List<String> generatePackageDexopts(PackageParser.Package pkg,
314 // Use the package manager install and install lock here for the OTA dex optimizer.
351 Collection<PackageParser.Package> pkgs = mPackageManagerService.getPackages()
    [all...]
ParallelPackageParser.java 17 package com.android.server.pm;
55 "package-parsing-thread", Process.THREAD_PRIORITY_FOREGROUND);
68 PackageParser.Package pkg; // Parsed package
83 * Take the parsed package from the parsing queue, waiting if necessary until the element
85 * @return parsed package
136 protected PackageParser.Package parsePackage(PackageParser packageParser, File scanFile,
InstantAppRegistry.java 17 package com.android.server.pm;
74 * This class is a part of the package manager service that is responsible
104 private static final String TAG_PACKAGE = "package";
140 PackageParser.Package pkg = mService.mPackages.get(packageName);
166 Slog.e(LOG_TAG, "Instant app cookie for package " + packageName + " size "
172 // Only an installed package can set its own cookie
173 PackageParser.Package pkg = mService.mPackages.get(packageName);
264 public void onPackageInstalledLPw(@NonNull PackageParser.Package pkg, @NonNull int[] userIds) {
326 Slog.i(LOG_TAG, "Signature for package " + pkg.packageName
334 public void onPackageUninstalledLPw(@NonNull PackageParser.Package pkg
    [all...]
  /prebuilts/go/darwin-x86/src/cmd/go/internal/version/
version.go 5 // Package version implements the ``go version'' command.
6 package version
  /prebuilts/go/darwin-x86/src/go/internal/srcimporter/
srcimporter.go 5 // Package srcimporter implements importing directly
7 package srcimporter // import "go/internal/srcimporter"
25 packages map[string]*types.Package
29 // of packages. The context is used to resolve import paths to package paths,
30 // and identifying the files belonging to the package. If the context provides
31 // non-nil file system functions, they are used instead of the regular package
32 // os functions. The file set is used to track position information of package
34 func New(ctxt *build.Context, fset *token.FileSet, packages map[string]*types.Package) *Importer {
44 // for a package that is in the process of being imported.
45 var importing types.Package
    [all...]
  /prebuilts/go/darwin-x86/src/runtime/cgo/
cgo.go 6 Package cgo contains runtime support for code generated
10 package cgo
  /prebuilts/go/darwin-x86/src/runtime/debug/
stack.go 5 // Package debug contains facilities for programs to debug themselves while
7 package debug
  /prebuilts/go/linux-x86/src/cmd/go/internal/version/
version.go 5 // Package version implements the ``go version'' command.
6 package version
  /prebuilts/go/linux-x86/src/go/internal/srcimporter/
srcimporter.go 5 // Package srcimporter implements importing directly
7 package srcimporter // import "go/internal/srcimporter"
25 packages map[string]*types.Package
29 // of packages. The context is used to resolve import paths to package paths,
30 // and identifying the files belonging to the package. If the context provides
31 // non-nil file system functions, they are used instead of the regular package
32 // os functions. The file set is used to track position information of package
34 func New(ctxt *build.Context, fset *token.FileSet, packages map[string]*types.Package) *Importer {
44 // for a package that is in the process of being imported.
45 var importing types.Package
    [all...]
  /prebuilts/go/linux-x86/src/runtime/cgo/
cgo.go 6 Package cgo contains runtime support for code generated
10 package cgo
  /prebuilts/go/linux-x86/src/runtime/debug/
stack.go 5 // Package debug contains facilities for programs to debug themselves while
7 package debug
  /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/cmd/go/internal/work/
exec.go 7 package work
178 p := a.Package
289 p1 := a1.Package
298 // build is the action for building a single package.
301 p := a.Package
311 if (a.Package.UsesCgo() || a.Package.UsesSwig()) && (cfg.BuildBuildmode == "c-archive" || cfg.BuildBuildmode == "c-shared") {
338 err = fmt.Errorf("go build %s: %v", a.Package.ImportPath, err)
347 b.Print("\n#\n# " + a.Package.ImportPath + "\n#\n\n")
351 b.Print(a.Package.ImportPath + "\n"
    [all...]
gc.go 5 package work
40 p := a.Package
66 // If we're giving the compiler the entire package (no C etc files), tell it that,
69 // pieces supplied behind-the-scenes by package runtime.
135 // gcBackendConcurrency returns the backend compiler concurrency level for a package compilation.
189 // - it has no successor packages to compile (usually package main)
214 p := a.Package
246 func toolVerify(a *Action, b *Builder, p *load.Package, newTool string, ofile string, args []interface{}) error {
284 p := a.Package
379 // pluginPath computes the package path for a plugin main package
    [all...]
  /prebuilts/go/linux-x86/src/cmd/go/internal/work/
exec.go 7 package work
178 p := a.Package
289 p1 := a1.Package
298 // build is the action for building a single package.
301 p := a.Package
311 if (a.Package.UsesCgo() || a.Package.UsesSwig()) && (cfg.BuildBuildmode == "c-archive" || cfg.BuildBuildmode == "c-shared") {
338 err = fmt.Errorf("go build %s: %v", a.Package.ImportPath, err)
347 b.Print("\n#\n# " + a.Package.ImportPath + "\n#\n\n")
351 b.Print(a.Package.ImportPath + "\n"
    [all...]
gc.go 5 package work
40 p := a.Package
66 // If we're giving the compiler the entire package (no C etc files), tell it that,
69 // pieces supplied behind-the-scenes by package runtime.
135 // gcBackendConcurrency returns the backend compiler concurrency level for a package compilation.
189 // - it has no successor packages to compile (usually package main)
214 p := a.Package
246 func toolVerify(a *Action, b *Builder, p *load.Package, newTool string, ofile string, args []interface{}) error {
284 p := a.Package
379 // pluginPath computes the package path for a plugin main package
    [all...]
  /build/blueprint/loadplugins/
loadplugins.go 15 package main
29 pkg = flag.String("p", "main", "package name")
43 Package string
60 package {{.Package}}

Completed in 3689 milliseconds

1 2 3 4 5 6 7 891011>>