• Home
  • History
  • Annotate
  • Raw
  • Download
  • only in /macosx-10.9.5/dyld-239.4/launch-cache/

Lines Matching refs:pint_t

116     typedef typename A::P::uint_t pint_t;
118 pint_t next; // objc_header_info *
119 pint_t mhdr; // mach_header or mach_header_64
120 pint_t info; // objc_image_info *
121 pint_t fname; // const char *
245 typedef typename A::P::uint_t pint_t;
256 pint_t getOffset(SharedCache<A> *cache) const { return A::P::getP(*(pint_t * const)cache->mappedAddressForVMAddress(A::P::getP(offset))); }
257 void setOffset(SharedCache<A> *cache, pint_t newOffset) { A::P::setP(*(pint_t *)cache->mappedAddressForVMAddress(A::P::getP(offset)), newOffset); }
268 typedef typename A::P::uint_t pint_t;
285 objc_ivar_t<A>& get(pint_t i) const { return *(objc_ivar_t<A> *)((uint8_t *)&first + i * A::P::E::get32(entsize)); }
421 typedef typename A::P::uint_t pint_t;
422 pint_t count;
423 pint_t list[0];
431 pint_t getCount() const { return A::P::getP(count); }
433 objc_protocol_t<A>* get(SharedCache<A>* cache, pint_t i) {
437 void overwrite(pint_t& index, const objc_protocol_list_t<A>* src) {
438 pint_t srcCount = src->getCount();
439 memcpy(list+index, src->list, srcCount * sizeof(pint_t));
446 static uint32_t byteSizeForCount(pint_t c) {
447 return sizeof(objc_protocol_list_t<A>) + c*sizeof(pint_t);
463 static objc_protocol_list_t<A>* newProtocolList(pint_t newCount) {
645 typedef typename A::P::uint_t pint_t;
656 for (pint_t i = 0; i < ivars->getCount(); i++) {
676 typedef typename A::P::uint_t pint_t;
687 for (pint_t i = 0; i < classes.count(); i++) {
701 typedef typename A::P::uint_t pint_t;
715 for (pint_t i = 0; i < classes.count(); i++) {
729 for (pint_t i = 0; i < cats.count(); i++) {
744 for (pint_t i = 0; i < protocols.count(); i++) {
770 typedef typename A::P::uint_t pint_t;
778 for (pint_t m = 0; m < mlist->getCount(); m++) {
779 pint_t oldValue = mlist->get(m).getName();
780 pint_t newValue = mVisitor.visit(oldValue);
799 for (pint_t i = 0; i < selrefs.count(); i++) {
800 pint_t oldValue = selrefs.getUnmapped(i);
801 pint_t newValue = mVisitor.visit(oldValue);
808 for (pint_t i = 0; i < msgrefs.count(); i++) {
810 pint_t oldValue = msg.getName();
811 pint_t newValue = mVisitor.visit(oldValue);
914 typedef typename A::P::uint_t pint_t;
944 typedef typename A::P::uint_t pint_t;
981 pint_t mh_vmaddr = cache->VMAddressForMappedAddress(mh);