HomeSort by relevance Sort by last modified time
    Searched refs:Package (Results 426 - 450 of 929) sorted by null

<<11121314151617181920>>

  /external/libmojo/third_party/catapult/devil/devil/android/
battery_utils.py 120 # Index of the column containing the application package.
199 def GetNetworkData(self, package, timeout=None, retries=None):
200 """Get network data for specific package.
203 package: package name you want network data for.
214 if package not in self._cache['uids']:
216 if package not in self._cache['uids']:
218 package)
221 network_data_path = '/proc/uid_stat/%s/' % self._cache['uids'][package]
225 # package has been recorded. Return 0 sent and 0 received
    [all...]
  /prebuilts/go/darwin-x86/src/cmd/go/
clean.go 5 package main
19 Clean removes object files from package source directories.
42 the package.
83 var cleaned = map[*Package]bool{}
108 func clean(p *Package) {
115 errorf("can't load package: %v", p.Error)
129 // Record which files are not in package main.
145 // Remove dir-named executable only if this is package main.
153 // Remove package test executables.
160 // is not part of the directory's package
    [all...]
get.go 5 package main
29 each package has been checked out from the source control repository
50 When checking out a new package, get creates the target directory
54 When checking out or updating a package, get looks for a branch or tag
58 retrieves the most recent version of the package.
133 // needs to be evicted from the package cache so that
143 // referring to evicted packages from the package cache.
195 // a particular package.
206 // for the package named by the argument.
207 func download(arg string, parent *Package, stk *importStack, mode int)
    [all...]
  /prebuilts/go/darwin-x86/src/runtime/
time.go 5 // Time-related runtime and pieces of package time.
7 package runtime
11 // Package time knows the layout of this structure.
13 // For GOOS=nacl, package syscall knows the layout of this structure.
41 // Package time APIs.
42 // Godoc uses the comments in package time, not these.
  /prebuilts/go/linux-x86/src/cmd/go/
clean.go 5 package main
19 Clean removes object files from package source directories.
42 the package.
83 var cleaned = map[*Package]bool{}
108 func clean(p *Package) {
115 errorf("can't load package: %v", p.Error)
129 // Record which files are not in package main.
145 // Remove dir-named executable only if this is package main.
153 // Remove package test executables.
160 // is not part of the directory's package
    [all...]
get.go 5 package main
29 each package has been checked out from the source control repository
50 When checking out a new package, get creates the target directory
54 When checking out or updating a package, get looks for a branch or tag
58 retrieves the most recent version of the package.
133 // needs to be evicted from the package cache so that
143 // referring to evicted packages from the package cache.
195 // a particular package.
206 // for the package named by the argument.
207 func download(arg string, parent *Package, stk *importStack, mode int)
    [all...]
  /prebuilts/go/linux-x86/src/runtime/
time.go 5 // Time-related runtime and pieces of package time.
7 package runtime
11 // Package time knows the layout of this structure.
13 // For GOOS=nacl, package syscall knows the layout of this structure.
41 // Package time APIs.
42 // Godoc uses the comments in package time, not these.
  /external/chromium-trace/catapult/telemetry/third_party/modulegraph/modulegraph_tests/
test_modulegraph.py 227 # Package
459 self.assertIsSubclass(modulegraph.Package, modulegraph.BaseModule)
470 self.assertNoMethods(modulegraph.Package)
628 if isinstance(node, modulegraph.Package):
631 self.fail("No package located, should have at least 'os'")
633 self.assertIsInstance(node, modulegraph.Package)
637 self.assertTrue(isinstance(parent, modulegraph.Package))
640 #node = modulegraph.Package('encodings')
    [all...]
  /frameworks/base/core/tests/coretests/src/android/content/pm/
PackageManagerTests.java 17 package android.content.pm;
187 filter.addDataScheme("package");
211 ServiceManager.getService("package"));
239 fail("Package installation should have succeeded, but got code "
244 fail("Package installation should fail");
316 private PackageParser.Package parsePackage(Uri packageURI) throws PackageParserException {
320 PackageParser.Package pkg = packageParser.parseMonolithicPackage(sourceFile, 0);
408 private void assertInstall(PackageParser.Package pkg, int flags, int expInstallLocation) {
577 PackageParser.Package pkg;
584 InstallParams(PackageParser.Package pkg)
    [all...]
  /prebuilts/go/darwin-x86/src/go/ast/
ast.go 5 // Package ast declares the types used to represent syntax trees for Go
8 package ast
827 // An ImportSpec node represents a single package import.
830 Name *Ident // local package name (including "."); or nil
971 Package token.Pos // position of "package" keyword
972 Name *Ident // package name
974 Scope *Scope // package scope (this file only)
980 func (f *File) Pos() token.Pos { return f.Package }
988 // A Package node represents a set of source file
    [all...]
  /prebuilts/go/linux-x86/src/go/ast/
ast.go 5 // Package ast declares the types used to represent syntax trees for Go
8 package ast
827 // An ImportSpec node represents a single package import.
830 Name *Ident // local package name (including "."); or nil
971 Package token.Pos // position of "package" keyword
972 Name *Ident // package name
974 Scope *Scope // package scope (this file only)
980 func (f *File) Pos() token.Pos { return f.Package }
988 // A Package node represents a set of source file
    [all...]
  /build/make/tools/droiddoc/templates-sac/
sdkpage.cs 81 <th>Package</th>
204 <th>Package</th>
260 <th>Package</th>
  /prebuilts/go/darwin-x86/src/cmd/doc/
main.go 9 // Show the documentation for the package in the current directory.
17 // is printed. If there is a symbol but no package, the package in the current
24 // Show the documentation for the package, symbol, and method. The
25 // first argument must be a full package path. This is similar to the
29 // shows only the package-level docs for the package.
32 package main
54 // usage is a replacement usage function for the flags package.
85 flagSet.BoolVar(&showCmd, "cmd", false, "show symbols with package docs even if package is a command"
    [all...]
  /prebuilts/go/darwin-x86/src/go/build/
build.go 5 package build
235 // SrcDirs returns a list of package source root directories.
329 // that should contain the sources for a package. It does not
334 // package object without corresponding sources.
337 // The supported way to create a compiled-only package is to
338 // write source code containing a //go:binary-only-package comment at
339 // the top of the file. Such a package will be recognized
341 // and will have BinaryOnly set to true in the returned Package.
344 // If ImportComment is set, parse import comments on package statements.
353 // If an Import finds and returns a package using a vendo
    [all...]
  /prebuilts/go/linux-x86/src/cmd/doc/
main.go 9 // Show the documentation for the package in the current directory.
17 // is printed. If there is a symbol but no package, the package in the current
24 // Show the documentation for the package, symbol, and method. The
25 // first argument must be a full package path. This is similar to the
29 // shows only the package-level docs for the package.
32 package main
54 // usage is a replacement usage function for the flags package.
85 flagSet.BoolVar(&showCmd, "cmd", false, "show symbols with package docs even if package is a command"
    [all...]
  /prebuilts/go/linux-x86/src/go/build/
build.go 5 package build
235 // SrcDirs returns a list of package source root directories.
329 // that should contain the sources for a package. It does not
334 // package object without corresponding sources.
337 // The supported way to create a compiled-only package is to
338 // write source code containing a //go:binary-only-package comment at
339 // the top of the file. Such a package will be recognized
341 // and will have BinaryOnly set to true in the returned Package.
344 // If ImportComment is set, parse import comments on package statements.
353 // If an Import finds and returns a package using a vendo
    [all...]
  /device/linaro/bootloader/edk2/EdkCompatibilityPkg/Compatibility/FrameworkHiiOnUefiHiiThunk/
Package.c 2 Implement protocol interface related to package registrations.
30 Get the number of Form, STRING and Font packages in the package list passed in.
32 @param Packages Package List.
37 @retval EFI_INVALID_PARAMETER If the Package List has package with type of
39 @retval EFI_SUCCESS Successfully get the number of IFR and STRING package.
69 // this binary is with same package type. So the returned IfrPackageCount and StringPackageCount
70 // may not be the exact number of valid package number in the binary generated
99 Insert the String Package into the Package Lists which has the TAG GUID matching
    [all...]
  /device/linaro/bootloader/edk2/EdkCompatibilityPkg/Sample/Tools/Source/ProcessDsc/
ProcessDsc.c 72 #define PACKAGE "PACKAGE"
73 #define PACKAGE_TAG "PACKAGE_TAG" // alternate name to PACKAGE
1130 // component type is "FILE", then add it to the FV list, create a package
    [all...]
  /frameworks/base/tools/aapt2/proto/
TableProtoDeserializer.cpp 69 bool DeserializeFromPb(const pb::Package& pbPackage, ResourceTable* table) {
435 for (const pb::Package& pb_package : pb_table.packages()) {
  /packages/apps/PackageInstaller/src/com/android/packageinstaller/wear/
WearPackageInstallerService.java 17 package com.android.packageinstaller.wear;
66 * -d package://com.google.android.gms \
75 * -d package://com.google.android.gms \
148 Log.e(TAG, "No package URI in intent");
154 Log.e(TAG, "Invalid package name in URI (expected package:<pkgName>): " + packageUri);
204 Log.d(TAG, "Installing package: " + packageName + ", assetUri: " + assetUri +
225 // Ignore this exception. We could not find the package, will treat as a new
230 Log.d(TAG, "Replacing package:" + packageName);
247 PackageParser.Package pkg = PackageUtil.getPackageInfo(this, tempFile)
    [all...]
  /prebuilts/go/darwin-x86/src/cmd/asm/internal/lex/
lex.go 5 // Package lex implements lexical analysis for the assembler.
6 package lex
  /prebuilts/go/darwin-x86/src/cmd/pprof/internal/symbolizer/
symbolizer.go 5 // Package symbolizer provides a routine to populate a profile with
8 package symbolizer
  /prebuilts/go/darwin-x86/src/compress/zlib/
reader.go 6 Package zlib implements reading and writing of zlib format compressed data,
24 package zlib
  /prebuilts/go/darwin-x86/src/crypto/
crypto.go 5 // Package crypto collects common cryptographic constants.
6 package crypto
15 // package.
120 // specific values. See the documentation in each package for details.
  /prebuilts/go/darwin-x86/src/crypto/sha1/
sha1.go 5 // Package sha1 implements the SHA1 hash algorithm as defined in RFC 3174.
6 package sha1

Completed in 1377 milliseconds

<<11121314151617181920>>