HomeSort by relevance Sort by last modified time
    Searched refs:pkg (Results 101 - 125 of 2549) sorted by null

1 2 3 45 6 7 8 91011>>

  /cts/hostsidetests/media/bitstreams/src/android/media/cts/bitstreams/
HevcYuv444BitstreamsFullTest.java 34 BitstreamPackage pkg, BitstreamPackage packageToRun) {
35 super(prefix, path, pkg, packageToRun);
Vp8BitstreamsFullTest.java 34 BitstreamPackage pkg, BitstreamPackage packageToRun) {
35 super(prefix, path, pkg, packageToRun);
Vp8BitstreamsTest.java 32 BitstreamPackage pkg, BitstreamPackage packageToRun) {
33 super(prefix, path, pkg, packageToRun);
Vp9Yuv420BitstreamsFullTest.java 34 BitstreamPackage pkg, BitstreamPackage packageToRun) {
35 super(prefix, path, pkg, packageToRun);
Vp9Yuv420BitstreamsTest.java 32 BitstreamPackage pkg, BitstreamPackage packageToRun) {
33 super(prefix, path, pkg, packageToRun);
Vp9Yuv422BitstreamsFullTest.java 34 BitstreamPackage pkg, BitstreamPackage packageToRun) {
35 super(prefix, path, pkg, packageToRun);
Vp9Yuv444BitstreamsFullTest.java 34 BitstreamPackage pkg, BitstreamPackage packageToRun) {
35 super(prefix, path, pkg, packageToRun);
  /frameworks/base/packages/SystemUI/src/com/android/systemui/
ForegroundServiceController.java 61 @Nullable String getStandardLayoutKey(int userId, String pkg);
64 * @return true if this user/pkg has a missing or custom layout notification and therefore needs
67 boolean isSystemAlertWarningNeeded(int userId, String pkg);
SysuiRestartReceiver.java 32 String pkg = intent.getData().toString().substring(10); local
33 NotificationManager.from(context).cancel(pkg, SystemMessage.NOTE_PLUGIN);
  /frameworks/base/tools/preload2/src/com/android/preload/actions/
RunMonkeyAction.java 85 for (String pkg : pkgs) {
86 Main.getUI().updateWaitDialog("Running monkey on " + pkg);
90 forceStop(pkg);
98 DeviceUtils.doShell(device, "monkey -p " + pkg + " " + ITERATIONS, 1,
101 Main.getUI().updateWaitDialog("Retrieving heap data for " + pkg);
102 Map<String, String> data = Main.findAndGetClassData(device, pkg);
103 DumpData dumpData = new DumpData(pkg, data, new Date());
109 forceStop(pkg);
  /prebuilts/go/darwin-x86/src/cmd/go/testdata/
flag_test.go 11 // Run this as go test pkg -v=7
  /prebuilts/go/linux-x86/src/cmd/go/testdata/
flag_test.go 11 // Run this as go test pkg -v=7
  /frameworks/base/services/core/java/com/android/server/slice/
SliceManagerService.java 143 public Uri[] getPinnedSlices(String pkg) {
144 verifyCaller(pkg);
149 if (Objects.equals(pkg, state.getPkg())) {
162 public void pinSlice(String pkg, Uri uri, SliceSpec[] specs, IBinder token)
164 verifyCaller(pkg);
165 enforceAccess(pkg, uri);
169 getOrCreatePinnedSlice(uri, slicePkg).pin(pkg, specs, token);
172 if (slicePkg != null && !Objects.equals(pkg, slicePkg)) {
174 isAssistant(pkg, user) || isDefaultHomeApp(pkg, user
447 mAppOps.checkPackage(Binder.getCallingUid(), pkg); local
581 String pkg = getProviderPkg(new Uri.Builder() local
    [all...]
  /development/build/tools/
sdk_repo.mk 15 define sdk-repo-pkg-zip
31 define mk-sdk-repo-pkg-1
32 $(call sdk-repo-pkg-zip,$(2),$(3),$(4)): $(3)
35 rm -f ../$(notdir $(call sdk-repo-pkg-zip,$(2),$(3),$(4))) && \
36 zip -9rq ../$(notdir $(call sdk-repo-pkg-zip,$(2),$(3),$(4))) $(4)/*
37 $(call dist-for-goals, sdk_repo, $(call sdk-repo-pkg-zip,$(2),$(3),$(4)))
39 $(call sdk-repo-pkg-zip,$(2),$(3),$(4)):$(notdir $(call sdk-repo-pkg-zip,$(2),$(3),$(4)))
54 define mk-sdk-repo-pkg-2
55 $(call sdk-repo-pkg-zip,$(2),$(3),$(4)): $(3
    [all...]
  /frameworks/base/services/core/java/com/android/server/pm/
PackageSetting.java 36 PackageParser.Package pkg; field in class:PackageSetting
107 pkg = orig.pkg;
120 return pkg;
184 proto.write(PackageProto.VERSION_STRING, pkg.mVersionName);
189 if (pkg != null) {
192 proto.write(PackageProto.SplitProto.REVISION_CODE, pkg.baseRevisionCode);
194 if (pkg.splitNames != null) {
195 for (int i = 0; i < pkg.splitNames.length; i++) {
197 proto.write(PackageProto.SplitProto.NAME, pkg.splitNames[i])
    [all...]
PackageDexOptimizer.java 115 static boolean canOptimizePackage(PackageParser.Package pkg) {
117 if ((pkg.applicationInfo.flags & ApplicationInfo.FLAG_HAS_CODE) == 0) {
131 int performDexOpt(PackageParser.Package pkg, String[] sharedLibraries,
134 if (pkg.applicationInfo.uid == -1) {
135 throw new IllegalArgumentException("Dexopt for " + pkg.packageName
138 if (!canOptimizePackage(pkg)) {
142 final long acquireTime = acquireWakeLockLI(pkg.applicationInfo.uid);
144 return performDexOptLI(pkg, sharedLibraries, instructionSets,
157 private int performDexOptLI(PackageParser.Package pkg, String[] sharedLibraries,
161 targetInstructionSets : getAppDexInstructionSets(pkg.applicationInfo)
    [all...]
  /prebuilts/go/darwin-x86/src/go/internal/gccgoimporter/
parser.go 27 pkg *types.Package // reference to imported package
159 pkg := p.imports[pkgpath]
160 if pkg == nil && name != "" {
161 pkg = types.NewPackage(pkgpath, name)
162 p.imports[pkgpath] = pkg
164 return pkg
171 func (p *parser) parseExportedName() (pkg *types.Package, name string) {
177 pkg = p.getPkg(path, pkgname)
178 if pkg == nil {
204 func (p *parser) parseField(pkg *types.Package) (field *types.Var, tag string)
    [all...]
  /prebuilts/go/linux-x86/src/go/internal/gccgoimporter/
parser.go 27 pkg *types.Package // reference to imported package
159 pkg := p.imports[pkgpath]
160 if pkg == nil && name != "" {
161 pkg = types.NewPackage(pkgpath, name)
162 p.imports[pkgpath] = pkg
164 return pkg
171 func (p *parser) parseExportedName() (pkg *types.Package, name string) {
177 pkg = p.getPkg(path, pkgname)
178 if pkg == nil {
204 func (p *parser) parseField(pkg *types.Package) (field *types.Var, tag string)
    [all...]
  /tools/metalava/src/test/java/com/android/tools/metalava/
ApiFileTest.kt 67 package test.pkg;
74 package test.pkg {
90 package test.pkg;
102 package test.pkg {
122 package test.pkg;
137 package test.pkg {
157 package test.pkg
166 package test.pkg {
184 package test.pkg
214 package test.pkg {
    [all...]
  /external/autotest/client/deps/ibusclient/src/
Makefile 5 PKG_CONFIG ?= pkg-config
  /external/golang-protobuf/protoc-gen-go/generator/
Makefile 40 include $(GOROOT)/src/Make.pkg
  /external/icu/icu4c/source/tools/toolutil/
pkg_icu.h 19 const char *sourcePath, const char *addList, icu::Package *pkg,
  /external/libjpeg-turbo/release/
makecygwinpkg.in 31 make install DESTDIR=$TMPDIR/pkg docdir=/usr/share/doc/$PACKAGE_NAME-$VERSION \
33 rm $TMPDIR/pkg$LIBDIR/*.la
35 ln -fs /usr/share/doc/$PACKAGE_NAME-$VERSION $TMPDIR/pkg$DOCDIR
37 cd $TMPDIR/pkg
  /external/skia/gn/
codesign_ios.py 17 # pkg path to application directory, e.g. out/Debug/dm.app
21 pkg,identstr,profile = sys.argv[1:]
42 os.path.join(pkg, 'embedded.mobileprovision'))
50 app, _ = os.path.splitext(os.path.basename(pkg))
69 pkg])
  /external/skqp/gn/
codesign_ios.py 17 # pkg path to application directory, e.g. out/Debug/dm.app
21 pkg,identstr,profile = sys.argv[1:]
42 os.path.join(pkg, 'embedded.mobileprovision'))
50 app, _ = os.path.splitext(os.path.basename(pkg))
69 pkg])

Completed in 420 milliseconds

1 2 3 45 6 7 8 91011>>