Searched defs:copy (Results 1 - 8 of 8) sorted by relevance

/art/patchoat/
H A Dpatchoat.h6 * You may obtain a copy of the License at
73 void FixupMethod(mirror::ArtMethod* object, mirror::ArtMethod* copy)
93 // Walks through the old image and patches the mmap'd copy of it to the new offset. It does not
97 PatchVisitor(PatchOat* patcher, mirror::Object* copy) : patcher_(patcher), copy_(copy) {} argument
H A Dpatchoat.cc6 * You may obtain a copy of the License at
393 mirror::Object* copy = RelocatedCopyOf(object); local
394 CHECK(copy != nullptr);
399 copy->SetReadBarrierPointer(moved_to);
400 DCHECK_EQ(copy->GetReadBarrierPointer(), moved_to);
403 PatchOat::PatchVisitor visitor(this, copy);
407 static_cast<mirror::ArtMethod*>(copy));
411 void PatchOat::FixupMethod(mirror::ArtMethod* object, mirror::ArtMethod* copy) { argument
418 copy->SetEntryPointFromPortableCompiledCode(reinterpret_cast<void*>(portable + delta_));
424 copy
[all...]
/art/runtime/base/
H A Dstringpiece.cc6 * You may obtain a copy of the License at
28 int StringPiece::copy(char* buf, size_type n, size_type pos) const { function in class:art::StringPiece
/art/runtime/mirror/
H A Dobject.cc6 * You may obtain a copy of the License at
78 // object above, copy references fields one by one again with a
128 Object* copy; local
131 copy = heap->AllocObject<true>(self, GetClass(), num_bytes, visitor);
133 copy = heap->AllocNonMovableObject<true>(self, GetClass(), num_bytes, visitor);
135 return copy;
/art/compiler/
H A Dimage_writer.cc6 * You may obtain a copy of the License at
189 LOG(FATAL) << "Fat locked object " << obj << " found during object copy";
193 LOG(FATAL) << "Thin locked object " << obj << " found during object copy";
427 // of dex caches first and then lock it again to copy the dex
607 Object* copy = reinterpret_cast<Object*>(dst); local
610 copy->SetLockWord(LockWord(), false);
611 image_writer->FixupObject(obj, copy);
616 FixupVisitor(ImageWriter* image_writer, Object* copy) : image_writer_(image_writer), copy_(copy) { argument
643 FixupClassVisitor(ImageWriter* image_writer, Object* copy) argument
663 FixupObject(Object* orig, Object* copy) argument
736 FixupMethod(ArtMethod* orig, ArtMethod* copy) argument
[all...]
/art/compiler/utils/
H A Dassembler_test.h6 * You may obtain a copy of the License at
618 std::string copy = file.substr(0, space_index - 1); local
621 return stat(copy.c_str(), &buf) == 0;
/art/compiler/dex/
H A Dmir_graph.cc6 * You may obtain a copy of the License at
1042 // Add a copy of each MIR.
1355 // TODO: This value is needed for LLVM and debugging. Currently, we compute this and then copy to
1676 // Loop head: it was already processed, mark end and copy exit blocks to the queue.
1867 // We don't do a memcpy style copy here because it would lead to a lot of things
1895 // Now copy instructions.
1897 // Get a copy first.
1898 MIR* copy = mir->Copy(mir_graph); local
1901 result_bb->AppendMIR(copy);
/art/tools/
H A Dcpplint.py79 import copy namespace
1559 self.pp_stack.append(_PreprocessorInfo(copy.deepcopy(self.stack)))
1568 self.pp_stack[-1].stack_before_else = copy.deepcopy(self.stack)
1571 self.stack = copy.deepcopy(self.pp_stack[-1].stack_before_if)
1582 # Here we can just use a shallow copy since we are the last
3565 for _template in ('copy', 'max', 'min', 'min_element', 'sort', 'swap',
3716 # Let's copy the include_state so it is only messed up within this function.
3717 include_state = include_state.copy()
3734 # include_state is modified during iteration, so we iterate over a copy of

Completed in 1708 milliseconds