Home
last modified time | relevance | path

Searched refs:old_object (Results 1 – 6 of 6) sorted by relevance

/external/boringssl/src/crypto/obj/
Dobj.c593 ASN1_OBJECT *old_object; in obj_add_object() local
611 ok = lh_ASN1_OBJECT_insert(global_added_by_nid, &old_object, obj); in obj_add_object()
613 ok &= lh_ASN1_OBJECT_insert(global_added_by_data, &old_object, obj); in obj_add_object()
616 ok &= lh_ASN1_OBJECT_insert(global_added_by_short_name, &old_object, obj); in obj_add_object()
619 ok &= lh_ASN1_OBJECT_insert(global_added_by_long_name, &old_object, obj); in obj_add_object()
/external/chromium-trace/catapult/telemetry/third_party/pyfakefs/pyfakefs/
Dfake_filesystem.py1572 old_object = old_dir_object.GetEntry(old_name)
1573 old_object_mtime = old_object.st_mtime
1575 if old_object.st_mode & stat.S_IFDIR:
1576 old_object.name = new_name
1577 new_dir_object.AddEntry(old_object)
1581 st_mode=old_object.st_mode,
1582 contents=old_object.contents,
1587 self.chown(new_file, old_object.st_uid, old_object.st_gid)
/external/chromium-trace/catapult/third_party/pyfakefs/pyfakefs/
Dfake_filesystem.py1590 old_object = old_dir_object.GetEntry(old_name)
1591 old_object_mtime = old_object.st_mtime
1593 if old_object.st_mode & stat.S_IFDIR:
1594 old_object.name = new_name
1595 new_dir_object.AddEntry(old_object)
1599 st_mode=old_object.st_mode,
1600 contents=old_object.contents,
1605 self.chown(new_file, old_object.st_uid, old_object.st_gid)
/external/autotest/frontend/afe/
Dmodel_logic.py1262 old_object = self.__class__.objects.get(**filters)
1263 self.resurrect_object(old_object)
1271 def resurrect_object(self, old_object): argument
1278 self.id = old_object.id
Dmodels.py558 def resurrect_object(self, old_object): argument
559 super(Host, self).resurrect_object(old_object)
562 self.status = old_object.status
/external/v8/src/heap/
Dmark-compact.cc1628 inline AllocationSpace AllocateTargetObject(HeapObject* old_object, in AllocateTargetObject() argument
1630 const int size = old_object->Size(); in AllocateTargetObject()
1631 AllocationAlignment alignment = old_object->RequiredAlignment(); in AllocateTargetObject()