HomeSort by relevance Sort by last modified time
    Searched defs:Patch (Results 1 - 25 of 37) sorted by null

1 2

  /external/clang/test/CodeGenCXX/
pr12104.h 1 template <int dimm> struct Patch {
5 const unsigned int Patch<dim>::no_neighbor;
8 f(Patch<1>::no_neighbor);
  /frameworks/av/services/audioflinger/
PatchPanel.h 25 class Patch;
37 /* Create a patch between several source and sink ports */
38 status_t createAudioPatch(const struct audio_patch *patch,
41 /* Release a patch */
51 status_t createPatchConnections(Patch *patch,
53 void clearPatchConnections(Patch *patch);
55 class Patch {
57 Patch(const struct audio_patch *patch)
    [all...]
  /bootable/recovery/applypatch/
applypatch.h 27 } Patch;
72 const Value* patch, ssize_t patch_offset,
75 const Value* patch, ssize_t patch_offset,
80 const Value* patch,
  /external/chromium_org/sandbox/win/src/sidestep/
preamble_patcher.h 42 // the function being patched, we cannot patch it because in the
45 // if you really really need to patch a function like this, it
48 // we cannot patch the function because it may not be long enough
49 // for the jmp instruction we use to inject our patch.
65 static SideStepError Patch(T target_function, T replacement_function,
  /frameworks/base/libs/hwui/
Patch.h 36 // 9-patch structures
39 class Patch {
41 Patch();
42 ~Patch();
45 * Returns the size of this patch's mesh in bytes.
59 float width, float height, const Res_png_9patch* patch);
61 float width, float height, const UvMapper& mapper, const Res_png_9patch* patch);
72 }; // struct Patch
Patch.cpp 24 #include "Patch.h"
35 Patch::Patch(): vertices(NULL), verticesCount(0), indexCount(0), hasEmptyQuads(false) {
38 Patch::~Patch() {
46 uint32_t Patch::getSize() const {
50 TextureVertex* Patch::createMesh(const float bitmapWidth, const float bitmapHeight,
51 float width, float height, const Res_png_9patch* patch) {
53 return createMesh(bitmapWidth, bitmapHeight, width, height, mapper, patch);
56 TextureVertex* Patch::createMesh(const float bitmapWidth, const float bitmapHeight
    [all...]
  /frameworks/volley/tests/src/com/android/volley/mock/
TestRequest.java 158 /** Test example of a PATCH request in the new style. */
159 public static class Patch extends Base {
160 public Patch() {
161 super(Method.PATCH, TEST_URL, null);
165 /** Test example of a PATCH request in the new style with a body. */
166 public static class PatchWithBody extends Patch {
  /external/chromium_org/base/win/
iat_patch_function.cc 73 // Patch the function.
234 DWORD IATPatchFunction::Patch(const wchar_t* module,
276 // patch. In this case its better to be hands off the intercept as
  /external/chromium_org/third_party/tcmalloc/chromium/src/windows/
preamble_patcher.h 104 // To patch a function, use either of the typesafe Patch() methods. You
115 // original_func_stub = PreamblePatcher::Patch(
128 // the function being patched, we cannot patch it because in the
131 // if you really really need to patch a function like this, it
134 // we cannot patch the function because it may not be long enough
135 // for the jmp instruction we use to inject our patch.
149 // may mean if you patch the function in between your patch will never get
164 // PreamblePatcher::Patch(MessageBox, Hook_MessageBox, &original)
    [all...]
  /external/chromium_org/third_party/tcmalloc/vendor/src/windows/
preamble_patcher.h 104 // To patch a function, use either of the typesafe Patch() methods. You
115 // original_func_stub = PreamblePatcher::Patch(
128 // the function being patched, we cannot patch it because in the
131 // if you really really need to patch a function like this, it
134 // we cannot patch the function because it may not be long enough
135 // for the jmp instruction we use to inject our patch.
149 // may mean if you patch the function in between your patch will never get
164 // PreamblePatcher::Patch(MessageBox, Hook_MessageBox, &original)
    [all...]
  /external/chromium_org/third_party/skia/samplecode/
SamplePatch.cpp 50 class Patch {
52 Patch() { sk_bzero(fPts, sizeof(fPts)); }
53 ~Patch() {}
127 void Patch::draw(SkCanvas* canvas, const SkPaint& paint, int nu, int nv,
208 Patch* patch) {
212 patch->draw(canvas, paint, 10, 10, false, false);
214 patch->draw(canvas, paint, 10, 10, true, false);
216 patch->draw(canvas, paint, 10, 10, false, true);
218 patch->draw(canvas, paint, 10, 10, true, true)
276 Patch patch; local
    [all...]
  /external/skia/samplecode/
SamplePatch.cpp 50 class Patch {
52 Patch() { sk_bzero(fPts, sizeof(fPts)); }
53 ~Patch() {}
127 void Patch::draw(SkCanvas* canvas, const SkPaint& paint, int nu, int nv,
208 Patch* patch) {
212 patch->draw(canvas, paint, 10, 10, false, false);
214 patch->draw(canvas, paint, 10, 10, true, false);
216 patch->draw(canvas, paint, 10, 10, false, true);
218 patch->draw(canvas, paint, 10, 10, true, true)
276 Patch patch; local
    [all...]
  /art/compiler/
elf_patcher.cc 39 bool ElfPatcher::Patch(const CompilerDriver* driver, ElfFile* elf_file,
55 return ElfPatcher::Patch(driver, elf_file, oat_file,
59 bool ElfPatcher::Patch(const CompilerDriver* driver, ElfFile* elf, const OatFile* oat_file,
77 mirror::ArtMethod* ElfPatcher::GetTargetMethod(const CompilerDriver::CallPatchInformation* patch) {
81 hs.NewHandle(class_linker->FindDexCache(*patch->GetTargetDexFile())));
82 mirror::ArtMethod* method = class_linker->ResolveMethod(*patch->GetTargetDexFile(),
83 patch->GetTargetMethodIdx(),
87 patch->GetTargetInvokeType());
89 << patch->GetTargetDexFile()->GetLocation() << " " << patch->GetTargetMethodIdx()
195 const CompilerDriver::CallPatchInformation* patch = code_to_patch[i]; local
246 const CompilerDriver::CallPatchInformation* patch = methods_to_patch[i]; local
254 const CompilerDriver::TypePatchInformation* patch = classes_to_patch[i]; local
    [all...]
  /external/chromium_org/chrome/browser/component_updater/
component_patcher_operation.cc 39 const char kPatch[] = "patch";
54 virtual int Patch(base::FilePath input_abs_path,
77 int CourgetteTraits::Patch(base::FilePath input_abs_path,
93 virtual int Patch(base::FilePath input_abs_path,
116 int BsdiffTraits::Patch(base::FilePath input_abs_path,
391 const int result = strategy_->Patch(input_abs_path_,
  /external/chromium_org/v8/src/arm/
code-stubs-arm.h 211 static void Patch(Code* stub, Mode mode) {
  /external/chromium_org/v8/src/arm64/
code-stubs-arm64.h 140 // We patch the two first instructions of the stub back and forth between an
147 static void Patch(Code* stub, Mode mode) {
148 // We are going to patch the two first instructions of the stub.
  /external/chromium_org/v8/src/ia32/
code-stubs-ia32.h 232 static void Patch(Code* stub, Mode mode) {
  /external/chromium_org/v8/src/mips/
code-stubs-mips.h 253 static void Patch(Code* stub, Mode mode) {
  /external/chromium_org/v8/src/x64/
code-stubs-x64.h 232 static void Patch(Code* stub, Mode mode) {
  /external/chromium_org/v8/src/x87/
code-stubs-x87.h 228 static void Patch(Code* stub, Mode mode) {
  /external/chromium_org/third_party/re2/re2/
compile.cc 33 // Returns patch list containing just p.
37 // Caller must not ever use patch list again.
38 static void Patch(Prog::Inst *inst0, PatchList l, uint32 v);
43 // Appends two patch lists and returns result.
49 // Returns patch list containing just p.
67 void PatchList::Patch(Prog::Inst *inst0, PatchList l, uint32 val) {
80 // Appends two patch lists and returns result.
316 PatchList::Patch(inst_, a.end, b.begin); // in case refs to a somewhere
322 PatchList::Patch(inst_, b.end, a.begin);
326 PatchList::Patch(inst_, a.end, b.begin)
    [all...]
  /external/clang/lib/Driver/
ToolChains.h 43 /// a hard-coded patch number to those with a hard coded patch number.
52 /// \brief The parsed major, minor, and patch numbers.
53 int Major, Minor, Patch;
58 /// \brief Any textual suffix on the patch number.
65 return isOlderThan(RHS.Major, RHS.Minor, RHS.Patch, RHS.PatchSuffix);
  /external/regex-re2/re2/
compile.cc 33 // Returns patch list containing just p.
37 // Caller must not ever use patch list again.
38 static void Patch(Prog::Inst *inst0, PatchList l, uint32 v);
43 // Appends two patch lists and returns result.
49 // Returns patch list containing just p.
67 void PatchList::Patch(Prog::Inst *inst0, PatchList l, uint32 val) {
80 // Appends two patch lists and returns result.
315 PatchList::Patch(inst_, a.end, b.begin); // in case refs to a somewhere
321 PatchList::Patch(inst_, b.end, a.begin);
325 PatchList::Patch(inst_, a.end, b.begin)
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/ddk/
ntddsnd.h 255 ULONG Patch;
  /art/patchoat/
patchoat.cc 111 bool PatchOat::Patch(const std::string& image_location, off_t delta,
178 LOG(ERROR) << "Failed to patch image file " << input_image->GetPath();
189 bool PatchOat::Patch(const File* input_oat, const std::string& image_location, off_t delta,
274 LOG(ERROR) << "Failed to patch oat file " << input_oat->GetPath();
278 LOG(ERROR) << "Failed to patch image file " << input_image->GetPath();
444 bool PatchOat::Patch(File* input_oat, off_t delta, File* output_oat, TimingLogger* timings) {
460 t.NewTiming("Patch Oat file");
604 LOG(ERROR) << ".oat_patches section not found. Aborting patch";
617 CHECK_LT(*patches, oat_text_sec->sh_size) << "Bad Patch";
696 UsageError(" --patched-image-file=<file.art>: Use the same patch delta as was used to patch")
    [all...]

Completed in 1928 milliseconds

1 2