Skip to content

Instantly share code, notes, and snippets.

@ddrscott
Created January 25, 2013 17:51
Show Gist options
  • Save ddrscott/4636462 to your computer and use it in GitHub Desktop.
Save ddrscott/4636462 to your computer and use it in GitHub Desktop.
How to free up the ns_data (NSMutableData) object? Even though I'm aways overwriting the @image_view.image, resources are not getting freed. If I try calling CG*Release methods, I get other crashes. Every to on_click_test_a is called 60 mb will be leaked.
def viewWillAppear
unless @image_view
@image_view = UIImageView.alloc.initWithFrame([[0,0],[200,200]])
@image_view.contentMode = UIViewContentModeScaleAspectFit
@image_view.backgroundColor = UIColor.blackColor
@image_view.center = view.center
view.addSubview @image_view
if self.navigationController
@test_a_button = UIBarButtonItem.alloc.initWithTitle('Test', style: UIBarButtonItemStylePlain, target: self, action: :on_click_test_a)
self.navigationItem.leftBarButtonItems = [@test_a_button]
end
end
def on_click_test_a
width = 4000
height = 3000
ns_data = NSMutableData.alloc.initWithLength(width * height * 4)
provider = CGDataProviderCreateWithCFData(ns_data)
# Create the color space.
color_space = CGColorSpaceCreateDeviceRGB()
image_ref = CGImageCreate(
scaled_width, # width in pixels
scaled_height, # height in pixels
8, # bits per component
8 * 4, # bits per pixel
scaled_width * 4, # bytes per row
color_space, # the color space
KCGImageAlphaLast, # bitmap info for RGBA (alpha is last) # CGImageAlphaInfo.
provider, # the data provider
nil, # decode array for remapping
false, # the "should interpolate" flag
KCGRenderingIntentDefault) # rendering intent # CGColorRenderingIntent
ui_image = UIImage.imageWithCGImage(image_ref, scale: UIScreen.mainScreen.scale, orientation: UIImageOrientationUp)
@image_view.image = ui_image
# Releasing these things will cause crash:
CGColorSpaceRelease(color_space)
CGDataProviderRelease(provider)
CGImageRelease(image_ref)
nil
end
Date/Time: 2013-01-25 11:40:06.737 -0600
OS Version: iOS 6.0.1 (10A523)
Report Version: 104
Exception Type: EXC_CRASH (SIGSEGV)
Exception Codes: 0x0000000000000000, 0x0000000000000000
Crashed Thread: 1
Thread 0 name: Dispatch queue: com.apple.main-thread
Thread 0:
0 CoreGraphics 0x3522da28 CGSConvertAlphaByte + 4920
1 CoreGraphics 0x3522c6aa img_alpha + 282
2 CoreGraphics 0x3522c3b8 img_alphamerge_read + 500
3 CoreGraphics 0x351fc540 img_data_lock + 4216
4 CoreGraphics 0x351fad2a CGSImageDataLock + 126
5 libRIP.A.dylib 0x3533d9e2 ripc_AcquireImage + 1378
6 libRIP.A.dylib 0x3533c7d8 ripc_DrawImage + 536
7 CoreGraphics 0x351fab84 CGContextDelegateDrawImage + 48
8 CoreGraphics 0x351faa16 CGContextDrawImage + 286
9 QuartzCore 0x3576b9c4 CA::Render::(anonymous namespace)::create_image_by_rendering(CGImage*, CGColorSpace*, unsigned int) + 392
10 QuartzCore 0x35747b10 CA::Render::create_image(CGImage*, CGColorSpace*, unsigned int) + 1632
11 QuartzCore 0x3574733a CA::Render::copy_image(CGImage*, CGColorSpace*, unsigned int, double) + 254
12 QuartzCore 0x35747226 CA::Render::prepare_image(CGImage*, CGColorSpace*, unsigned int, double) + 14
13 QuartzCore 0x35735af0 CA::Layer::prepare_commit(CA::Transaction*) + 416
14 QuartzCore 0x3573521e CA::Context::commit_transaction(CA::Transaction*) + 242
15 QuartzCore 0x35735024 CA::Transaction::commit() + 312
16 QuartzCore 0x35734e84 CA::Transaction::observer_callback(__CFRunLoopObserver*, unsigned long, void*) + 56
17 CoreFoundation 0x38ce96ca __CFRUNLOOP_IS_CALLING_OUT_TO_AN_OBSERVER_CALLBACK_FUNCTION__ + 18
18 CoreFoundation 0x38ce79bc __CFRunLoopDoObservers + 272
19 CoreFoundation 0x38ce7d12 __CFRunLoopRun + 738
20 CoreFoundation 0x38c5aeb8 CFRunLoopRunSpecific + 352
21 CoreFoundation 0x38c5ad44 CFRunLoopRunInMode + 100
22 GraphicsServices 0x392712e6 GSEventRunModal + 70
23 UIKit 0x338052f4 UIApplicationMain + 1116
24 Inktera_A 0x0071fcde main + 258
25 Inktera_A 0x0071f3ac start + 36
Thread 1 name: Dispatch queue: com.apple.libdispatch-manager
Thread 1 Crashed:
0 libsystem_kernel.dylib 0x392ae648 kevent64 + 24
1 libdispatch.dylib 0x31057974 _dispatch_mgr_invoke + 792
2 libdispatch.dylib 0x31057654 _dispatch_mgr_thread$VARIANT$mp + 32
Thread 2:
0 libsystem_kernel.dylib 0x392bed98 __workq_kernreturn + 8
1 libsystem_c.dylib 0x372c2cf6 _pthread_workq_return + 14
2 libsystem_c.dylib 0x372c2a12 _pthread_wqthread + 362
3 libsystem_c.dylib 0x372c28a0 start_wqthread + 4
Thread 3 name: WebThread
Thread 3:
0 libsystem_kernel.dylib 0x392adeb4 mach_msg_trap + 20
1 libsystem_kernel.dylib 0x392ae048 mach_msg + 36
2 CoreFoundation 0x38ce9040 __CFRunLoopServiceMachPort + 124
3 CoreFoundation 0x38ce7d9e __CFRunLoopRun + 878
4 CoreFoundation 0x38c5aeb8 CFRunLoopRunSpecific + 352
5 CoreFoundation 0x38c5ad44 CFRunLoopRunInMode + 100
6 WebCore 0x31e1ba40 RunWebThread(void*) + 440
7 libsystem_c.dylib 0x372cd30e _pthread_start + 306
8 libsystem_c.dylib 0x372cd1d4 thread_start + 4
Thread 4 name: com.apple.NSURLConnectionLoader
Thread 4:
0 libsystem_kernel.dylib 0x392adeb4 mach_msg_trap + 20
1 libsystem_kernel.dylib 0x392ae048 mach_msg + 36
2 CoreFoundation 0x38ce9040 __CFRunLoopServiceMachPort + 124
3 CoreFoundation 0x38ce7d9e __CFRunLoopRun + 878
4 CoreFoundation 0x38c5aeb8 CFRunLoopRunSpecific + 352
5 CoreFoundation 0x38c5ad44 CFRunLoopRunInMode + 100
6 Foundation 0x37d97bc8 +[NSURLConnection(Loader) _resourceLoadLoop:] + 304
7 Foundation 0x37e1b678 __NSThread__main__ + 968
8 libsystem_c.dylib 0x372cd30e _pthread_start + 306
9 libsystem_c.dylib 0x372cd1d4 thread_start + 4
Thread 5:
0 libsystem_kernel.dylib 0x392adeb4 mach_msg_trap + 20
1 libsystem_kernel.dylib 0x392ae048 mach_msg + 36
2 CoreFoundation 0x38ce9040 __CFRunLoopServiceMachPort + 124
3 CoreFoundation 0x38ce7d9e __CFRunLoopRun + 878
4 CoreFoundation 0x38c5aeb8 CFRunLoopRunSpecific + 352
5 CoreFoundation 0x38c5ad44 CFRunLoopRunInMode + 100
6 Foundation 0x37d6e78a -[NSRunLoop(NSRunLoop) runMode:beforeDate:] + 250
7 Foundation 0x37e12058 -[NSRunLoop(NSRunLoop) run] + 76
8 Inktera_A 0x00713fa0 -[TFNetworkManager networkRunLoopThreadEntry] + 120
9 Foundation 0x37e1b678 __NSThread__main__ + 968
10 libsystem_c.dylib 0x372cd30e _pthread_start + 306
11 libsystem_c.dylib 0x372cd1d4 thread_start + 4
Thread 6:
0 libsystem_kernel.dylib 0x392bed98 __workq_kernreturn + 8
1 libsystem_c.dylib 0x372c2cf6 _pthread_workq_return + 14
2 libsystem_c.dylib 0x372c2a12 _pthread_wqthread + 362
3 libsystem_c.dylib 0x372c28a0 start_wqthread + 4
Thread 7 name: com.apple.CFSocket.private
Thread 7:
0 libsystem_kernel.dylib 0x392be594 __select + 20
1 CoreFoundation 0x38ced1f2 __CFSocketManager + 674
2 libsystem_c.dylib 0x372cd30e _pthread_start + 306
3 libsystem_c.dylib 0x372cd1d4 thread_start + 4
Thread 1 crashed with ARM Thread State (32-bit):
r0: 0x00000004 r1: 0x00000000 r2: 0x00000000 r3: 0x02c10714
r4: 0x00000001 r5: 0x00000000 r6: 0x02c10744 r7: 0x02c10764
r8: 0x00000006 r9: 0x3b9ac9ff r10: 0x3a13d768 r11: 0x00000002
ip: 0x00000171 sp: 0x02c106d0 lr: 0x31057979 pc: 0x392ae648
cpsr: 0x60000010
Binary Images:
0x68000 - 0xdc4fff +Inktera_A armv7 <e868f4b354c933c6a3afcd9c6fef519d> /var/mobile/Applications/2503A18E-A089-47E8-885B-E8427F622DFE/Inktera_A.app/Inktera_A
0x172d000 - 0x172ffff +libremoteoainject.dylib armv7 <19beb22cb4f536c7b58261d53d16bcc9> /Developer/Library/PrivateFrameworks/DTInstrumentsServer.framework/libremoteoainject.dylib
0x2b73000 - 0x2b77fff AccessibilitySettingsLoader armv7 <3b810cde73b03dec8f584ff16b85c304> /System/Library/AccessibilityBundles/AccessibilitySettingsLoader.bundle/AccessibilitySettingsLoader
0x2fef4000 - 0x2ff14fff dyld armv7 <75594988728831d98e1f7c4c7b7ca29d> /usr/lib/dyld
0x30d73000 - 0x30e62fff GeoServices armv7 <60e2738ccb9635e9874907d54ea27b68> /System/Library/PrivateFrameworks/GeoServices.framework/GeoServices
0x30e63000 - 0x30ed9fff MapKit armv7 <e4016aefbae43bd886ed6e6e5375ba47> /System/Library/Frameworks/MapKit.framework/MapKit
0x30ee1000 - 0x30fcefff libiconv.2.dylib armv7 <faa5abb937e3306ab87c7f7c38315839> /usr/lib/libiconv.2.dylib
0x3104f000 - 0x3106cfff libdispatch.dylib armv7 <4abccf75caf33fa5a0c6037b2e1c5f41> /usr/lib/system/libdispatch.dylib
0x31092000 - 0x31093fff DataMigration armv7 <25f8874067393208acc083124bc3eb86> /System/Library/PrivateFrameworks/DataMigration.framework/DataMigration
0x312f0000 - 0x314a5fff CoreData armv7 <a42aa4f0f01833c390bc8c6c394dda1c> /System/Library/Frameworks/CoreData.framework/CoreData
0x314ca000 - 0x314ccfff OAuth armv7 <d3e2bc9ae64b31f0a89c52dc1c2797fc> /System/Library/PrivateFrameworks/OAuth.framework/OAuth
0x314cd000 - 0x314e2fff liblzma.5.dylib armv7 <2bfdc69b7f403270b2366e5e2448d520> /usr/lib/liblzma.5.dylib
0x314e3000 - 0x3151efff AppSupport armv7 <74ed50d2f7d23ce696b029dd817749c0> /System/Library/PrivateFrameworks/AppSupport.framework/AppSupport
0x31534000 - 0x31539fff CrashReporterSupport armv7 <7bde3532f2953f3894eb725379575926> /System/Library/PrivateFrameworks/CrashReporterSupport.framework/CrashReporterSupport
0x31a2a000 - 0x31cdffff libLAPACK.dylib armv7 <dd6f3958c3d536d6be90836682d2ffee> /System/Library/Frameworks/Accelerate.framework/Frameworks/vecLib.framework/libLAPACK.dylib
0x31ce0000 - 0x31da5fff CFNetwork armv7 <3e973794a4d13428bb974edcb2027139> /System/Library/Frameworks/CFNetwork.framework/CFNetwork
0x31dea000 - 0x31e0efff Bom armv7 <c76b4156e0463ecb922608d44c126d86> /System/Library/PrivateFrameworks/Bom.framework/Bom
0x31e0f000 - 0x31e10fff libdyld.dylib armv7 <3a149b4730663b1ea84e4a0a68ccc689> /usr/lib/system/libdyld.dylib
0x31e11000 - 0x32740fff WebCore armv7 <29cc251f63fe3a9eb16e96742b88ac4f> /System/Library/PrivateFrameworks/WebCore.framework/WebCore
0x32741000 - 0x32919fff ImageIO armv7 <fdfa8aa6307235b29435e5c8f6bc9819> /System/Library/Frameworks/ImageIO.framework/ImageIO
0x3291c000 - 0x3292bfff StoreKit armv7 <983783238dd63d30b5e62275f73dbae6> /System/Library/Frameworks/StoreKit.framework/StoreKit
0x3292c000 - 0x3292cfff vecLib armv7 <66204595f7653ef29e5e26cb8629177a> /System/Library/Frameworks/Accelerate.framework/Frameworks/vecLib.framework/vecLib
0x3292d000 - 0x32953fff libtidy.A.dylib armv7 <134c41c587fb33dca014bd525f68a0c7> /usr/lib/libtidy.A.dylib
0x32954000 - 0x32959fff IOMobileFramebuffer armv7 <3a351ca1d4ae3146a787f3e13564294b> /System/Library/PrivateFrameworks/IOMobileFramebuffer.framework/IOMobileFramebuffer
0x32aae000 - 0x32ab6fff ProtocolBuffer armv7 <359ccc7700c93d58adbbd74ecfda80d9> /System/Library/PrivateFrameworks/ProtocolBuffer.framework/ProtocolBuffer
0x33082000 - 0x331cbfff libicucore.A.dylib armv7 <0253932c1b9038a0849ef73c38e076ca> /usr/lib/libicucore.A.dylib
0x331cc000 - 0x331ccfff libSystem.B.dylib armv7 <f2cad3bd15f63f448a9c5be732c65819> /usr/lib/libSystem.B.dylib
0x331e4000 - 0x33222fff VideoToolbox armv7 <250b8df69b3c3f929f30463d218b7462> /System/Library/Frameworks/VideoToolbox.framework/VideoToolbox
0x334e6000 - 0x334e8fff libCoreVMClient.dylib armv7 <4fd03b13dbfe32628adc789367f48ce1> /System/Library/Frameworks/OpenGLES.framework/libCoreVMClient.dylib
0x334f8000 - 0x33551fff libvDSP.dylib armv7 <ad4c53081a263f0d96f63b9a80f2ae91> /System/Library/Frameworks/Accelerate.framework/Frameworks/vecLib.framework/libvDSP.dylib
0x33777000 - 0x33777fff libunwind.dylib armv7 <85e7546accc23ae1a973da4758512b7f> /usr/lib/system/libunwind.dylib
0x3377f000 - 0x33794fff libxpc.dylib armv7 <9fbb123276823c2383fc34b7a55404d7> /usr/lib/system/libxpc.dylib
0x337ae000 - 0x33d01fff UIKit armv7 <4f85b22a1eb73af08641066b29c4edb2> /System/Library/Frameworks/UIKit.framework/UIKit
0x33d0c000 - 0x33d21fff libmis.dylib armv7 <3afeeea531013420af75315d8d6dd332> /usr/lib/libmis.dylib
0x33d22000 - 0x33d4afff PrintKit armv7 <a8ef6136b9773d42ac20f7eb54279039> /System/Library/PrivateFrameworks/PrintKit.framework/PrintKit
0x33d58000 - 0x33dddfff libsqlite3.dylib armv7 <759ca29f533a33e88a81fddc3364bf19> /usr/lib/libsqlite3.dylib
0x33dde000 - 0x33deafff libMobileGestalt.dylib armv7 <0338ce49444332ec88cfc45c624bb39b> /usr/lib/libMobileGestalt.dylib
0x3421d000 - 0x34221fff libGFXShared.dylib armv7 <6a8f59f89218372d9f24c4193a179008> /System/Library/Frameworks/OpenGLES.framework/libGFXShared.dylib
0x34226000 - 0x3422cfff libcommonCrypto.dylib armv7 <690aaa493b5c3f9582499f174adf4964> /usr/lib/system/libcommonCrypto.dylib
0x34266000 - 0x34269fff libcache.dylib armv7 <e08b913e17753180b91728a8bd5dda7b> /usr/lib/system/libcache.dylib
0x3429b000 - 0x342fdfff CoreText armv7 <4a0bece315e9316fa1aa1b5923740f55> /System/Library/Frameworks/CoreText.framework/CoreText
0x34381000 - 0x343a0fff WebBookmarks armv7 <ed705f425035329d96ede473f023ed84> /System/Library/PrivateFrameworks/WebBookmarks.framework/WebBookmarks
0x343df000 - 0x34400fff AccessibilityUtilities armv7 <45feed4a262d3988a5802e62045b8627> /System/Library/PrivateFrameworks/AccessibilityUtilities.framework/AccessibilityUtilities
0x34486000 - 0x34797fff Altitude armv7 <6679eb99396833dfae5041e9a9667c8d> /System/Library/PrivateFrameworks/Altitude.framework/Altitude
0x34798000 - 0x3479afff TCC armv7 <f641dd0500fa3f0087d93da665ea84b8> /System/Library/PrivateFrameworks/TCC.framework/TCC
0x347f0000 - 0x34809fff DictionaryServices armv7 <e1f8d258d02c344cb0d17cec31818d3f> /System/Library/PrivateFrameworks/DictionaryServices.framework/DictionaryServices
0x34891000 - 0x34ca4fff FaceCoreLight armv7 <0cb7a12beb3d32c1abd1834be8328b7c> /System/Library/PrivateFrameworks/FaceCoreLight.framework/FaceCoreLight
0x34e19000 - 0x34e31fff libsystem_info.dylib armv7 <be3d5625aed733ffb2d53400655fe110> /usr/lib/system/libsystem_info.dylib
0x34f89000 - 0x34f92fff AssetsLibraryServices armv7 <e51cbfefefbc30b6b47d99739123033e> /System/Library/PrivateFrameworks/AssetsLibraryServices.framework/AssetsLibraryServices
0x34fa2000 - 0x34fa3fff libdnsinfo.dylib armv7 <6c912cedc1e938ad914dfce91a529b68> /usr/lib/system/libdnsinfo.dylib
0x351f7000 - 0x3532ffff CoreGraphics armv7 <903960bfcfe93adb943752851f88491e> /System/Library/Frameworks/CoreGraphics.framework/CoreGraphics
0x35330000 - 0x3534bfff libRIP.A.dylib armv7 <51845c89677f3e77aeb221c44bda48f1> /System/Library/Frameworks/CoreGraphics.framework/Resources/libRIP.A.dylib
0x353a4000 - 0x353effff libstdc++.6.dylib armv7 <55a7612b28c43cfcad7089b688591b80> /usr/lib/libstdc++.6.dylib
0x35408000 - 0x354ebfff libBLAS.dylib armv7 <56d8e00447133cd89457deec007327cb> /System/Library/Frameworks/Accelerate.framework/Frameworks/vecLib.framework/libBLAS.dylib
0x354ed000 - 0x355c5fff StoreServices armv7 <49ff779e3e783e7ca6b56b5788c2c119> /System/Library/PrivateFrameworks/StoreServices.framework/StoreServices
0x355c6000 - 0x355d4fff libsystem_network.dylib armv7 <d0fb0eda6cb53a4da859d598c59e7522> /usr/lib/system/libsystem_network.dylib
0x355d9000 - 0x35616fff libGLImage.dylib armv7 <7db25f3d55b93f31868e37326fba1e57> /System/Library/Frameworks/OpenGLES.framework/libGLImage.dylib
0x35652000 - 0x35653fff IOAccelerator armv7 <de8af6be681832008d180d7424d55f0d> /System/Library/PrivateFrameworks/IOAccelerator.framework/IOAccelerator
0x3565a000 - 0x35661fff liblockdown.dylib armv7 <257ecb171a363e4298a63f72d7fffea2> /usr/lib/liblockdown.dylib
0x356a2000 - 0x356b3fff Accounts armv7 <07b95faa96e73ffeb52694cbad7f3528> /System/Library/Frameworks/Accounts.framework/Accounts
0x356bc000 - 0x35730fff ProofReader armv7 <cc89a352199a393ba0e46af69e670ef9> /System/Library/PrivateFrameworks/ProofReader.framework/ProofReader
0x35731000 - 0x35846fff QuartzCore armv7 <d96571a6986c3012b315cb860f4d65ca> /System/Library/Frameworks/QuartzCore.framework/QuartzCore
0x35847000 - 0x3589ffff CoreLocation armv7 <7bca9c29b3d23f61ba0e28af9e8ee357> /System/Library/Frameworks/CoreLocation.framework/CoreLocation
0x35a9f000 - 0x35aabfff libz.1.dylib armv7 <a3bba3842596315a81aa171a8bbda7b5> /usr/lib/libz.1.dylib
0x35b07000 - 0x35b1cfff libresolv.9.dylib armv7 <e79b59a3406f34d9b37f8085955115ce> /usr/lib/libresolv.9.dylib
0x35ca9000 - 0x35cfefff CoreTelephony armv7 <e5b7289acd1231acb950569a81c10ac1> /System/Library/Frameworks/CoreTelephony.framework/CoreTelephony
0x35f3c000 - 0x35fa0fff AddressBook armv7 <bdf14ca2b4fb32e5bdb2a9fafb460f09> /System/Library/Frameworks/AddressBook.framework/AddressBook
0x35fa6000 - 0x35fb7fff SpringBoardServices armv7 <8b9821bc87ba354297392cb50da7be58> /System/Library/PrivateFrameworks/SpringBoardServices.framework/SpringBoardServices
0x35fd2000 - 0x35feffff CoreServicesInternal armv7 <0162575a2e8b35d2915faee400c2bf30> /System/Library/PrivateFrameworks/CoreServicesInternal.framework/CoreServicesInternal
0x35ff2000 - 0x3604bfff MobileCoreServices armv7 <d831f1f9285535acac5035a29d84aaaf> /System/Library/Frameworks/MobileCoreServices.framework/MobileCoreServices
0x36118000 - 0x361cdfff CoreImage armv7 <ad658acd554a386fb81bb137a237b5f4> /System/Library/Frameworks/CoreImage.framework/CoreImage
0x3653e000 - 0x36540fff libcompiler_rt.dylib armv7 <7add7c91a2673641b0c5f0433a203da6> /usr/lib/system/libcompiler_rt.dylib
0x36541000 - 0x36553fff DataAccessExpress armv7 <000fb77814ee3ca0841e14bbba48867d> /System/Library/PrivateFrameworks/DataAccessExpress.framework/DataAccessExpress
0x3659d000 - 0x365a6fff libbz2.1.0.dylib armv7 <5258dce78afc3fd7934a5674b92ad785> /usr/lib/libbz2.1.0.dylib
0x365f8000 - 0x366d4fff WebKit armv7 <2b33136aa86e383a83d32908bddc9667> /System/Library/PrivateFrameworks/WebKit.framework/WebKit
0x366d5000 - 0x366dbfff MobileKeyBag armv7 <a81d768a49cf37a1a111594d39cea3fe> /System/Library/PrivateFrameworks/MobileKeyBag.framework/MobileKeyBag
0x368b0000 - 0x368b4fff IOSurface armv7 <959e67366a553eca85e6ccfa2d668366> /System/Library/PrivateFrameworks/IOSurface.framework/IOSurface
0x36adc000 - 0x36b0afff Security armv7 <fb75984442a435cd84aac722142d5a44> /System/Library/Frameworks/Security.framework/Security
0x36b0b000 - 0x36b0bfff Accelerate armv7 <22bee3e96cbc3538bfc50ca5be618cc0> /System/Library/Frameworks/Accelerate.framework/Accelerate
0x36b5b000 - 0x36bfbfff UIFoundation armv7 <795a2f216cc3379c95eb645c633cc527> /System/Library/PrivateFrameworks/UIFoundation.framework/UIFoundation
0x36c18000 - 0x36c1bfff MobileInstallation armv7 <e6b6ae9d4f5f3831a40fcc370afc1429> /System/Library/PrivateFrameworks/MobileInstallation.framework/MobileInstallation
0x36c1c000 - 0x36d5afff vImage armv7 <a7fd7fcd7041356db2ca297402ab6e8c> /System/Library/Frameworks/Accelerate.framework/Frameworks/vImage.framework/vImage
0x36fd6000 - 0x36fe7fff libvMisc.dylib armv7 <a3d025234d1a3880a0e5f87879633ee0> /System/Library/Frameworks/Accelerate.framework/Frameworks/vecLib.framework/libvMisc.dylib
0x36fed000 - 0x36ffafff TelephonyUtilities armv7 <19dbc34167323bca9510012b926d8cf7> /System/Library/PrivateFrameworks/TelephonyUtilities.framework/TelephonyUtilities
0x371ce000 - 0x3720dfff SystemConfiguration armv7 <44d84d23d10f344c90b4d9e9611ec976> /System/Library/Frameworks/SystemConfiguration.framework/SystemConfiguration
0x372a5000 - 0x372bbfff libCRFSuite.dylib armv7 <9b3fd56781103f209be2c43e48c1efc9> /usr/lib/libCRFSuite.dylib
0x372bc000 - 0x37342fff libsystem_c.dylib armv7 <d45dc8901531343caf9b7e703d3eba50> /usr/lib/system/libsystem_c.dylib
0x37498000 - 0x3749bfff libmacho.dylib armv7 <2a9fe0b48f473d0f8fe2bf076cd12753> /usr/lib/system/libmacho.dylib
0x374b8000 - 0x37510fff ManagedConfiguration armv7 <fa250e174ca43d3c93a61e41f0df9771> /System/Library/PrivateFrameworks/ManagedConfiguration.framework/ManagedConfiguration
0x375cd000 - 0x375d4fff XPCObjects armv7 <5bc4f7282e9d3945a6c1885217670667> /System/Library/PrivateFrameworks/XPCObjects.framework/XPCObjects
0x37714000 - 0x37730fff libsystem_m.dylib armv7 <7b2a25c750063de480f6a691f716b9d7> /usr/lib/system/libsystem_m.dylib
0x37909000 - 0x37915fff AccountSettings armv7 <0b7524e9a8ef36bf9e9f6a5c445478af> /System/Library/PrivateFrameworks/AccountSettings.framework/AccountSettings
0x3794b000 - 0x37950fff liblaunch.dylib armv7 <021ff140d6003f3281dfa29b79fa9e6e> /usr/lib/system/liblaunch.dylib
0x37951000 - 0x379b6fff CoreMedia armv7 <28a1fe1e729d37e0bb623201b2652a45> /System/Library/Frameworks/CoreMedia.framework/CoreMedia
0x379fc000 - 0x37a08fff libbsm.0.dylib armv7 <e98708fbfa683df2a91d45dc765071a7> /usr/lib/libbsm.0.dylib
0x37a09000 - 0x37baffff JavaScriptCore armv7 <8171afa18a08371c89cab6c9d823d1c5> /System/Library/PrivateFrameworks/JavaScriptCore.framework/JavaScriptCore
0x37ceb000 - 0x37cfefff libc++abi.dylib armv7 <c5a5f03138353747b539e620ef2bb5c0> /usr/lib/libc++abi.dylib
0x37cff000 - 0x37d2cfff MobileAsset armv7 <7ef1c10c0c493ad4b0073de317f2448d> /System/Library/PrivateFrameworks/MobileAsset.framework/MobileAsset
0x37d6a000 - 0x37f2dfff Foundation armv7 <2e1ac190c4f837e2a1059043dd7b1c63> /System/Library/Frameworks/Foundation.framework/Foundation
0x381cb000 - 0x381d2fff libsystem_notify.dylib armv7 <6e39f8511ecc3c3489829714eb6fde12> /usr/lib/system/libsystem_notify.dylib
0x38240000 - 0x38275fff libcorecrypto.dylib armv7 <ebd023957d853fa8bd35309592e92dac> /usr/lib/system/libcorecrypto.dylib
0x38315000 - 0x38318fff MobileSystemServices armv7 <6edd9c74c5a73c33809152446abe1538> /System/Library/PrivateFrameworks/MobileSystemServices.framework/MobileSystemServices
0x38425000 - 0x38426fff libremovefile.dylib armv7 <6a0dd04f0710329b9c1722db2235f5c3> /usr/lib/system/libremovefile.dylib
0x3843c000 - 0x38485fff IOKit armv7 <635953fdb81237e991ab57ccff92e97d> /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit
0x38486000 - 0x38584fff libobjc.A.dylib armv7 <5224e803eca737a4b2c6451d136b3d28> /usr/lib/libobjc.A.dylib
0x385c0000 - 0x385ccfff GenerationalStorage armv7 <74d50f4c8d243a35ad3ae89d85f2793a> /System/Library/PrivateFrameworks/GenerationalStorage.framework/GenerationalStorage
0x386d2000 - 0x386e1fff CoreVideo armv7 <092f3aa965803a1aaea69af2ac5143f5> /System/Library/Frameworks/CoreVideo.framework/CoreVideo
0x3885e000 - 0x3887bfff PersistentConnection armv7 <cd76b3fcb0db3922ad62f547ab2e55fb> /System/Library/PrivateFrameworks/PersistentConnection.framework/PersistentConnection
0x3887c000 - 0x388b7fff libCGFreetype.A.dylib armv7 <bc5b8d4a10863ce192acf26428e68da7> /System/Library/Frameworks/CoreGraphics.framework/Resources/libCGFreetype.A.dylib
0x388d3000 - 0x388eafff BackBoardServices armv7 <a5570d37cd3f30cbb9572a9cdb824126> /System/Library/PrivateFrameworks/BackBoardServices.framework/BackBoardServices
0x38932000 - 0x38988fff CoreAudio armv7 <a3a2eb3a29443b42a23aa8ecb1232846> /System/Library/Frameworks/CoreAudio.framework/CoreAudio
0x389a4000 - 0x389a4fff liblangid.dylib armv7 <a04b639c18593885bd81bfa623a6f07c> /usr/lib/liblangid.dylib
0x38b51000 - 0x38b56fff libcopyfile.dylib armv7 <15aa2c3c8d523273913d4fc6717d3b7c> /usr/lib/system/libcopyfile.dylib
0x38b57000 - 0x38c04fff libxml2.2.dylib armv7 <ef245c0afc113f54b6f30921671edab2> /usr/lib/libxml2.2.dylib
0x38c49000 - 0x38c4afff libsystem_sandbox.dylib armv7 <46cd200d99323aebbf6d81e5fb16424f> /usr/lib/system/libsystem_sandbox.dylib
0x38c52000 - 0x38d84fff CoreFoundation armv7 <e30fc309df7b3c9f8ac57f0f6047d65f> /System/Library/Frameworks/CoreFoundation.framework/CoreFoundation
0x39035000 - 0x3907ffff libc++.1.dylib armv7 <a361a382693032b9bdfb2860033b3024> /usr/lib/libc++.1.dylib
0x390ee000 - 0x390eefff libsystem_blocks.dylib armv7 <993c9bfe8bf031548b9ddba63cc17015> /usr/lib/system/libsystem_blocks.dylib
0x390ef000 - 0x3910ffff libxslt.1.dylib armv7 <7f6f63b31f333c41952f685fdd54a6cb> /usr/lib/libxslt.1.dylib
0x39202000 - 0x39208fff libAccessibility.dylib armv7 <9e8bfe02e370375ea8439ab895528982> /usr/lib/libAccessibility.dylib
0x3920b000 - 0x3920cfff CoreSurface armv7 <aa216ca3e2e0381ea8cf9abbd6f430f4> /System/Library/PrivateFrameworks/CoreSurface.framework/CoreSurface
0x39262000 - 0x39262fff libCVMSPluginSupport.dylib armv7 <1fd63e8305ab3ca190b1ef6ab2555f9d> /System/Library/Frameworks/OpenGLES.framework/libCVMSPluginSupport.dylib
0x3926c000 - 0x39277fff GraphicsServices armv7 <c5879083e8693aba827c78a32abe2391> /System/Library/PrivateFrameworks/GraphicsServices.framework/GraphicsServices
0x392ad000 - 0x392c3fff libsystem_kernel.dylib armv7 <4c2862d2e8f23119bfe114b0662c6241> /usr/lib/system/libsystem_kernel.dylib
0x394da000 - 0x3964efff VectorKit armv7 <3b697bc4593d3e9596ae9f73ff75e5cb> /System/Library/PrivateFrameworks/VectorKit.framework/VectorKit
0x39cb7000 - 0x39cbefff OpenGLES armv7 <e035b741746c316dba8f1e59a568bf17> /System/Library/Frameworks/OpenGLES.framework/OpenGLES
0x39ce2000 - 0x39ce5fff AggregateDictionary armv7 <df4096b1cdc5335790db9a2a51e6b029> /System/Library/PrivateFrameworks/AggregateDictionary.framework/AggregateDictionary
0x39d25000 - 0x39d4afff OpenCL armv7 <f7e2cb8404653022bf5cdea17bc5d06f> /System/Library/PrivateFrameworks/OpenCL.framework/OpenCL
0x39d51000 - 0x39d51fff libkeymgr.dylib armv7 <8a2e3a8fdf9335e2867a33e2d1a9baf8> /usr/lib/system/libkeymgr.dylib
0x39d61000 - 0x39d67fff libsystem_dnssd.dylib armv7 <6c1c1aaf9a3537d7ada4b519d14da7ab> /usr/lib/system/libsystem_dnssd.dylib
0x39f34000 - 0x39f80fff IMFoundation armv7 <fd1c50ba98f9307f8b06d074aed412b0> /System/Library/PrivateFrameworks/IMFoundation.framework/IMFoundation
0x39fe4000 - 0x39fe9fff CommonUtilities armv7 <cb484bdaf5003e4baa13f83bafff62a9> /System/Library/PrivateFrameworks/CommonUtilities.framework/CommonUtilities
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment