Searched refs:mappedAddressForVMAddress (Results 1 - 4 of 4) sorted by relevance

/macosx-10.10.1/dyld-353.2.1/launch-cache/
H A DObjCLegacyAbstraction.hpp78 struct objc_class<A> *getIsa(SharedCache<A> *cache) const INLINE { return (struct objc_class<A> *)cache->mappedAddressForVMAddress(A::P::E::get32(isa)); }
79 struct objc_method_list<A> *getMethodList(SharedCache<A> *cache) const INLINE { return (struct objc_method_list<A> *)cache->mappedAddressForVMAddress(A::P::E::get32(methodList)); }
92 struct objc_method_list<A> *getInstanceMethods(SharedCache<A> *cache) const INLINE { return (struct objc_method_list<A> *)cache->mappedAddressForVMAddress(A::P::E::get32(instance_methods)); }
93 struct objc_method_list<A> *getClassMethods(SharedCache<A> *cache) const INLINE { return (struct objc_method_list<A> *)cache->mappedAddressForVMAddress(A::P::E::get32(class_methods)); }
106 struct objc_class<A> *getClass(SharedCache<A> *cache, int index) const INLINE { return (struct objc_class<A> *)cache->mappedAddressForVMAddress(A::P::E::get32(defs[index])); }
107 struct objc_category<A> *getCategory(SharedCache<A> *cache, int index) const INLINE { return (struct objc_category<A> *)cache->mappedAddressForVMAddress(A::P::E::get32(defs[getClassCount() + index])); }
117 struct objc_symtab<A> *getSymtab(SharedCache<A> *cache) const INLINE { return (struct objc_symtab<A> *)cache->mappedAddressForVMAddress(A::P::E::get32(symtab)); }
145 struct objc_method_description_list<A> *getInstanceMethodDescriptions(SharedCache<A> *cache) const INLINE { return (struct objc_method_description_list<A> *)cache->mappedAddressForVMAddress(A::P::E::get32(instance_methods)); }
146 struct objc_method_description_list<A> *getClassMethodDescriptions(SharedCache<A> *cache) const INLINE { return (struct objc_method_description_list<A> *)cache->mappedAddressForVMAddress(A::P::E::get32(class_methods)); }
H A DObjCModernAbstraction.hpp253 uint32_t& offset(SharedCache<A> *cache) const { return *(uint32_t *)cache->mappedAddressForVMAddress(A::P::getP(ptr)); }
267 uint64_t& offset(SharedCache<A> *cache) const { return *(uint64_t *)cache->mappedAddressForVMAddress(A::P::getP(ptr)); }
285 const char * getName(SharedCache<A> *cache) const { return (const char *)cache->mappedAddressForVMAddress(A::P::getP(name)); }
358 const char * getName(SharedCache<A>* cache) const { return (const char *)cache->mappedAddressForVMAddress(A::P::getP(name)); }
360 const char * getAttributes(SharedCache<A>* cache) const { return (const char *)cache->mappedAddressForVMAddress(A::P::getP(attributes)); }
441 objc_method_list_t<A> *getInstanceMethods(SharedCache<A>* cache) const { return (objc_method_list_t<A> *)cache->mappedAddressForVMAddress(A::P::getP(instanceMethods)); }
443 objc_method_list_t<A> *getClassMethods(SharedCache<A>* cache) const { return (objc_method_list_t<A> *)cache->mappedAddressForVMAddress(A::P::getP(classMethods)); }
445 objc_method_list_t<A> *getOptionalInstanceMethods(SharedCache<A>* cache) const { return (objc_method_list_t<A> *)cache->mappedAddressForVMAddress(A::P::getP(optionalInstanceMethods)); }
447 objc_method_list_t<A> *getOptionalClassMethods(SharedCache<A>* cache) const { return (objc_method_list_t<A> *)cache->mappedAddressForVMAddress(A::P::getP(optionalClassMethods)); }
464 return (objc_protocol_t<A>*)cache->mappedAddressForVMAddress(
[all...]
H A DMachORebaser.hpp97 pint_t* mappedAddressForVMAddress(pint_t vmaddress);
335 typename A::P::uint_t* Rebaser<A>::mappedAddressForVMAddress(pint_t vmaddress) function in class:Rebaser
345 throwf("mappedAddressForVMAddress(0x%08llX) not found", (uint64_t)vmaddr);
378 return this->mappedAddressForVMAddress(r_address + fOrignalVMRelocBaseAddress);
526 uint8_t* p = (uint8_t*)mappedAddressForVMAddress(address);
541 p = (uint32_t*)mappedAddressForVMAddress(address);
547 p = (uint32_t*)mappedAddressForVMAddress(address);
553 p = (uint32_t*)mappedAddressForVMAddress(address);
559 p = (uint32_t*)mappedAddressForVMAddress(address);
567 p = (uint32_t*)mappedAddressForVMAddress(addres
[all...]
H A Dupdate_dyld_shared_cache.cpp741 void * mappedAddressForVMAddress(uint64_t vmaddr);
879 , fBase(fSection ? (pint_t *)cache->mappedAddressForVMAddress(fSection->addr()) : 0)
892 return (T)fCache->mappedAddressForVMAddress(getUnmapped(index));
931 , fBase(fSection ? (T *)cache->mappedAddressForVMAddress(fSection->addr()) : 0)
1324 void *SharedCache<A>::mappedAddressForVMAddress(uint64_t vmaddr) function in class:SharedCache
2117 fCache->mappedAddressForVMAddress(oldValue);
2219 uint8_t* optROData = (uint8_t*)mappedAddressForVMAddress(optROSection->addr());
2222 uint8_t* optRWData = (uint8_t*)mappedAddressForVMAddress(optRWSection->addr());
2358 mappedAddressForVMAddress(imageInfoSection->addr());

Completed in 106 milliseconds