HomeSort by relevance Sort by last modified time
    Searched defs:patchoat (Results 1 - 5 of 5) sorted by null

  /frameworks/base/core/java/com/android/internal/os/
InstallerConnection.java 114 public int patchoat(String apkPath, int uid, boolean isPublic, String instructionSet) { method in class:InstallerConnection
115 return patchoat(apkPath, uid, isPublic, "*", instructionSet);
118 public int patchoat(String apkPath, int uid, boolean isPublic, String pkgName, method in class:InstallerConnection
120 StringBuilder builder = new StringBuilder("patchoat");
ZygoteInit.java 563 installer.patchoat(classPathElement, Process.SYSTEM_UID, false, instructionSet);
  /frameworks/base/services/core/java/com/android/server/pm/
Installer.java 57 public int patchoat(String apkPath, int uid, boolean isPublic, String pkgName, method in class:Installer
64 return mInstaller.patchoat(apkPath, uid, isPublic, pkgName, instructionSet);
67 public int patchoat(String apkPath, int uid, boolean isPublic, String instructionSet) { method in class:Installer
73 return mInstaller.patchoat(apkPath, uid, isPublic, instructionSet);
PackageManagerService.java     [all...]
  /art/patchoat/
patchoat.cc 16 #include "patchoat.h"
111 bool PatchOat::Patch(const std::string& image_location, off_t delta,
179 PatchOat p(isa, image.release(), ispc->GetLiveBitmap(), ispc->GetMemMap(),
194 bool PatchOat::Patch(File* input_oat, const std::string& image_location, off_t delta,
301 PatchOat p(isa, elf.release(), image.release(), ispc->GetLiveBitmap(), ispc->GetMemMap(),
325 bool PatchOat::WriteElf(File* out) {
340 bool PatchOat::WriteImage(File* out) {
359 bool PatchOat::IsImagePic(const ImageHeader& image_header, const std::string& image_path) {
374 PatchOat::MaybePic PatchOat::IsOatPic(const ElfFile* oat_in)
911 static int patchoat(int argc, char **argv) { function in namespace:art
    [all...]

Completed in 112 milliseconds