Uploaded image for project: 'Qt'
  1. Qt
  2. QTBUG-43372

Qt WebView QML object destroying cause application crash on iOS

    XMLWordPrintable

Details

    • iOS/tvOS/watchOS
    • 41c8e094e551cb294b6bd810f20957b4137b7dbc

    Description

      Hi.

      The reason that crash, when dismissing WebView, it triggers windowChanged signal with null object.

      void QWindowControllerItem::onWindowChanged(QQuickWindow* window)
      {
          if (!m_controlledWindow)
              return;
      
          m_controlledWindow->setParent(window);
      }
      

      I fixed this issue with:

      void QWindowControllerItem::onWindowChanged(QQuickWindow* window)
      {
          if (!m_controlledWindow || !window)
              return;
      
          m_controlledWindow->setParent(window);
      }
      

      You can reproduce the issue with following code.

      import QtQuick 2.4
      import QtQuick.Controls 1.2
      import QtWebView 1.0
      
      ApplicationWindow {
          id: win
      
          width: 320
          height: 480
          visible: true
      
          Text {
              font.pixelSize: 24
              anchors.centerIn: parent
              text: "It works!"
          }
      
      
          Item {
              id: container
      
              width: win.width
              height: win.height
      
              WebView {
                  width: parent.width
                  height: parent.height - 100
                  url: "http://qt.io"
              }
      
              Button {
                  width: parent.width - 30
                  height: 80
                  text: "Dismiss"
                  anchors.horizontalCenter: parent.horizontalCenter
                  anchors.bottom: parent.bottom
                  anchors.bottomMargin: 10
      
                  onClicked: container.destroy()
              }
      
          }
      }
      
      

      and the crash log.

      Incident Identifier: DBD56CA4-DC58-4C0B-8F38-7F7E5FAFB35C
      CrashReporter Key:   646de0b381c52c6a1fdb08bb15bb6d3cc0858888
      Hardware Model:      iPhone5,2
      Process:             bug3 [30072]
      Path:                /var/mobile/Applications/147B5620-5A90-4DEE-BBEE-91A01AF8D936/bug3.app/bug3
      Identifier:          Testing.bug3
      Version:             1.0 (1.0)
      Code Type:           ARM (Native)
      Parent Process:      launchd [1]
      
      Date/Time:           2014-12-15 14:34:56.491 -0800
      OS Version:          iOS 7.1.1 (11D201)
      Report Version:      104
      
      Exception Type:  EXC_BAD_ACCESS (SIGSEGV)
      Exception Subtype: KERN_INVALID_ADDRESS at 0x00000004
      Triggered by Thread:  0
      
      Thread 0 Crashed:
      0   bug3                          	0x0042f296 0x72000 + 3920534
      1   bug3                          	0x00434bca 0x72000 + 3943370
      2   bug3                          	0x00434bfc 0x72000 + 3943420
      3   bug3                          	0x00431c98 0x72000 + 3931288
      4   bug3                          	0x000d67fa 0x72000 + 411642
      5   bug3                          	0x000d7cee 0x72000 + 417006
      6   bug3                          	0x00b23ee4 0x72000 + 11214564
      7   bug3                          	0x00b236f2 0x72000 + 11212530
      8   bug3                          	0x002a582c 0x72000 + 2308140
      9   bug3                          	0x002a57dc 0x72000 + 2308060
      10  bug3                          	0x002a06a6 0x72000 + 2287270
      11  bug3                          	0x0029f0dc 0x72000 + 2281692
      12  bug3                          	0x0029f072 0x72000 + 2281586
      13  bug3                          	0x0029ebae 0x72000 + 2280366
      14  bug3                          	0x0029e696 0x72000 + 2279062
      15  bug3                          	0x002d7b9a 0x72000 + 2513818
      16  bug3                          	0x002d7b00 0x72000 + 2513664
      17  bug3                          	0x002d7b1c 0x72000 + 2513692
      18  bug3                          	0x00b1de2c 0x72000 + 11189804
      19  bug3                          	0x00b1da8c 0x72000 + 11188876
      20  bug3                          	0x002a8e8e 0x72000 + 2322062
      21  bug3                          	0x00ae5a80 0x72000 + 10959488
      22  bug3                          	0x00ae5a06 0x72000 + 10959366
      23  bug3                          	0x00424fae 0x72000 + 3878830
      24  bug3                          	0x00ae58ba 0x72000 + 10959034
      25  bug3                          	0x002ac05a 0x72000 + 2334810
      26  bug3                          	0x00ae696a 0x72000 + 10963306
      27  bug3                          	0x00ae60a4 0x72000 + 10961060
      28  bug3                          	0x0009f23a 0x72000 + 184890
      29  bug3                          	0x000a1646 0x72000 + 194118
      30  CoreFoundation                	0x2eac3fec __CFRUNLOOP_IS_CALLING_OUT_TO_A_SOURCE0_PERFORM_FUNCTION__ + 12
      31  CoreFoundation                	0x2eac34b2 __CFRunLoopDoSources0 + 202
      32  CoreFoundation                	0x2eac1ca2 __CFRunLoopRun + 626
      33  CoreFoundation                	0x2ea2c764 CFRunLoopRunSpecific + 520
      34  CoreFoundation                	0x2ea2c546 CFRunLoopRunInMode + 102
      35  GraphicsServices              	0x339996ce GSEventRunModal + 134
      36  UIKit                         	0x3138b88c UIApplicationMain + 1132
      37  bug3                          	0x0007e42a 0x72000 + 50218
      38  bug3                          	0x0007ac14 0x72000 + 35860
      
      Thread 1:
      0   libsystem_kernel.dylib        	0x39831804 kevent64 + 24
      1   libdispatch.dylib             	0x39780050 _dispatch_mgr_invoke + 228
      2   libdispatch.dylib             	0x3977a2de _dispatch_mgr_thread + 34
      
      Thread 2:
      0   libsystem_kernel.dylib        	0x39844c70 __workq_kernreturn + 8
      1   libsystem_pthread.dylib       	0x398a9c1e _pthread_wqthread + 306
      2   libsystem_pthread.dylib       	0x398a9ad8 start_wqthread + 4
      
      Thread 3 name:  QQmlThread
      Thread 3:
      0   libsystem_kernel.dylib        	0x39844434 __select + 20
      1   bug3                          	0x00b5640e 0x72000 + 11420686
      2   bug3                          	0x00b5766e 0x72000 + 11425390
      3   bug3                          	0x00b56c72 0x72000 + 11422834
      4   bug3                          	0x00b581b8 0x72000 + 11428280
      5   bug3                          	0x00ae2762 0x72000 + 10946402
      6   bug3                          	0x00ae2924 0x72000 + 10946852
      7   bug3                          	0x00993850 0x72000 + 9574480
      8   bug3                          	0x00885a22 0x72000 + 8469026
      9   bug3                          	0x0099ae50 0x72000 + 9604688
      10  libsystem_pthread.dylib       	0x398ab956 _pthread_body + 138
      11  libsystem_pthread.dylib       	0x398ab8c6 _pthread_start + 98
      12  libsystem_pthread.dylib       	0x398a9ae4 thread_start + 4
      
      Thread 4 name:  WebThread
      Thread 4:
      0   libsystem_kernel.dylib        	0x39831a50 mach_msg_trap + 20
      1   libsystem_kernel.dylib        	0x39831848 mach_msg + 36
      2   CoreFoundation                	0x2eac3624 __CFRunLoopServiceMachPort + 152
      3   CoreFoundation                	0x2eac1d44 __CFRunLoopRun + 788
      4   CoreFoundation                	0x2ea2c764 CFRunLoopRunSpecific + 520
      5   CoreFoundation                	0x2ea2c546 CFRunLoopRunInMode + 102
      6   WebCore                       	0x36d5fc48 RunWebThread(void*) + 416
      7   libsystem_pthread.dylib       	0x398ab956 _pthread_body + 138
      8   libsystem_pthread.dylib       	0x398ab8c6 _pthread_start + 98
      9   libsystem_pthread.dylib       	0x398a9ae4 thread_start + 4
      
      Thread 5:
      0   libsystem_kernel.dylib        	0x39844c70 __workq_kernreturn + 8
      1   libsystem_pthread.dylib       	0x398a9c1e _pthread_wqthread + 306
      2   libsystem_pthread.dylib       	0x398a9ad8 start_wqthread + 4
      
      Thread 6:
      0   libsystem_kernel.dylib        	0x39844c70 __workq_kernreturn + 8
      1   libsystem_pthread.dylib       	0x398a9c1e _pthread_wqthread + 306
      2   libsystem_pthread.dylib       	0x398a9ad8 start_wqthread + 4
      
      Thread 7 name:  QSGRenderThread
      Thread 7:
      0   libsystem_kernel.dylib        	0x39844544 __semwait_signal + 24
      1   libsystem_c.dylib             	0x397b5744 nanosleep + 168
      2   libsystem_c.dylib             	0x397b5694 usleep + 48
      3   QuartzCore                    	0x310a704c native_window_begin_iosurface(_EAGLNativeWindowObject*) + 1068
      4   GLEngine                      	0x30da0b62 gliGetNewIOSurfaceES + 66
      5   IMGSGX543RC2GLDriver          	0x2d87a788 sgxResolveDeferredFramebufferOffset + 92
      6   IMGSGX543RC2GLDriver          	0x2d870f40 sgxPatchDeferredFramebufferOffsets + 28
      7   IMGSGX543RC2GLDriver          	0x2d876084 sgxEndRender + 8
      8   IMGSGX543RC2GLDriver          	0x2d86eff8 SubmitPackets + 20
      9   GLEngine                      	0x30da0a6a gliPresentViewES_Exec + 166
      10  GLEngine                      	0x30da097a gliPresentViewES + 130
      11  OpenGLES                      	0x30dab0c8 -[EAGLContext presentRenderbuffer:] + 60
      12  bug3                          	0x00085e04 0x72000 + 81412
      13  bug3                          	0x00085e24 0x72000 + 81444
      14  bug3                          	0x0045db98 0x72000 + 4111256
      15  bug3                          	0x0028d002 0x72000 + 2207746
      16  bug3                          	0x0028d862 0x72000 + 2209890
      17  bug3                          	0x0099ae50 0x72000 + 9604688
      18  libsystem_pthread.dylib       	0x398ab956 _pthread_body + 138
      19  libsystem_pthread.dylib       	0x398ab8c6 _pthread_start + 98
      20  libsystem_pthread.dylib       	0x398a9ae4 thread_start + 4
      
      Thread 8 name:  JavaScriptCore::BlockFree
      Thread 8:
      0   libsystem_kernel.dylib        	0x39843f2c __psynch_cvwait + 24
      1   libsystem_pthread.dylib       	0x398aaf62 _pthread_cond_wait + 518
      2   libsystem_pthread.dylib       	0x398abd9c pthread_cond_wait + 36
      3   JavaScriptCore                	0x2fa59588 JSC::BlockAllocator::blockFreeingThreadMain() + 204
      4   JavaScriptCore                	0x2fa56bf0 WTF::wtfThreadEntryPoint(void*) + 12
      5   libsystem_pthread.dylib       	0x398ab956 _pthread_body + 138
      6   libsystem_pthread.dylib       	0x398ab8c6 _pthread_start + 98
      7   libsystem_pthread.dylib       	0x398a9ae4 thread_start + 4
      
      Thread 9 name:  JavaScriptCore::Marking
      Thread 9:
      0   libsystem_kernel.dylib        	0x39843f2c __psynch_cvwait + 24
      1   libsystem_pthread.dylib       	0x398aaf62 _pthread_cond_wait + 518
      2   libsystem_pthread.dylib       	0x398abd9c pthread_cond_wait + 36
      3   JavaScriptCore                	0x2fbf7ca2 JSC::GCThread::waitForNextPhase() + 74
      4   JavaScriptCore                	0x2fbf7cfc JSC::GCThread::gcThreadMain() + 48
      5   JavaScriptCore                	0x2fa56bf0 WTF::wtfThreadEntryPoint(void*) + 12
      6   libsystem_pthread.dylib       	0x398ab956 _pthread_body + 138
      7   libsystem_pthread.dylib       	0x398ab8c6 _pthread_start + 98
      8   libsystem_pthread.dylib       	0x398a9ae4 thread_start + 4
      
      Thread 10 name:  com.apple.NSURLConnectionLoader
      Thread 10:
      0   libsystem_kernel.dylib        	0x39831a50 mach_msg_trap + 20
      1   libsystem_kernel.dylib        	0x39831848 mach_msg + 36
      2   CoreFoundation                	0x2eac3624 __CFRunLoopServiceMachPort + 152
      3   CoreFoundation                	0x2eac1d44 __CFRunLoopRun + 788
      4   CoreFoundation                	0x2ea2c764 CFRunLoopRunSpecific + 520
      5   CoreFoundation                	0x2ea2c546 CFRunLoopRunInMode + 102
      6   Foundation                    	0x2f46c23c +[NSURLConnection(Loader) _resourceLoadLoop:] + 316
      7   Foundation                    	0x2f4e1a0a __NSThread__main__ + 1058
      8   libsystem_pthread.dylib       	0x398ab956 _pthread_body + 138
      9   libsystem_pthread.dylib       	0x398ab8c6 _pthread_start + 98
      10  libsystem_pthread.dylib       	0x398a9ae4 thread_start + 4
      
      Thread 11:
      0   libsystem_kernel.dylib        	0x39844c70 __workq_kernreturn + 8
      1   libsystem_pthread.dylib       	0x398a9c1e _pthread_wqthread + 306
      2   libsystem_pthread.dylib       	0x398a9ad8 start_wqthread + 4
      
      Thread 12 name:  WebCore: CFNetwork Loader
      Thread 12:
      0   libsystem_kernel.dylib        	0x39831a50 mach_msg_trap + 20
      1   libsystem_kernel.dylib        	0x39831848 mach_msg + 36
      2   CoreFoundation                	0x2eac3624 __CFRunLoopServiceMachPort + 152
      3   CoreFoundation                	0x2eac1d44 __CFRunLoopRun + 788
      4   CoreFoundation                	0x2ea2c764 CFRunLoopRunSpecific + 520
      5   CoreFoundation                	0x2ea2c546 CFRunLoopRunInMode + 102
      6   WebCore                       	0x36da8c32 WebCore::runLoaderThread(void*) + 250
      7   JavaScriptCore                	0x2fa56bf0 WTF::wtfThreadEntryPoint(void*) + 12
      8   libsystem_pthread.dylib       	0x398ab956 _pthread_body + 138
      9   libsystem_pthread.dylib       	0x398ab8c6 _pthread_start + 98
      10  libsystem_pthread.dylib       	0x398a9ae4 thread_start + 4
      
      Thread 13:
      0   libsystem_kernel.dylib        	0x39844c70 __workq_kernreturn + 8
      1   libsystem_pthread.dylib       	0x398a9c1e _pthread_wqthread + 306
      2   libsystem_pthread.dylib       	0x398a9ad8 start_wqthread + 4
      
      Thread 14 name:  com.apple.CFSocket.private
      Thread 14:
      0   libsystem_kernel.dylib        	0x39844434 __select + 20
      1   CoreFoundation                	0x2eac751e __CFSocketManager + 482
      2   libsystem_pthread.dylib       	0x398ab956 _pthread_body + 138
      3   libsystem_pthread.dylib       	0x398ab8c6 _pthread_start + 98
      4   libsystem_pthread.dylib       	0x398a9ae4 thread_start + 4
      
      Thread 15 name:  WebCore: LocalStorage
      Thread 15:
      0   libsystem_kernel.dylib        	0x39843f2c __psynch_cvwait + 24
      1   libsystem_pthread.dylib       	0x398aaf62 _pthread_cond_wait + 518
      2   libsystem_pthread.dylib       	0x398abd9c pthread_cond_wait + 36
      3   JavaScriptCore                	0x2fa596b8 WTF::ThreadCondition::timedWait(WTF::Mutex&, double) + 56
      4   WebCore                       	0x36e93e38 WTF::PassOwnPtr<WTF::Function<void ()> > WTF::MessageQueue<WTF::Function<void ()> >::waitForMessageFilteredWithTimeout<bool (WTF::Function<void ()>*)>(WTF::MessageQueueWaitResult&, bool (&)(WTF::Function<void ()>*), double) + 104
      5   WebCore                       	0x36e93dbe WebCore::StorageThread::threadEntryPoint() + 162
      6   JavaScriptCore                	0x2fa56bf0 WTF::wtfThreadEntryPoint(void*) + 12
      7   libsystem_pthread.dylib       	0x398ab956 _pthread_body + 138
      8   libsystem_pthread.dylib       	0x398ab8c6 _pthread_start + 98
      9   libsystem_pthread.dylib       	0x398a9ae4 thread_start + 4
      
      Thread 0 crashed with ARM Thread State (32-bit):
          r0: 0x00000004    r1: 0x17d59a00      r2: 0x00000000      r3: 0x27d0e3cc
          r4: 0x00b241d3    r5: 0x17d7b69c      r6: 0x00000088      r7: 0x27d0e024
          r8: 0x17d70ed0    r9: 0x000d7cbd     r10: 0x00000000     r11: 0x00000001
          ip: 0x00e57928    sp: 0x27d0e01c      lr: 0x00434bcf      pc: 0x0042f296
        cpsr: 0x00000030
      
      Binary Images:
      0x72000 - 0xe55fff bug3 armv7  <99b9b73a0b083d5ea7b2e37e3e24cb90> /var/mobile/Applications/147B5620-5A90-4DEE-BBEE-91A01AF8D936/bug3.app/bug3
      0x2be90000 - 0x2beb3fff dyld armv7s  <4d05d388718832c99cdd4e74aeb07d51> /usr/lib/dyld
      0x2d76a000 - 0x2d853fff RawCamera armv7s  <f70ac6362c49391bb9c10441847cdabd> /System/Library/CoreServices/RawCamera.bundle/RawCamera
      0x2d86c000 - 0x2d973fff IMGSGX543RC2GLDriver armv7s  <7e8324e6d64d3ea99ade4eb066101cb5> /System/Library/Extensions/IMGSGX543RC2GLDriver.bundle/IMGSGX543RC2GLDriver
      0x2d97d000 - 0x2da7ffff AVFoundation armv7s  <c88b12b244d13bbd9a8ab681956234e4> /System/Library/Frameworks/AVFoundation.framework/AVFoundation
      0x2da80000 - 0x2daa8fff libAVFAudio.dylib armv7s  <b92283f0007834c7a52635881be94ab7> /System/Library/Frameworks/AVFoundation.framework/libAVFAudio.dylib
      0x2daa9000 - 0x2daa9fff Accelerate armv7s  <58ca068138d93e988a34a0c8c34b0b11> /System/Library/Frameworks/Accelerate.framework/Accelerate
      0x2dab3000 - 0x2dc80fff vImage armv7s  <9923548d8ed23bb1b1020130b5d38dab> /System/Library/Frameworks/Accelerate.framework/Frameworks/vImage.framework/vImage
      0x2dc81000 - 0x2dd63fff libBLAS.dylib armv7s  <48f7680a8fd83251ad8415bb090408c3> /System/Library/Frameworks/Accelerate.framework/Frameworks/vecLib.framework/libBLAS.dylib
      0x2dd64000 - 0x2e01cfff libLAPACK.dylib armv7s  <2547383dc88d3329827b4d76768915ee> /System/Library/Frameworks/Accelerate.framework/Frameworks/vecLib.framework/libLAPACK.dylib
      0x2e01d000 - 0x2e08bfff libvDSP.dylib armv7s  <83036da6f5d9308bb5fad06b2d29bac9> /System/Library/Frameworks/Accelerate.framework/Frameworks/vecLib.framework/libvDSP.dylib
      0x2e08c000 - 0x2e09efff libvMisc.dylib armv7s  <addc52a9647f3269965a750366ebed70> /System/Library/Frameworks/Accelerate.framework/Frameworks/vecLib.framework/libvMisc.dylib
      0x2e09f000 - 0x2e09ffff vecLib armv7s  <4a647b20c3f03490aae530226350a4cd> /System/Library/Frameworks/Accelerate.framework/Frameworks/vecLib.framework/vecLib
      0x2e0a0000 - 0x2e0c0fff Accounts armv7s  <73b0639b81fe30d5b2b13628d3df2273> /System/Library/Frameworks/Accounts.framework/Accounts
      0x2e0c2000 - 0x2e129fff AddressBook armv7s  <e0051f44c0d0377da85049ff86fbc890> /System/Library/Frameworks/AddressBook.framework/AddressBook
      0x2e397000 - 0x2e6b3fff AudioToolbox armv7s  <42ef392f2082317cbd3857838ab97aaf> /System/Library/Frameworks/AudioToolbox.framework/AudioToolbox
      0x2e6b4000 - 0x2e7bafff CFNetwork armv7s  <7f8df6965c623f8d9913dee8c8c9c7b6> /System/Library/Frameworks/CFNetwork.framework/CFNetwork
      0x2e7bb000 - 0x2e816fff CoreAudio armv7s  <34a6461e9ad3380ea9e0405f81aad500> /System/Library/Frameworks/CoreAudio.framework/CoreAudio
      0x2e817000 - 0x2e82efff CoreBluetooth armv7s  <0e672bb563ea3c2fb0c6ae0070d00efb> /System/Library/Frameworks/CoreBluetooth.framework/CoreBluetooth
      0x2e82f000 - 0x2ea23fff CoreData armv7s  <23650924fc293fdf994419f6894720a9> /System/Library/Frameworks/CoreData.framework/CoreData
      0x2ea24000 - 0x2eb67ff0 CoreFoundation armv7s  <747c88b531d53bcbadfbcc953a429ea0> /System/Library/Frameworks/CoreFoundation.framework/CoreFoundation
      0x2eb68000 - 0x2ec8cfff CoreGraphics armv7s  <182ccc3a111d360eb5c1e58b4289afb3> /System/Library/Frameworks/CoreGraphics.framework/CoreGraphics
      0x2ec8e000 - 0x2ecc9fff libCGFreetype.A.dylib armv7s  <1d9c402cc18433db9a72d349876b2fea> /System/Library/Frameworks/CoreGraphics.framework/Resources/libCGFreetype.A.dylib
      0x2eccb000 - 0x2ecd5fff libCMSBuiltin.A.dylib armv7s  <1efb72c2985332c485d07c5a3784f93b> /System/Library/Frameworks/CoreGraphics.framework/Resources/libCMSBuiltin.A.dylib
      0x2eeba000 - 0x2eed4fff libRIP.A.dylib armv7s  <23b82f0d28e238938519439e243ae7a7> /System/Library/Frameworks/CoreGraphics.framework/Resources/libRIP.A.dylib
      0x2eed5000 - 0x2efaefff CoreImage armv7s  <1eedb55ace133e10bb629fa881c45542> /System/Library/Frameworks/CoreImage.framework/CoreImage
      0x2efaf000 - 0x2effefff CoreLocation armv7s  <5d78705a46ab313fa21f1d5ed2f0ce3f> /System/Library/Frameworks/CoreLocation.framework/CoreLocation
      0x2f036000 - 0x2f0b1fff CoreMedia armv7s  <d68d0cf856f13ff7ab9418ccd671cd65> /System/Library/Frameworks/CoreMedia.framework/CoreMedia
      0x2f0b2000 - 0x2f15afff CoreMotion armv7s  <bd402a711091322bb2284be34283973f> /System/Library/Frameworks/CoreMotion.framework/CoreMotion
      0x2f15b000 - 0x2f1b3fff CoreTelephony armv7s  <711db5ac808937b09143f43f11f06422> /System/Library/Frameworks/CoreTelephony.framework/CoreTelephony
      0x2f1b4000 - 0x2f244fff CoreText armv7s  <43e84c5a90fc36a984363965f2d8029b> /System/Library/Frameworks/CoreText.framework/CoreText
      0x2f245000 - 0x2f254fff CoreVideo armv7s  <b114a9e05c08366b8735a2911defa97b> /System/Library/Frameworks/CoreVideo.framework/CoreVideo
      0x2f414000 - 0x2f5fefff Foundation armv7s  <b75ca4f9d9b739ef9b16e482db277849> /System/Library/Frameworks/Foundation.framework/Foundation
      0x2f7e0000 - 0x2f836fff IOKit armv7s  <1acd39a2052f36cebb9b68f9f1448619> /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit
      0x2f837000 - 0x2fa47fff ImageIO armv7s  <3234150da2d13945a33c98335e53db80> /System/Library/Frameworks/ImageIO.framework/ImageIO
      0x2fa48000 - 0x2fc93fff JavaScriptCore armv7s  <3d942899969b3c41aa764b228ec6cc65> /System/Library/Frameworks/JavaScriptCore.framework/JavaScriptCore
      0x2fd44000 - 0x2fd48fff MediaAccessibility armv7s  <c87f228e5b18380d837ed901196705c1> /System/Library/Frameworks/MediaAccessibility.framework/MediaAccessibility
      0x2fd49000 - 0x2ff46fff MediaPlayer armv7s  <1c65c12a923b31d79845761a12c16dfb> /System/Library/Frameworks/MediaPlayer.framework/MediaPlayer
      0x2ff47000 - 0x3024dfff MediaToolbox armv7s  <c3d89d30f78b3077b444a870e89a31a7> /System/Library/Frameworks/MediaToolbox.framework/MediaToolbox
      0x302fa000 - 0x3035dfff MobileCoreServices armv7s  <1a736ebbc93431c8943cdd93a0a0fdcb> /System/Library/Frameworks/MobileCoreServices.framework/MobileCoreServices
      0x30cd4000 - 0x30da4fff GLEngine armv7s  <36bc7e993fdd39548363f1a20d268da7> /System/Library/Frameworks/OpenGLES.framework/GLEngine.bundle/GLEngine
      0x30da5000 - 0x30dadfff OpenGLES armv7s  <1c3e551d0a923b86940ad36a6e682463> /System/Library/Frameworks/OpenGLES.framework/OpenGLES
      0x30daf000 - 0x30daffff libCVMSPluginSupport.dylib armv7s  <ba661b77360f360b88c3163a02538376> /System/Library/Frameworks/OpenGLES.framework/libCVMSPluginSupport.dylib
      0x30db0000 - 0x30db3fff libCoreFSCache.dylib armv7s  <8a379a714e3030f58f0874e4f03f13b2> /System/Library/Frameworks/OpenGLES.framework/libCoreFSCache.dylib
      0x30db4000 - 0x30db7fff libCoreVMClient.dylib armv7s  <38ff1c7f12f83f8bac062e8daf9d4c10> /System/Library/Frameworks/OpenGLES.framework/libCoreVMClient.dylib
      0x30db8000 - 0x30dbffff libGFXShared.dylib armv7s  <2406a4e5c5b437dbb0a3553655ac4951> /System/Library/Frameworks/OpenGLES.framework/libGFXShared.dylib
      0x30dc0000 - 0x30e00fff libGLImage.dylib armv7s  <7d912d8e3a453456a6e2d806b59aa448> /System/Library/Frameworks/OpenGLES.framework/libGLImage.dylib
      0x30e01000 - 0x30f35fff libGLProgrammability.dylib armv7s  <a003378abe7439229e6ef3513edc248f> /System/Library/Frameworks/OpenGLES.framework/libGLProgrammability.dylib
      0x30f98000 - 0x310dffff QuartzCore armv7s  <741ee0338b1235aab1550f91a3956041> /System/Library/Frameworks/QuartzCore.framework/QuartzCore
      0x310e0000 - 0x31136fff QuickLook armv7s  <73823c899b8131559643894f353b8457> /System/Library/Frameworks/QuickLook.framework/QuickLook
      0x31139000 - 0x3117bfff Security armv7s  <cd7187d315eb301e845cfae580ca905f> /System/Library/Frameworks/Security.framework/Security
      0x312cb000 - 0x3131afff SystemConfiguration armv7s  <82758c34b29a333bbdfe73e78361e0e1> /System/Library/Frameworks/SystemConfiguration.framework/SystemConfiguration
      0x3131d000 - 0x31a90fff UIKit armv7s  <f725ad0982673286911bff834295ec99> /System/Library/Frameworks/UIKit.framework/UIKit
      0x31a91000 - 0x31adffff VideoToolbox armv7s  <052e071cd44b3d33abdb0761635ba4be> /System/Library/Frameworks/VideoToolbox.framework/VideoToolbox
      0x31e87000 - 0x31e8bfff AggregateDictionary armv7s  <b4e58fe6256136749b7d54bf07bcbc51> /System/Library/PrivateFrameworks/AggregateDictionary.framework/AggregateDictionary
      0x32169000 - 0x3217dfff AirTraffic armv7s  <e392848676123c118b3cc488a99472ea> /System/Library/PrivateFrameworks/AirTraffic.framework/AirTraffic
      0x324e7000 - 0x32525fff AppSupport armv7s  <0cb23d5c42d530cfa7e43605cf368293> /System/Library/PrivateFrameworks/AppSupport.framework/AppSupport
      0x3260b000 - 0x3261bfff ApplePushService armv7s  <3f89365747c33bcfa22a4d3009cd1715> /System/Library/PrivateFrameworks/ApplePushService.framework/ApplePushService
      0x3261c000 - 0x32622fff AppleSRP armv7s  <e1db5ed3b8e034ce94f260077c96cea8> /System/Library/PrivateFrameworks/AppleSRP.framework/AppleSRP
      0x3264f000 - 0x3265bfff AssetsLibraryServices armv7s  <05cf849c0bab37698f93ce58e0cabe0f> /System/Library/PrivateFrameworks/AssetsLibraryServices.framework/AssetsLibraryServices
      0x326a5000 - 0x326a8fff BTLEAudioController armv7s  <f420608b2d7538bb88491b34501a36f6> /System/Library/PrivateFrameworks/BTLEAudioController.framework/BTLEAudioController
      0x326a9000 - 0x326cefff BackBoardServices armv7s  <eef3e744484a386ca351b8feb000eb37> /System/Library/PrivateFrameworks/BackBoardServices.framework/BackBoardServices
      0x326d1000 - 0x326d6fff BluetoothManager armv7s  <9d86b542e884374f9845e9a53139abd7> /System/Library/PrivateFrameworks/BluetoothManager.framework/BluetoothManager
      0x326d7000 - 0x326fbfff Bom armv7s  <af79573fee7d364da59eed3fabe2f645> /System/Library/PrivateFrameworks/Bom.framework/Bom
      0x3279c000 - 0x327a4fff CaptiveNetwork armv7s  <9825d6ad32163fcd8f2f56dbf274de62> /System/Library/PrivateFrameworks/CaptiveNetwork.framework/CaptiveNetwork
      0x327a5000 - 0x32881fff Celestial armv7s  <b8805a7aa0bb34cb9d0a41cf8e7b8875> /System/Library/PrivateFrameworks/Celestial.framework/Celestial
      0x3288e000 - 0x32893fff CertUI armv7s  <68968485501f35c09203bd9e045bbcd0> /System/Library/PrivateFrameworks/CertUI.framework/CertUI
      0x3295f000 - 0x3297ffff ChunkingLibrary armv7s  <a8a788dadd083a78b00f3aed5bdc9215> /System/Library/PrivateFrameworks/ChunkingLibrary.framework/ChunkingLibrary
      0x329d0000 - 0x329dbfff CommonUtilities armv7s  <f477748e4ac03e91b3a2769b59dc0dc0> /System/Library/PrivateFrameworks/CommonUtilities.framework/CommonUtilities
      0x329dc000 - 0x329e0fff CommunicationsFilter armv7s  <87e7685b12ac375aa482a7a31cd28517> /System/Library/PrivateFrameworks/CommunicationsFilter.framework/CommunicationsFilter
      0x32a71000 - 0x32a73fff ConstantClasses armv7s  <aab583ee29ff3ed7a9ad2bddfbc9bcde> /System/Library/PrivateFrameworks/ConstantClasses.framework/ConstantClasses
      0x32ab3000 - 0x32ab5fff CoreAUC armv7s  <77474784f35a35718fa5c6bd358ec659> /System/Library/PrivateFrameworks/CoreAUC.framework/CoreAUC
      0x32d4a000 - 0x32d68fff CoreServicesInternal armv7s  <29b0b6f5421c3753a2c42ef2c1ef4892> /System/Library/PrivateFrameworks/CoreServicesInternal.framework/CoreServicesInternal
      0x32d69000 - 0x32d6afff CoreSurface armv7s  <3445b07c2bca372cbe202fec0a9aa86f> /System/Library/PrivateFrameworks/CoreSurface.framework/CoreSurface
      0x32e11000 - 0x32e6dfff CoreUI armv7s  <3fdd5b6ee0b03774a8a67554e8a3c3ff> /System/Library/PrivateFrameworks/CoreUI.framework/CoreUI
      0x32e6e000 - 0x32ec2fff CoreUtils armv7s  <2cd95e7adf393d0e9656dcaee71b8298> /System/Library/PrivateFrameworks/CoreUtils.framework/CoreUtils
      0x32ec3000 - 0x32ec8fff CrashReporterSupport armv7s  <d3f693f332fe3f46bd3b9f582a3e6ba0> /System/Library/PrivateFrameworks/CrashReporterSupport.framework/CrashReporterSupport
      0x33094000 - 0x330aafff DataAccessExpress armv7s  <d267039af5923039bb15d53806a16edc> /System/Library/PrivateFrameworks/DataAccessExpress.framework/DataAccessExpress
      0x330b4000 - 0x330cafff DataDetectorsCore armv7s  <cf924ead1d493e6ba226987d4028a25c> /System/Library/PrivateFrameworks/DataDetectorsCore.framework/DataDetectorsCore
      0x330cc000 - 0x330e4fff DataDetectorsUI armv7s  <22816c9fbeea3f73ae6a7a1675a8f4d3> /System/Library/PrivateFrameworks/DataDetectorsUI.framework/DataDetectorsUI
      0x330e5000 - 0x330e9fff DataMigration armv7s  <24479dd9d49a354da98e6a0ce861558b> /System/Library/PrivateFrameworks/DataMigration.framework/DataMigration
      0x330f0000 - 0x33109fff DictionaryServices armv7s  <b32f1de0807532e2944c9365d543b542> /System/Library/PrivateFrameworks/DictionaryServices.framework/DictionaryServices
      0x33128000 - 0x33145fff EAP8021X armv7s  <cf7974147c9f35a3b446d4efd21fb925> /System/Library/PrivateFrameworks/EAP8021X.framework/EAP8021X
      0x3314e000 - 0x33159fff ExFAT armv7s  <a50c8c49cc703ad59b3caff9dfe105e9> /System/Library/PrivateFrameworks/ExFAT.framework/ExFAT
      0x33199000 - 0x335b4fff FaceCore armv7s  <72642f324b7639faa8206f00a953a573> /System/Library/PrivateFrameworks/FaceCore.framework/FaceCore
      0x335e7000 - 0x335edfff libGPUSupportMercury.dylib armv7s  <e7ae51b2f7c23fdeaba092794d970c40> /System/Library/PrivateFrameworks/GPUSupport.framework/libGPUSupportMercury.dylib
      0x337d6000 - 0x337e2fff GenerationalStorage armv7s  <516e7f1921473c9f9eb6e96028db121a> /System/Library/PrivateFrameworks/GenerationalStorage.framework/GenerationalStorage
      0x337e3000 - 0x3398ffff GeoServices armv7s  <1d0e1ac52cc636e2a6ff9d130bc9108d> /System/Library/PrivateFrameworks/GeoServices.framework/GeoServices
      0x33990000 - 0x339a6fff GraphicsServices armv7s  <3b6c1bed029a36809c005aded6358ae2> /System/Library/PrivateFrameworks/GraphicsServices.framework/GraphicsServices
      0x33a36000 - 0x33abcfff HomeSharing armv7s  <4b8a7e884dfd3003a14c9bc4428f8db3> /System/Library/PrivateFrameworks/HomeSharing.framework/HomeSharing
      0x33abd000 - 0x33acafff IAP armv7s  <858bb7cc406b3b60b00ffd8d840da9af> /System/Library/PrivateFrameworks/IAP.framework/IAP
      0x33d58000 - 0x33db2fff IMFoundation armv7s  <1fe1f17117fd346e872606e1fbaf958f> /System/Library/PrivateFrameworks/IMFoundation.framework/IMFoundation
      0x33db9000 - 0x33dbbfff IOAccelerator armv7s  <d03cc3d6d8983a41801435bbebcaa3fa> /System/Library/PrivateFrameworks/IOAccelerator.framework/IOAccelerator
      0x33dbc000 - 0x33dc3fff IOMobileFramebuffer armv7s  <3ab45fc088e63f2583325fb2a3d793ac> /System/Library/PrivateFrameworks/IOMobileFramebuffer.framework/IOMobileFramebuffer
      0x33dc4000 - 0x33dc9fff IOSurface armv7s  <231684abf3443db1b2dde09b82f5bdba> /System/Library/PrivateFrameworks/IOSurface.framework/IOSurface
      0x33e1c000 - 0x33e3afff LatentSemanticMapping armv7s  <83777e220a4736548cd57998bb43a039> /System/Library/PrivateFrameworks/LatentSemanticMapping.framework/LatentSemanticMapping
      0x33e3b000 - 0x33e47fff Librarian armv7s  <5a7a4cc07a8832eaabe06e90c51f6c88> /System/Library/PrivateFrameworks/Librarian.framework/Librarian
      0x33f07000 - 0x33f82fff ManagedConfiguration armv7s  <ff4aa3ba73fa3c6295d84a663b7230ec> /System/Library/PrivateFrameworks/ManagedConfiguration.framework/ManagedConfiguration
      0x33f85000 - 0x33ffefff MediaControlSender armv7s  <ecca229a940e30c0b98d635758a10433> /System/Library/PrivateFrameworks/MediaControlSender.framework/MediaControlSender
      0x3403d000 - 0x3404afff MediaRemote armv7s  <9d9e2ea66c0836ab886b38beb1b05532> /System/Library/PrivateFrameworks/MediaRemote.framework/MediaRemote
      0x341af000 - 0x341bbfff MobileAsset armv7s  <40c56824686c35c9bc6a53e48696e8ce> /System/Library/PrivateFrameworks/MobileAsset.framework/MobileAsset
      0x341df000 - 0x341e7fff MobileBluetooth armv7s  <8dd3363b6e2330d9b0eb427f5010b199> /System/Library/PrivateFrameworks/MobileBluetooth.framework/MobileBluetooth
      0x34202000 - 0x34205fff MobileInstallation armv7s  <7e644fec475d31c2bde3c0a9249ea3c6> /System/Library/PrivateFrameworks/MobileInstallation.framework/MobileInstallation
      0x34206000 - 0x34210fff MobileKeyBag armv7s  <e94a6746becd36ef89f18d8f62e3ef80> /System/Library/PrivateFrameworks/MobileKeyBag.framework/MobileKeyBag
      0x34238000 - 0x3423bfff MobileSystemServices armv7s  <1bc1a98c34d5398ca9ff7d2a6cd65243> /System/Library/PrivateFrameworks/MobileSystemServices.framework/MobileSystemServices
      0x3425a000 - 0x34265fff MobileWiFi armv7s  <cf996c9ae1063228918d8b7767679eea> /System/Library/PrivateFrameworks/MobileWiFi.framework/MobileWiFi
      0x342a5000 - 0x34442fff MusicLibrary armv7s  <77151b1d93693c589593874056524de2> /System/Library/PrivateFrameworks/MusicLibrary.framework/MusicLibrary
      0x34501000 - 0x34506fff Netrb armv7s  <11576949484a3405881d436920cf495c> /System/Library/PrivateFrameworks/Netrb.framework/Netrb
      0x34507000 - 0x3450cfff NetworkStatistics armv7s  <04f1b60537e03715934f8cdbb2992fbb> /System/Library/PrivateFrameworks/NetworkStatistics.framework/NetworkStatistics
      0x34532000 - 0x34534fff OAuth armv7s  <e5d7ef5ec520310187365df875a549ec> /System/Library/PrivateFrameworks/OAuth.framework/OAuth
      0x34c8b000 - 0x34cc6fff OpenCL armv7s  <b6fbdfb3287d3fbfb5286db2871e20f1> /System/Library/PrivateFrameworks/OpenCL.framework/OpenCL
      0x3526c000 - 0x35293fff PersistentConnection armv7s  <199be1a72cf136e38f3e97f918225ac3> /System/Library/PrivateFrameworks/PersistentConnection.framework/PersistentConnection
      0x356af000 - 0x356e2fff PhysicsKit armv7s  <eabb43d582b434e7a07113dc75526237> /System/Library/PrivateFrameworks/PhysicsKit.framework/PhysicsKit
      0x356e3000 - 0x356e6fff PowerLog armv7s  <e6467b6007a03c1eadec925dd5fead89> /System/Library/PrivateFrameworks/PowerLog.framework/PowerLog
      0x357d9000 - 0x35810fff PrintKit armv7s  <07cdb8fa73f638878da43cb85ecc6525> /System/Library/PrivateFrameworks/PrintKit.framework/PrintKit
      0x35814000 - 0x3589afff ProofReader armv7s  <c51b02fd95b5374a92d5f442914fd833> /System/Library/PrivateFrameworks/ProofReader.framework/ProofReader
      0x3589b000 - 0x358a5fff ProtocolBuffer armv7s  <e51109e38b5e3229941c644bd3c1fda0> /System/Library/PrivateFrameworks/ProtocolBuffer.framework/ProtocolBuffer
      0x358d7000 - 0x3594bfff Quagga armv7s  <14d6711448dd35da93958349e88c67bb> /System/Library/PrivateFrameworks/Quagga.framework/Quagga
      0x35957000 - 0x359fdfff Radio armv7s  <6a7077e982143923a881ced69247779a> /System/Library/PrivateFrameworks/Radio.framework/Radio
      0x35a8c000 - 0x35b11fff SAObjects armv7s  <b41c35cc73f13f53ae5e4f4cb261fef9> /System/Library/PrivateFrameworks/SAObjects.framework/SAObjects
      0x35c3e000 - 0x35c53fff SpringBoardServices armv7s  <c57673fe5697361292f6d98f0e42b43a> /System/Library/PrivateFrameworks/SpringBoardServices.framework/SpringBoardServices
      0x35e97000 - 0x35fb9fff StoreServices armv7s  <cb1f0a915435356daef1d6224e84d771> /System/Library/PrivateFrameworks/StoreServices.framework/StoreServices
      0x3605b000 - 0x36060fff SymptomReporter armv7s  <56215e6b31e63d1094f39ec282a3cc54> /System/Library/PrivateFrameworks/Symptoms.framework/Frameworks/SymptomReporter.framework/SymptomReporter
      0x36069000 - 0x3606bfff TCC armv7s  <c954ee084fc138cd9e1efd673fcc1db6> /System/Library/PrivateFrameworks/TCC.framework/TCC
      0x360bf000 - 0x360e0fff TelephonyUtilities armv7s  <89a81f2b2d00390f94886d091df8c370> /System/Library/PrivateFrameworks/TelephonyUtilities.framework/TelephonyUtilities
      0x3646b000 - 0x3649efff TextInput armv7s  <aa0e49d7392f391184c9eeb39a4d3bf0> /System/Library/PrivateFrameworks/TextInput.framework/TextInput
      0x36721000 - 0x367e1fff UIFoundation armv7s  <c451f67b37fe34b1837080f77df2c608> /System/Library/PrivateFrameworks/UIFoundation.framework/UIFoundation
      0x367e2000 - 0x367f8fff Ubiquity armv7s  <47e0578c559a360c9a5ee98f0d5721ce> /System/Library/PrivateFrameworks/Ubiquity.framework/Ubiquity
      0x367f9000 - 0x367fcfff UserFS armv7s  <8c69a37146f53c20b27515d9081b585e> /System/Library/PrivateFrameworks/UserFS.framework/UserFS
      0x36c8c000 - 0x36ca0fff WebContentAnalysis armv7s  <579ebf52a3943b668970be8dbe99e237> /System/Library/PrivateFrameworks/WebContentAnalysis.framework/WebContentAnalysis
      0x36ca1000 - 0x37750fff WebCore armv7s  <62a2855ff9ba3663a05c495a1e6083a3> /System/Library/PrivateFrameworks/WebCore.framework/WebCore
      0x37751000 - 0x37811fff WebKit armv7s  <4679be02e7e63e5697b74338046f39c3> /System/Library/PrivateFrameworks/WebKit.framework/WebKit
      0x3795c000 - 0x37964fff XPCObjects armv7s  <bd5f2f198bfc300886e389b6504c3d24> /System/Library/PrivateFrameworks/XPCObjects.framework/XPCObjects
      0x37b44000 - 0x37b7efff iTunesStore armv7s  <34b61e455fe637dba017d5af16afd234> /System/Library/PrivateFrameworks/iTunesStore.framework/iTunesStore
      0x38790000 - 0x38797fff libAccessibility.dylib armv7s  <6783339bc8c0357a88c9f342125cfd4f> /usr/lib/libAccessibility.dylib
      0x38994000 - 0x389aafff libCRFSuite.dylib armv7s  <1b03911a248832d5b24075ac2a3edfe3> /usr/lib/libCRFSuite.dylib
      0x389c0000 - 0x389d5fff libMobileGestalt.dylib armv7s  <47eca5e4f72f38459912efd50f7560a9> /usr/lib/libMobileGestalt.dylib
      0x389f3000 - 0x389f4fff libSystem.B.dylib armv7s  <eabeb73e81a8362d8e62af1bd466b876> /usr/lib/libSystem.B.dylib
      0x38a63000 - 0x38a91fff libTelephonyUtilDynamic.dylib armv7s  <a0a1a8c4002a3b3095de44ab6ef68876> /usr/lib/libTelephonyUtilDynamic.dylib
      0x38be0000 - 0x38becfff libbsm.0.dylib armv7s  <fc1cbfcbdd563d02a601aabed2bd7d15> /usr/lib/libbsm.0.dylib
      0x38bed000 - 0x38bf6fff libbz2.1.0.dylib armv7s  <20bf7a7ab7e73d4c8453b1c86a7c5e3d> /usr/lib/libbz2.1.0.dylib
      0x38bf7000 - 0x38c42fff libc++.1.dylib armv7s  <72615c78ae5f39dcbafa740d87035caf> /usr/lib/libc++.1.dylib
      0x38c43000 - 0x38c5dfff libc++abi.dylib armv7s  <b20ecbadceba32fe8f990af252b6abba> /usr/lib/libc++abi.dylib
      0x38c6d000 - 0x38c74fff libcupolicy.dylib armv7s  <239f9438dced35b5957016d6354a6001> /usr/lib/libcupolicy.dylib
      0x38cbb000 - 0x38da8fff libiconv.2.dylib armv7s  <cd99d67497e23173bfaf7eac2409774a> /usr/lib/libiconv.2.dylib
      0x38da9000 - 0x38efafff libicucore.A.dylib armv7s  <9e6bead09e6e3f6284775099f2af03e2> /usr/lib/libicucore.A.dylib
      0x38f02000 - 0x38f02fff liblangid.dylib armv7s  <3cca7b6ef834379b82d4a032f99cdfc8> /usr/lib/liblangid.dylib
      0x38f03000 - 0x38f0dfff liblockdown.dylib armv7s  <de62a6a0b6ef33b59d9c53d4eaeb4013> /usr/lib/liblockdown.dylib
      0x3924f000 - 0x39263fff libmis.dylib armv7s  <7da8703c8950371ca3bad4d8c34bd892> /usr/lib/libmis.dylib
      0x3928c000 - 0x3942bfff libobjc.A.dylib armv7s  <bf3e22d3067133989a99a9bf07c4e8f8> /usr/lib/libobjc.A.dylib
      0x394f3000 - 0x39508fff libresolv.9.dylib armv7s  <880b294be76f3f9989247ca125ad3550> /usr/lib/libresolv.9.dylib
      0x39531000 - 0x395c8fff libsqlite3.dylib armv7s  <584eaf4090783a64b8a33125a6a976bd> /usr/lib/libsqlite3.dylib
      0x395c9000 - 0x39616fff libstdc++.6.dylib armv7s  <6428df9b541c3ffbb23c393b3b1280e9> /usr/lib/libstdc++.6.dylib
      0x39617000 - 0x3963dfff libtidy.A.dylib armv7s  <40c283e2258a330d9ff9799da0a1d2bb> /usr/lib/libtidy.A.dylib
      0x39641000 - 0x396f4fff libxml2.2.dylib armv7s  <1a18ebeae7253959b9cfe286550809a8> /usr/lib/libxml2.2.dylib
      0x396f5000 - 0x39716fff libxslt.1.dylib armv7s  <cf7ad714d218330087df8422a129e027> /usr/lib/libxslt.1.dylib
      0x39717000 - 0x39723fff libz.1.dylib armv7s  <578def3dfb6e3180b5f9d0cdacfea7ab> /usr/lib/libz.1.dylib
      0x39724000 - 0x39728fff libcache.dylib armv7s  <5552b722402630c39069717fce563238> /usr/lib/system/libcache.dylib
      0x39729000 - 0x39731fff libcommonCrypto.dylib armv7s  <a6695b43e12f338c9dc0906d8bfed65e> /usr/lib/system/libcommonCrypto.dylib
      0x39732000 - 0x39736fff libcompiler_rt.dylib armv7s  <cfdcad14d51d30a9a511af272ba560ac> /usr/lib/system/libcompiler_rt.dylib
      0x39737000 - 0x3973dfff libcopyfile.dylib armv7s  <553c4af79d1e30bdafc06af9cf757caf> /usr/lib/system/libcopyfile.dylib
      0x3973e000 - 0x39777fff libcorecrypto.dylib armv7s  <3078b6192ac6371eb233dfa9b483728b> /usr/lib/system/libcorecrypto.dylib
      0x39778000 - 0x3978bfff libdispatch.dylib armv7s  <724a779782af35d5b686b90ae55712be> /usr/lib/system/libdispatch.dylib
      0x3978c000 - 0x3978dfff libdyld.dylib armv7s  <1e6f4480b0cc3b288ca16260858dd0be> /usr/lib/system/libdyld.dylib
      0x3978e000 - 0x3978efff libkeymgr.dylib armv7s  <cd6879d7aab538188885a690d4867364> /usr/lib/system/libkeymgr.dylib
      0x3978f000 - 0x39795fff liblaunch.dylib armv7s  <e2ecc7065f99385486a316b484915504> /usr/lib/system/liblaunch.dylib
      0x39796000 - 0x39799fff libmacho.dylib armv7s  <af571f784f753dc883752ab57de8d850> /usr/lib/system/libmacho.dylib
      0x3979a000 - 0x3979bfff libremovefile.dylib armv7s  <470ebd7c55de3e19b1ba2f540fb555b8> /usr/lib/system/libremovefile.dylib
      0x3979c000 - 0x397a9fff libsystem_asl.dylib armv7s  <667d4520d8863f96930caf3caed29585> /usr/lib/system/libsystem_asl.dylib
      0x397aa000 - 0x397aafff libsystem_blocks.dylib armv7s  <7df185e5c3423b2b827bbb017ae0d23a> /usr/lib/system/libsystem_blocks.dylib
      0x397ab000 - 0x3980dfff libsystem_c.dylib armv7s  <b1076755d7863093b9b541dade51b7a4> /usr/lib/system/libsystem_c.dylib
      0x3980e000 - 0x39810fff libsystem_configuration.dylib armv7s  <6077b6a8819033b1a5da6eeb65667ac5> /usr/lib/system/libsystem_configuration.dylib
      0x39811000 - 0x39817fff libsystem_dnssd.dylib armv7s  <61754fc466d73885939c421a54b10ad7> /usr/lib/system/libsystem_dnssd.dylib
      0x39818000 - 0x39830fff libsystem_info.dylib armv7s  <dc3f914b8fad3e599e661aae25a82944> /usr/lib/system/libsystem_info.dylib
      0x39831000 - 0x39849fff libsystem_kernel.dylib armv7s  <5f80574971783517b904e68e867db35a> /usr/lib/system/libsystem_kernel.dylib
      0x3984a000 - 0x39868fff libsystem_m.dylib armv7s  <071ecf3760083b3bafcfa3d7a2cb03e0> /usr/lib/system/libsystem_m.dylib
      0x39869000 - 0x3987afff libsystem_malloc.dylib armv7s  <c9bd1c9bb83f334583f177b6f4f60d04> /usr/lib/system/libsystem_malloc.dylib
      0x3987b000 - 0x3989bfff libsystem_network.dylib armv7s  <e74b7953f36834f8ae85db60af9e03f8> /usr/lib/system/libsystem_network.dylib
      0x3989c000 - 0x398a3fff libsystem_notify.dylib armv7s  <3e3abecaad193941a8ff25146c014ccb> /usr/lib/system/libsystem_notify.dylib
      0x398a4000 - 0x398a8fff libsystem_platform.dylib armv7s  <2b5893167164377d8bf61d6bac6d76b0> /usr/lib/system/libsystem_platform.dylib
      0x398a9000 - 0x398aefff libsystem_pthread.dylib armv7s  <eaf423e9b7c532208a7b2f544c7cd2fe> /usr/lib/system/libsystem_pthread.dylib
      0x398af000 - 0x398b0fff libsystem_sandbox.dylib armv7s  <bae12b6c89593266b826e4c04decd867> /usr/lib/system/libsystem_sandbox.dylib
      0x398b1000 - 0x398b3fff libsystem_stats.dylib armv7s  <b42bfc3e6cc932358e7d75aa993c662f> /usr/lib/system/libsystem_stats.dylib
      0x398b4000 - 0x398b4fff libunwind.dylib armv7s  <4b9e9973ab72392485a03ed5821f40a4> /usr/lib/system/libunwind.dylib
      0x398b5000 - 0x398cffff libxpc.dylib armv7s  <9b5096abbc8c3fd79550880a8ba59d62> /usr/lib/system/libxpc.dylib
      

      Attachments

        Issue Links

          No reviews matched the request. Check your Options in the drop-down menu of this sections header.

          Activity

            People

              stromme Christian
              firatagdas Firat Agdas
              Votes:
              0 Vote for this issue
              Watchers:
              3 Start watching this issue

              Dates

                Created:
                Updated:
                Resolved:

                Gerrit Reviews

                  There are no open Gerrit changes