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

1 2 3 4 5 6 7

  /art/compiler/linker/
linker_patch_test.cc 27 LinkerPatch patches[] = { local
152 constexpr size_t last_index = arraysize(patches) - 1u;
154 for (size_t i = 0; i != arraysize(patches); ++i) {
155 for (size_t j = 0; j != arraysize(patches); ++j) {
157 EXPECT_EQ(expected, patches[i] == patches[j]) << i << " " << j;
161 for (size_t i = 0; i != arraysize(patches); ++i) {
162 for (size_t j = 0; j != arraysize(patches); ++j) {
164 EXPECT_EQ(expected, patches[i] < patches[j]) << i << " " << j
    [all...]
  /external/bsdiff/
split_patch_writer_unittest.cc 23 std::vector<PatchWriterInterface*> patches; local
25 patches.push_back(&fake_patch);
27 patch_writer_.reset(new SplitPatchWriter(new_chunk_size, patches));
37 std::vector<PatchWriterInterface*> patches = {&p}; local
38 patch_writer_.reset(new SplitPatchWriter(10, patches));
39 // We should have pass two patches.
51 // Leaving patches at the end that are empty is considered an error.
54 // We write less than the amount needed for two patches, which should fail.
83 // patches
86 // The middle control entry would be split in tree different patches
    [all...]
  /bootable/recovery/applypatch/
applypatch_modes.cpp 123 std::vector<std::unique_ptr<Value>> patches; local
125 patches.push_back(std::make_unique<Value>(
128 return applypatch(argv[1], argv[2], argv[3], target_size, sha1s, patches, &bonus);
131 // This program (applypatch) applies binary patches to files in a way that
  /art/compiler/linker/mips64/
relative_patcher_mips64_test.cc 43 void CheckPcRelativePatch(const ArrayRef<const LinkerPatch>& patches, uint32_t target_offset);
60 void Mips64RelativePatcherTest::CheckPcRelativePatch(const ArrayRef<const LinkerPatch>& patches,
62 AddCompiledMethod(MethodRef(1u), kUnpatchedPcRelativeCode, ArrayRef<const LinkerPatch>(patches));
84 LinkerPatch patches[] = { local
89 CheckPcRelativePatch(ArrayRef<const LinkerPatch>(patches), bss_begin_ + string_entry_offset);
  /art/compiler/linker/mips/
relative_patcher_mips32r6_test.cc 41 void CheckPcRelativePatch(const ArrayRef<const LinkerPatch>& patches, uint32_t target_offset);
58 void Mips32r6RelativePatcherTest::CheckPcRelativePatch(const ArrayRef<const LinkerPatch>& patches,
60 AddCompiledMethod(MethodRef(1u), kUnpatchedPcRelativeCode, ArrayRef<const LinkerPatch>(patches));
82 LinkerPatch patches[] = { local
87 CheckPcRelativePatch(ArrayRef<const LinkerPatch>(patches), bss_begin_ + string_entry_offset);
93 LinkerPatch patches[] = { local
98 CheckPcRelativePatch(ArrayRef<const LinkerPatch>(patches), string_offset);
relative_patcher_mips_test.cc 42 void CheckPcRelativePatch(const ArrayRef<const LinkerPatch>& patches, uint32_t target_offset);
61 void MipsRelativePatcherTest::CheckPcRelativePatch(const ArrayRef<const LinkerPatch>& patches,
63 AddCompiledMethod(MethodRef(1u), kUnpatchedPcRelativeCode, ArrayRef<const LinkerPatch>(patches));
87 LinkerPatch patches[] = { local
92 CheckPcRelativePatch(ArrayRef<const LinkerPatch>(patches), bss_begin_ + string_entry_offset);
98 LinkerPatch patches[] = { local
103 CheckPcRelativePatch(ArrayRef<const LinkerPatch>(patches), string_offset);
  /art/compiler/linker/x86/
relative_patcher_x86_test.cc 46 LinkerPatch patches[] = { local
49 AddCompiledMethod(MethodRef(1u), kCallCode, ArrayRef<const LinkerPatch>(patches));
92 LinkerPatch patches[] = { local
95 AddCompiledMethod(MethodRef(1u), kCallCode, ArrayRef<const LinkerPatch>(patches));
123 LinkerPatch patches[] = { local
126 AddCompiledMethod(MethodRef(1u), code, ArrayRef<const LinkerPatch>(patches));
155 LinkerPatch patches[] = { local
158 AddCompiledMethod(MethodRef(1u), code, ArrayRef<const LinkerPatch>(patches));
  /art/compiler/linker/x86_64/
relative_patcher_x86_64_test.cc 66 LinkerPatch patches[] = { local
69 AddCompiledMethod(MethodRef(1u), kCallCode, ArrayRef<const LinkerPatch>(patches));
112 LinkerPatch patches[] = { local
115 AddCompiledMethod(MethodRef(1u), kCallCode, ArrayRef<const LinkerPatch>(patches));
136 LinkerPatch patches[] = { local
139 AddCompiledMethod(MethodRef(1u), kDexCacheLoadCode, ArrayRef<const LinkerPatch>(patches));
159 LinkerPatch patches[] = { local
163 AddCompiledMethod(MethodRef(1u), kStringReferenceCode, ArrayRef<const LinkerPatch>(patches));
  /art/compiler/driver/
compiled_method_storage_test.cc 78 ArrayRef<const linker::LinkerPatch> patches[] = { local
89 for (auto&& p : patches) {
  /frameworks/base/media/java/android/media/
AudioRecordingConfiguration.java 195 ArrayList<AudioPatch> patches = new ArrayList<AudioPatch>(); local
196 if (AudioManager.listAudioPatches(patches) != AudioManager.SUCCESS) {
197 Log.e(TAG, "Error retrieving list of audio patches");
200 for (int i = 0 ; i < patches.size() ; i++) {
201 final AudioPatch patch = patches.get(i);
  /external/perfetto/include/perfetto/tracing/core/
commit_data_request.h 140 const std::vector<Patch>& patches() const { return patches_; } function in class:perfetto::CommitDataRequest::ChunkToPatch
  /bootable/recovery/updater/
install.cpp 250 std::vector<std::unique_ptr<Value>> patches; local
253 patches.push_back(std::move(arg_values[i * 2 + 1]));
257 target_size, patch_sha_str, patches, nullptr);
    [all...]
  /art/compiler/linker/arm/
relative_patcher_thumb2_test.cc 229 void CheckPcRelativePatch(const ArrayRef<const LinkerPatch>& patches, uint32_t target_offset);
300 const LinkerPatch patches[] = { local
304 CheckPcRelativePatch(ArrayRef<const LinkerPatch>(patches), bss_begin_ + string_entry_offset);
310 const LinkerPatch patches[] = { local
314 CheckPcRelativePatch(ArrayRef<const LinkerPatch>(patches), string_offset);
317 void Thumb2RelativePatcherTest::CheckPcRelativePatch(const ArrayRef<const LinkerPatch>& patches,
319 AddCompiledMethod(MethodRef(1u), kUnpatchedPcRelativeCode, ArrayRef<const LinkerPatch>(patches));
349 const LinkerPatch patches[] = { local
352 AddCompiledMethod(MethodRef(1u), kCallCode, ArrayRef<const LinkerPatch>(patches));
389 const LinkerPatch patches[] = local
599 const LinkerPatch patches[] = { local
701 const LinkerPatch patches[] = { local
994 const LinkerPatch patches[] = { local
1075 const LinkerPatch patches[] = { local
1135 const LinkerPatch patches[] = { local
1181 std::vector<LinkerPatch> patches; local
    [all...]
  /external/perfetto/src/tracing/core/
service_impl.cc 927 std::array<TraceBuffer::Patch, 1024> patches; \/\/ Uninitialized. local
    [all...]
  /packages/services/Car/service/src/com/android/car/
CarAudioService.java 699 // audio patches after creation
700 ArrayList<AudioPatch> patches = new ArrayList<>(); local
701 int result = AudioSystem.listAudioPatches(patches, new int[1]);
707 for (AudioPatch patch : patches) {
    [all...]
  /art/compiler/linker/arm64/
relative_patcher_arm64_test.cc 259 const LinkerPatch patches[] = { local
265 ArrayRef<const LinkerPatch>(patches));
284 const LinkerPatch patches[] = { local
290 ArrayRef<const LinkerPatch>(patches));
307 const LinkerPatch patches[] = { local
313 ArrayRef<const LinkerPatch>(patches));
322 const LinkerPatch patches[] = { local
328 ArrayRef<const LinkerPatch>(patches));
534 const LinkerPatch patches[] = { local
537 AddCompiledMethod(MethodRef(1u), kCallCode, ArrayRef<const LinkerPatch>(patches));
570 const LinkerPatch patches[] = { local
924 const LinkerPatch patches[] = { local
1171 const LinkerPatch patches[] = { local
1248 const LinkerPatch patches[] = { local
    [all...]
  /external/libcups/cups/
ppd.h 304 char *patches; /* Patch commands to be sent to printer */ member in struct:ppd_file_s
  /frameworks/av/media/libaudioclient/
IAudioFlinger.cpp 790 struct audio_patch *patches)
792 if (num_patches == NULL || *num_patches == 0 || patches == NULL) {
804 reply.read(patches, *num_patches * sizeof(struct audio_patch));
1419 struct audio_patch *patches = local
    [all...]
IAudioPolicyService.cpp 618 struct audio_patch *patches,
621 if (num_patches == NULL || (*num_patches != 0 && patches == NULL) ||
627 unsigned int numPatchesReq = (patches == NULL) ? 0 : *num_patches;
639 reply.read(patches, numPatchesReq * sizeof(struct audio_patch));
1392 struct audio_patch *patches = local
    [all...]
  /external/pcre/dist2/src/sljit/
sljitLir.h 349 sljit_uw patches; member in struct:sljit_compiler
    [all...]
  /prebuilts/devtools/tools/lib/
ninepatch.jar 
  /prebuilts/gradle-plugin/com/android/tools/ninepatch/24.4.0-beta3/
ninepatch-24.4.0-beta3.jar 
  /prebuilts/gradle-plugin/com/android/tools/ninepatch/24.4.0-beta6/
ninepatch-24.4.0-beta6.jar 
  /prebuilts/gradle-plugin/com/android/tools/ninepatch/24.5.0/
ninepatch-24.5.0.jar 
  /prebuilts/gradle-plugin/com/android/tools/ninepatch/25.0.0/
ninepatch-25.0.0.jar 

Completed in 453 milliseconds

1 2 3 4 5 6 7