All_tab_columns says NULLABLE = 'Y' while there is a NOT NULL constraint

Hi all,
I created a table MANT (here is the script) :
CREATE TABLE DMI.MANT
  MANT     NUMBER(7)                            NOT NULL,
  SPER     NUMBER(7)                            NOT NULL,
  RANT     VARCHAR2(10 BYTE)                    NOT NULL,
  ANT      VARCHAR2(200 BYTE),
  CMT      VARCHAR2(800 BYTE),
  PERIODE  VARCHAR2(200 BYTE),
  DU       DATE,
  USR      VARCHAR2(10 BYTE),
  DTE      DATE
)Then I added a column called RSMF :
ALTER TABLE DMI.MANT
ADD (RSMF VARCHAR2(100 BYTE));and added a check constraint :
ALTER TABLE DMI.MANT ADD
CONSTRAINT RSMF_NOT_NULL
CHECK (RSMF IS NOT NULL)
ENABLE
NOVALIDATEI had to add NOVALIDATE clause because all the records had a null value. So to validate the constraint I simply executed the following update
update dmi.mant set rsmf = 'yy';and then validate the contraint with :
ALTER TABLE DMI.MANT
MODIFY CONSTRAINT RSMF_NOT_NULL
VALIDATE;The problem comes when I query ALL_TAB_COLUMNS table...
Select OWNER,TABLE_NAME,COLUMN_NAME,DATA_TYPE,DATA_LENGTH,NULLABLE
from all_tab_columns
where table_name = 'MANT'
   and owner = 'DMI'
   and COLUMN_NAME = 'RSMF';Why does the ALL_TAB_COLUMNS table gives for RSMF column a NULLABLE value equals to 'Y' while there is a validated check NOT NULL constraint on it ?
It's annoying because I want to get all the NOT NULL columns in a given table and here the SRMF column is not returned...
Here is the result :
OWNER  |TABLE_NAME |COLUMN_NAME  |DATA_TYPE  |DATA_LENGTH  |NULLABLE
DMI    |MANT       |RSMF         |VARCHAR2   |100          |YThks for your replies...

NULLABLE would be true if you created the table like this:
create table x (a not null)
but not if you add a check constraint after the fact.

Similar Messages

  • NULLABLE column is not updated after the NOT NULL constraint definition...

    Hi,
    SQL> select column_name,nullable from all_tab_columns where table_name='EMP';
    COLUMN_NAME                    NULLABLE
    EMPNO                          N
    ENAME                          Y
    JOB                            Y
    MGR                            Y
    HIREDATE                       Y
    SAL                            Y
    COMM                           Y
    DEPTNO                         Y
    CODE_POLEIS_DIAM               Y
    9 rows selected
    SQL> ALTER TABLE EMP add constraint emp_job_nn check(job is not null);
    Table altered
    SQL> select constraint_name from all_cons_columns
      2  where table_name='EMP';
    CONSTRAINT_NAME
    FK_DEPTNO
    PK_EMP
    EMP_JOB_NN
    SQL> select column_name,nullable from all_tab_columns where table_name='EMP';
    COLUMN_NAME                    NULLABLE
    EMPNO                          N
    ENAME                          Y
    JOB                            Y                         <---------'NULL'
    MGR                            Y
    HIREDATE                       Y
    SAL                            Y
    COMM                           Y
    DEPTNO                         Y
    CODE_POLEIS_DIAM               Y
    9 rows selected
    Why is not updated....????
    In Oracle ebook:
    Oracle® Database Reference
    10g Release 2 (10.2)
    Part Number B14237-02
    the comments about the NULLBLE column are as follows:
    "Specifies whether a column allows NULLs. Value is N if there is a NOT NULL constraint on the column or if the column is part of a PRIMARY KEY. The constraint should be in an ENABLE VALIDATE state."
    BUT BY DEFAULT ALL CONSTRAINTS ARE IN VALIDATE STATE
    (Ref: Oracle® Database SQL Reference
    10g Release 2 (10.2)
    Part Number B14200-02 )Note : I use OraDB 10g v.2
    Thanks a lot
    Sim

    Hi,
    Tom Kytes answer it before:
    SQL> create table t ( id int );
    Table created.
    SQL> desc t
    Name                            Null?    Type
    ID                                       NUMBER(38)
    SQL> alter table t add constraint t_nn check (id is not null);
    Table altered.
    SQL> insert into t (id) values (null);
    insert into t (id) values (null)
    ERROR at line 1:
    ORA-02290: check constraint (TANDREWS.T_NN) violated
    SQL> desc t
    Name                            Null?    Type
    ID                                       NUMBER(38)
    Followup July 16, 2003 - 10am US/Eastern:
    that is not a NOT NULL constraint, that is a check constraint
    ops$tkyte@ORA920LAP> create table t ( x int );
    Table created.
    ops$tkyte@ORA920LAP> alter table t modify x not null;
    Table altered.
    ops$tkyte@ORA920LAP> set linesize 50
    ops$tkyte@ORA920LAP> desc t
    Name                    Null?    Type
    X                       NOT NULL NUMBER(38)To see the full thread in asktom, please refer to:
    - http://asktom.oracle.com/pls/asktom/f?p=100:11:0::::P11_QUESTION_ID:1338402651192
    Cheers,
    Francisco Munoz Alvarez
    http://www.oraclenz.com

  • Can't access adobe from my smart phone to use my form created in formscentral I receive an error message that says "unsupported browser". There is a link to download a supported browser but the link directs me to another page that says "browser no

    When I try to access adobe from my smart phone to use my form created in formscentral I receive an error message that says "unsupported browser". There is a link to download a supported browser but the link directs me to another page that says "browser not supported at this time". This happened to me while using my IPhone 5, a friend that uses an IPhone 6, and another friend that uses a Samsung Galaxy S5. I just need for my employees to be able to access, complete and submit work orders created in formscentral from their phones. I would like to use the data collection feature in formscentral but at this point any suggestions on how to accomplish this are welcomed. Thank you

    Further info - I changed my security settings to allow apps from anywhere, and again tried to install.  I again got an error message
    that the update failed to install, and to contact Customer Support.

  • I did the IOS update and now now have no music. it is saying my music is there on Itunes put have nothing on my phone?

    i did the ios udate and now have no music on my phone. it is saying my music is there on itunes but nothing when I go into it on my phone? Have checked that the sync all music box is ticked? any ideas?

    If you JUST updated, you may need to leave the phone connected and give it time as it is still syncing even though you are able to use your phone. That is part of the new OS, the ability to use your phone while it is processing in the background. If that's not the issue, try what the previous reply suggested. That's what worked for me when my music appeared to be in my iPod, but would not play.

  • My ipod got stolen and icloud says its offline is there another of tracking it?

    hi so my ipod was stolen from my sports bag while i went to practice. i have tried to locate it on icloud but it just keeps saying its offline is there any way to getting my ipod back? is there a way of location it even if it is offline and off wifi? thank you

    If it is showing offline, then you cannot find it.
    Sorry

  • How do I get my Finder back to normal when it says "unexpectedly quit while trying to restore its windows" ?

    how do I get my Finder back to normal when it says "unexpectedly quit while trying to restore its windows" ?

    ...there is a new crash report coming in every few minutes...
    here you go:
    Process:         Finder [1662]
    Path:            /System/Library/CoreServices/Finder.app/Contents/MacOS/Finder
    Identifier:      com.apple.finder
    Version:         10.7.1 (10.7.1)
    Build Info:      Finder_FE-751001009000000~3
    Code Type:       X86-64 (Native)
    Parent Process:  launchd [235]
    Date/Time:       2012-01-02 18:23:16.869 +0100
    OS Version:      Mac OS X 10.7.2 (11C74)
    Report Version:  9
    Crashed Thread:  0  Dispatch queue: com.apple.main-thread
    Exception Type:  EXC_BAD_ACCESS (SIGSEGV)
    Exception Codes: KERN_INVALID_ADDRESS at 0x0000000000000000
    VM Regions Near 0:
    -->
        __TEXT                  [ 5136K] r-x/rwx SM=COW  /System/Library/CoreServices/Finder.app/Contents/MacOS/Finder
    Application Specific Information:
    objc[1662]: garbage collection is OFF
    Thread 0 Crashed:: Dispatch queue: com.apple.main-thread
    0   com.apple.DesktopServices               0x00007fff93662170 BTreeIterator::PushForward(Page*) + 30
    1   com.apple.DesktopServices               0x00007fff9366212b BTreeIterator::BuildStack(IAOrderedStorable const*) + 81
    2   com.apple.DesktopServices               0x00007fff936620af BTreeIterator::BTreeIterator(BTree*) + 31
    3   com.apple.DesktopServices               0x00007fff93662070 BTree::MakeIterator() + 34
    4   com.apple.DesktopServices               0x00007fff93660146 TPropertyInfo::MakeProperties(TPropertyInfoList*, unsigned char*, unsigned int, bool) + 216
    5   com.apple.DesktopServices               0x00007fff936eb244 TPropertyInfo::CreatePropertyList(TCountedPtr<TFSInfo> const&, double&, long long&, bool, bool, TPropertyInfoList*) + 422
    6   com.apple.DesktopServices               0x00007fff936eb04a TPropertyInfo::CreatePropertyList(TCountedPtr<TCFURLInfo> const&, double&, long long&, bool, bool, TPropertyInfoList*) + 154
    7   com.apple.DesktopServices               0x00007fff9365ff7e THFSPlusPropertyStore::Open(bool, bool) const + 130
    8   com.apple.DesktopServices               0x00007fff9365fede THFSPlusPropertyStore::GetProperties(bool) const + 38
    9   com.apple.DesktopServices               0x00007fff9365f7d4 TNode::GetExtendedPropertyStore(bool) const + 208
    10  com.apple.DesktopServices               0x00007fff9365f647 TNode::GetExtendedProperty(unsigned int, TPropertyReference&, bool) const + 39
    11  com.apple.DesktopServices               0x00007fff9365e306 TNode::GetProperty(unsigned int, TPropertyReference&, unsigned int) const + 578
    12  com.apple.DesktopServices               0x00007fff9365de56 TNode::GetProperty(unsigned int, TPropertyReference&, OpaqueNodeRequest* const&, unsigned int) const + 68
    13  com.apple.DesktopServices               0x00007fff9365ddb7 GetNodeProperty(OpaqueNodeRef*, unsigned int, TPropertyReference&, OpaqueNodeRequest*, unsigned int) + 162
    14  com.apple.DesktopServices               0x00007fff93666d3c NodeGetPropertyAsData + 61
    15  com.apple.finder                        0x000000010913753c 0x1090ff000 + 230716
    16  com.apple.finder                        0x000000010920d09e 0x1090ff000 + 1106078
    17  com.apple.finder                        0x000000010920cd02 0x1090ff000 + 1105154
    18  com.apple.finder                        0x00000001091527d9 0x1090ff000 + 341977
    19  com.apple.finder                        0x00000001091447d9 0x1090ff000 + 284633
    20  com.apple.finder                        0x0000000109151e7b 0x1090ff000 + 339579
    21  com.apple.finder                        0x0000000109151c1e 0x1090ff000 + 338974
    22  com.apple.finder                        0x0000000109151a65 0x1090ff000 + 338533
    23  com.apple.finder                        0x0000000109151874 0x1090ff000 + 338036
    24  com.apple.finder                        0x0000000109151741 0x1090ff000 + 337729
    25  com.apple.finder                        0x0000000109151538 0x1090ff000 + 337208
    26  com.apple.finder                        0x0000000109151358 0x1090ff000 + 336728
    27  com.apple.finder                        0x000000010912d316 0x1090ff000 + 189206
    28  com.apple.finder                        0x000000010912d2da 0x1090ff000 + 189146
    29  libdispatch.dylib                       0x00007fff911d68ba _dispatch_call_block_and_release + 18
    30  libdispatch.dylib                       0x00007fff911d872a _dispatch_main_queue_callback_4CF + 308
    31  com.apple.CoreFoundation                0x00007fff8a83d4dc __CFRunLoopRun + 1724
    32  com.apple.CoreFoundation                0x00007fff8a83cae6 CFRunLoopRunSpecific + 230
    33  com.apple.HIToolbox                     0x00007fff904143d3 RunCurrentEventLoopInMode + 277
    34  com.apple.HIToolbox                     0x00007fff9041b63d ReceiveNextEventCommon + 355
    35  com.apple.HIToolbox                     0x00007fff9041b4ca BlockUntilNextEventMatchingListInMode + 62
    36  com.apple.AppKit                        0x00007fff911ed3f1 _DPSNextEvent + 659
    37  com.apple.AppKit                        0x00007fff911eccf5 -[NSApplication nextEventMatchingMask:untilDate:inMode:dequeue:] + 135
    38  com.apple.AppKit                        0x00007fff911e962d -[NSApplication run] + 470
    39  com.apple.AppKit                        0x00007fff9146880c NSApplicationMain + 867
    40  com.apple.finder                        0x000000010910499b 0x1090ff000 + 22939
    41  com.apple.finder                        0x0000000109104960 0x1090ff000 + 22880
    Thread 1:: Dispatch queue: com.apple.libdispatch-manager
    0   libsystem_kernel.dylib                  0x00007fff8982f7e6 kevent + 10
    1   libdispatch.dylib                       0x00007fff911d85be _dispatch_mgr_invoke + 923
    2   libdispatch.dylib                       0x00007fff911d714e _dispatch_mgr_thread + 54
    Thread 2:
    0   libsystem_kernel.dylib                  0x00007fff8982f192 __workq_kernreturn + 10
    1   libsystem_c.dylib                       0x00007fff9030d594 _pthread_wqthread + 758
    2   libsystem_c.dylib                       0x00007fff9030eb85 start_wqthread + 13
    Thread 3:
    0   libsystem_kernel.dylib                  0x00007fff8982f192 __workq_kernreturn + 10
    1   libsystem_c.dylib                       0x00007fff9030d594 _pthread_wqthread + 758
    2   libsystem_c.dylib                       0x00007fff9030eb85 start_wqthread + 13
    Thread 4:
    0   libsystem_kernel.dylib                  0x00007fff8982f192 __workq_kernreturn + 10
    1   libsystem_c.dylib                       0x00007fff9030d594 _pthread_wqthread + 758
    2   libsystem_c.dylib                       0x00007fff9030eb85 start_wqthread + 13
    Thread 5:
    0   libsystem_kernel.dylib                  0x00007fff8982f192 __workq_kernreturn + 10
    1   libsystem_c.dylib                       0x00007fff9030d594 _pthread_wqthread + 758
    2   libsystem_c.dylib                       0x00007fff9030eb85 start_wqthread + 13
    Thread 6:
    0   libsystem_kernel.dylib                  0x00007fff8982f192 __workq_kernreturn + 10
    1   libsystem_c.dylib                       0x00007fff9030d594 _pthread_wqthread + 758
    2   libsystem_c.dylib                       0x00007fff9030eb85 start_wqthread + 13
    Thread 7:
    0   libsystem_kernel.dylib                  0x00007fff8982f192 __workq_kernreturn + 10
    1   libsystem_c.dylib                       0x00007fff9030d594 _pthread_wqthread + 758
    2   libsystem_c.dylib                       0x00007fff9030eb85 start_wqthread + 13
    Thread 8:
    Thread 9:: com.apple.CFSocket.private
    0   libsystem_kernel.dylib                  0x00007fff8982edf2 __select + 10
    1   com.apple.CoreFoundation                0x00007fff8a885f9b __CFSocketManager + 1355
    2   libsystem_c.dylib                       0x00007fff9030b8bf _pthread_start + 335
    3   libsystem_c.dylib                       0x00007fff9030eb75 thread_start + 13
    Thread 0 crashed with X86 Thread State (64-bit):
      rax: 0x00007fab8a859850  rbx: 0x00007fab8a859820  rcx: 0x0000000000000000  rdx: 0x0000000000000000
      rdi: 0x0000000109700000  rsi: 0x0000000000000000  rbp: 0x00007fff68cfcc30  rsp: 0x00007fff68cfcc10
       r8: 0x0000000000000007   r9: 0x0000000000000598  r10: 0x0000000000000000  r11: 0x00007fab8a859850
      r12: 0x0000000000000000  r13: 0x0000000000009c04  r14: 0x00007fff7a58bc30  r15: 0x00007fab8a8595d0
      rip: 0x00007fff93662170  rfl: 0x0000000000010297  cr2: 0x0000000000000000
    Logical CPU: 1
    Binary Images:
           0x1090ff000 -        0x109602fff  com.apple.finder (10.7.1 - 10.7.1) <548C24A0-975C-3167-88AA-036CEFBE3F9D> /System/Library/CoreServices/Finder.app/Contents/MacOS/Finder
           0x10af66000 -        0x10af7bfff  com.apple.frameworks.preferencepanessupport (1.0 - 1.0) <B7E1A6D7-5C75-3626-ACD9-682B6CBC3EBF> /System/Library/PrivateFrameworks/PreferencePanesSupport.framework/Versions/A/P referencePanesSupport
        0x7fff68cff000 -     0x7fff68d33ac7  dyld (195.5 - ???) <B372EB7D-DCD8-30CE-9342-E06CADD7CACA> /usr/lib/dyld
        0x7fff88e83000 -     0x7fff88f25ff7  com.apple.securityfoundation (5.0 - 55005) <2814D17E-E6BB-30A2-A62E-2D481AF514F2> /System/Library/Frameworks/SecurityFoundation.framework/Versions/A/SecurityFoun dation
        0x7fff88f26000 -     0x7fff88f34ff7  com.apple.AppleFSCompression (37 - 1.0) <B6B7A560-DD9E-3601-8ACE-42C1FA738843> /System/Library/PrivateFrameworks/AppleFSCompression.framework/Versions/A/Apple FSCompression
        0x7fff88f35000 -     0x7fff88f35fff  com.apple.vecLib (3.7 - vecLib 3.7) <9A58105C-B36E-35B5-812C-4ED693F2618F> /System/Library/Frameworks/vecLib.framework/Versions/A/vecLib
        0x7fff88fcc000 -     0x7fff88fd1ff7  libsystem_network.dylib (??? - ???) <5DE7024E-1D2D-34A2-80F4-08326331A75B> /usr/lib/system/libsystem_network.dylib
        0x7fff88fd2000 -     0x7fff88fddff7  com.apple.DisplayServicesFW (2.5.2 - 317) <48964503-D7F0-3567-9594-E6AA9C9300EF> /System/Library/PrivateFrameworks/DisplayServices.framework/Versions/A/DisplayS ervices
        0x7fff88fde000 -     0x7fff88ff4fff  libGL.dylib (??? - ???) <6A473BF9-4D35-34C6-9F8B-86B68091A9AF> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib
        0x7fff88ff5000 -     0x7fff89049ff7  com.apple.ScalableUserInterface (1.0 - 1) <33563775-C662-313D-B7FA-3D575A9F3D41> /System/Library/Frameworks/QuartzCore.framework/Versions/A/Frameworks/ScalableU serInterface.framework/Versions/A/ScalableUserInterface
        0x7fff8904a000 -     0x7fff890bdfff  libstdc++.6.dylib (52.0.0 - compatibility 7.0.0) <6BDD43E4-A4B1-379E-9ED5-8C713653DFF2> /usr/lib/libstdc++.6.dylib
        0x7fff890be000 -     0x7fff890d5fff  com.apple.MultitouchSupport.framework (220.62.1 - 220.62.1) <F21C79C0-4B5A-3645-81A6-74F8EFA900CE> /System/Library/PrivateFrameworks/MultitouchSupport.framework/Versions/A/Multit ouchSupport
        0x7fff8956a000 -     0x7fff89593fff  libJPEG.dylib (??? - ???) <64D079F9-256A-323B-A837-84628B172F21> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libJPEG.dylib
        0x7fff89594000 -     0x7fff895cffff  com.apple.LDAPFramework (3.1 - 120.2) <5633BDE9-BDCB-35CC-BC6B-B8E4CD011D51> /System/Library/Frameworks/LDAP.framework/Versions/A/LDAP
        0x7fff89698000 -     0x7fff8969afff  com.apple.TrustEvaluationAgent (2.0 - 1) <1F31CAFF-C1C6-33D3-94E9-11B721761DDF> /System/Library/PrivateFrameworks/TrustEvaluationAgent.framework/Versions/A/Tru stEvaluationAgent
        0x7fff8969b000 -     0x7fff8973ffff  com.apple.ink.framework (1.3.2 - 110) <C8840EA4-AE7B-360C-A191-D36B5F10B6B5> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Ink.framework /Versions/A/Ink
        0x7fff89740000 -     0x7fff89787ff7  com.apple.CoreMedia (1.0 - 705.42) <AA2E9D78-A08C-39E2-B423-D69A75C2397D> /System/Library/Frameworks/CoreMedia.framework/Versions/A/CoreMedia
        0x7fff89818000 -     0x7fff89838fff  libsystem_kernel.dylib (1699.24.8 - compatibility 1.0.0) <C56819BB-3779-3726-B610-4CF7B3ABB6F9> /usr/lib/system/libsystem_kernel.dylib
        0x7fff8987a000 -     0x7fff898ffff7  com.apple.Heimdal (2.1 - 2.0) <C92E327E-CB5F-3C9B-92B0-F1680095C8A3> /System/Library/PrivateFrameworks/Heimdal.framework/Versions/A/Heimdal
        0x7fff89900000 -     0x7fff89d94fff  com.apple.RawCamera.bundle (3.9.0 - 584) <CB295E3D-6E52-4E53-D553-A7C5FF960C01> /System/Library/CoreServices/RawCamera.bundle/Contents/MacOS/RawCamera
        0x7fff89d95000 -     0x7fff89da8ff7  libCRFSuite.dylib (??? - ???) <0B76941F-218E-30C8-B6DE-E15919F8DBEB> /usr/lib/libCRFSuite.dylib
        0x7fff89db5000 -     0x7fff8a028fff  com.apple.CoreImage (7.82 - 1.0.1) <282801B6-5D80-3E2C-88A4-00FE29906D5A> /System/Library/Frameworks/QuartzCore.framework/Versions/A/Frameworks/CoreImage .framework/Versions/A/CoreImage
        0x7fff8a029000 -     0x7fff8a056fe7  libSystem.B.dylib (159.1.0 - compatibility 1.0.0) <095FDD3C-3961-3865-A59B-A5B0A4B8B923> /usr/lib/libSystem.B.dylib
        0x7fff8a078000 -     0x7fff8a0fcff7  com.apple.ApplicationServices.ATS (317.5.0 - ???) <FE629F2D-6BC0-3A58-9844-D8B9A6808A00> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/ATS
        0x7fff8a0fd000 -     0x7fff8a102fff  libcache.dylib (47.0.0 - compatibility 1.0.0) <1571C3AB-BCB2-38CD-B3B2-C5FC3F927C6A> /usr/lib/system/libcache.dylib
        0x7fff8a133000 -     0x7fff8a15eff7  libxslt.1.dylib (3.24.0 - compatibility 3.0.0) <4DB5ED11-004B-36B5-AE5F-2AB714754241> /usr/lib/libxslt.1.dylib
        0x7fff8a163000 -     0x7fff8a167ff7  com.apple.CommonPanels (1.2.5 - 94) <37C6540B-F8D1-355A-806C-F93D8FB522AB> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CommonPanels. framework/Versions/A/CommonPanels
        0x7fff8a21a000 -     0x7fff8a21ffff  libcompiler_rt.dylib (6.0.0 - compatibility 1.0.0) <98ECD5F6-E85C-32A5-98CD-8911230CB66A> /usr/lib/system/libcompiler_rt.dylib
        0x7fff8a220000 -     0x7fff8a325ff7  libFontParser.dylib (??? - ???) <B9A53808-C97E-3293-9C33-1EA9D4E83EC8> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/libFontParser.dylib
        0x7fff8a469000 -     0x7fff8a4e4ff7  com.apple.print.framework.PrintCore (7.1 - 366.1) <3F140DEB-9F87-3672-97CC-F983752581AC> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ PrintCore.framework/Versions/A/PrintCore
        0x7fff8a4e5000 -     0x7fff8a66fff7  com.apple.QTKit (7.7.1 - 2306) <A97042BD-4FD8-3556-9279-6B7742C98904> /System/Library/Frameworks/QTKit.framework/Versions/A/QTKit
        0x7fff8a804000 -     0x7fff8a9d8fff  com.apple.CoreFoundation (6.7.1 - 635.15) <FE4A86C2-3599-3CF8-AD1A-822F1FEA820F> /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
        0x7fff8aba6000 -     0x7fff8abb1ff7  libc++abi.dylib (14.0.0 - compatibility 1.0.0) <8FF3D766-D678-36F6-84AC-423C878E6D14> /usr/lib/libc++abi.dylib
        0x7fff8abb2000 -     0x7fff8abbafff  libsystem_dnssd.dylib (??? - ???) <998E3778-7B43-301C-9053-12045AB8544D> /usr/lib/system/libsystem_dnssd.dylib
        0x7fff8abbb000 -     0x7fff8abbbfff  com.apple.Cocoa (6.6 - ???) <7EC4D759-B2A6-3A99-AC75-809FED1500C6> /System/Library/Frameworks/Cocoa.framework/Versions/A/Cocoa
        0x7fff8ac1e000 -     0x7fff8ac57fe7  libssl.0.9.8.dylib (44.0.0 - compatibility 0.9.8) <79AAEC98-1258-3DA4-B1C0-4120049D390B> /usr/lib/libssl.0.9.8.dylib
        0x7fff8ac58000 -     0x7fff8ac72fff  com.apple.CoreMediaAuthoring (2.0 - 889) <B99C23FB-EE6C-3B2A-8BF1-3995B94CE7D3> /System/Library/PrivateFrameworks/CoreMediaAuthoring.framework/Versions/A/CoreM ediaAuthoring
        0x7fff8ade4000 -     0x7fff8ae01ff7  libxpc.dylib (77.17.0 - compatibility 1.0.0) <72A16104-2F23-3C22-B474-1953F06F9376> /usr/lib/system/libxpc.dylib
        0x7fff8ae02000 -     0x7fff8ae42ff7  libcups.2.dylib (2.9.0 - compatibility 2.0.0) <B7173CA4-CE16-3BAB-8D83-185FCEFA15F5> /usr/lib/libcups.2.dylib
        0x7fff8b51f000 -     0x7fff8b53cfff  libPng.dylib (??? - ???) <3C70A94C-9442-3E11-AF51-C1B0EF81680E> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libPng.dylib
        0x7fff8b53d000 -     0x7fff8b540fff  libCoreVMClient.dylib (??? - ???) <E034C772-4263-3F48-B083-25A758DD6228> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCoreVMClien t.dylib
        0x7fff8b54c000 -     0x7fff8b54dfff  com.apple.ServerInformation (1.0 - 1) <D95BC225-E33B-32BC-9FEE-77423F8D7EBC> /System/Library/PrivateFrameworks/ServerInformation.framework/Versions/A/Server Information
        0x7fff8b54e000 -     0x7fff8b58dff7  libGLImage.dylib (??? - ???) <2D1D8488-EC5F-3229-B983-CFDE0BB37586> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLImage.dyl ib
        0x7fff8b58e000 -     0x7fff8b5dcfff  libauto.dylib (??? - ???) <D8AC8458-DDD0-3939-8B96-B6CED81613EF> /usr/lib/libauto.dylib
        0x7fff8b651000 -     0x7fff8b657fff  com.apple.DiskArbitration (2.4.1 - 2.4.1) <CEA34337-63DE-302E-81AA-10D717E1F699> /System/Library/Frameworks/DiskArbitration.framework/Versions/A/DiskArbitration
        0x7fff8b658000 -     0x7fff8b73cdef  libobjc.A.dylib (228.0.0 - compatibility 1.0.0) <C5F2392D-B481-3A9D-91BE-3D039FFF4DEC> /usr/lib/libobjc.A.dylib
        0x7fff8b77b000 -     0x7fff8b77efff  libRadiance.dylib (??? - ???) <CD89D70D-F177-3BAE-8A26-644EA7D5E28E> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libRadiance.dylib
        0x7fff8b77f000 -     0x7fff8b7a5ff7  com.apple.framework.familycontrols (3.0 - 300) <41A6DFC2-EAF5-390A-83A1-C8832528705C> /System/Library/PrivateFrameworks/FamilyControls.framework/Versions/A/FamilyCon trols
        0x7fff8b9ba000 -     0x7fff8ba0dfff  com.apple.AppleVAFramework (5.0.14 - 5.0.14) <45159B9E-05BF-35B2-AF76-D933490FBFB1> /System/Library/PrivateFrameworks/AppleVA.framework/Versions/A/AppleVA
        0x7fff8ba0e000 -     0x7fff8ba70fff  com.apple.coreui (1.2.1 - 164.1) <F7972630-F696-3FC5-9FCF-A6E1C8771078> /System/Library/PrivateFrameworks/CoreUI.framework/Versions/A/CoreUI
        0x7fff8ba71000 -     0x7fff8bd8dff7  com.apple.CoreServices.CarbonCore (960.18 - 960.18) <6020C3FB-6125-3EAE-A55D-1E77E38BEDEA> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonC ore.framework/Versions/A/CarbonCore
        0x7fff8bd8e000 -     0x7fff8bd9dfff  com.apple.Collaboration (63 - 63) <AA2E926B-68AE-3B61-A484-B9DAE64EE03E> /System/Library/Frameworks/Collaboration.framework/Versions/A/Collaboration
        0x7fff8bd9e000 -     0x7fff8be84ff7  com.apple.Bluetooth (4.0 - 4.0.1f4) <0D2C91A5-4655-3049-BD01-A980DF3B9B04> /System/Library/Frameworks/IOBluetooth.framework/Versions/A/IOBluetooth
        0x7fff8be85000 -     0x7fff8be9afff  com.apple.FileSync.framework (6.0 - 432) <D296CA43-BAED-3AA9-953A-C879FEBD6104> /System/Library/PrivateFrameworks/FileSync.framework/Versions/A/FileSync
        0x7fff8be9b000 -     0x7fff8bedfff7  com.apple.MediaKit (11.0 - 585) <5672F5E1-B8DC-3B69-A8BE-E6A938E28B62> /System/Library/PrivateFrameworks/MediaKit.framework/Versions/A/MediaKit
        0x7fff8bf27000 -     0x7fff8bfeeff7  com.apple.ColorSync (4.7.0 - 4.7.0) <F325A9D7-7203-36B7-8C1C-B6A4D5CC73A8> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ColorSync.framework/Versions/A/ColorSync
        0x7fff8bfef000 -     0x7fff8bff6fff  com.apple.NetFS (4.0 - 4.0) <433EEE54-E383-3505-9154-45B909FD3AF0> /System/Library/Frameworks/NetFS.framework/Versions/A/NetFS
        0x7fff8bff7000 -     0x7fff8c016fff  libresolv.9.dylib (46.0.0 - compatibility 1.0.0) <33263568-E6F3-359C-A4FA-66AD1300F7D4> /usr/lib/libresolv.9.dylib
        0x7fff8c034000 -     0x7fff8c061fff  com.apple.quartzfilters (1.7.0 - 1.7.0) <CE1EDD58-7273-38F9-AD33-871A8BA7ABF3> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuartzFilters .framework/Versions/A/QuartzFilters
        0x7fff8c0d6000 -     0x7fff8c0fffff  com.apple.CoreServicesInternal (113.8 - 113.8) <C1A3CF1B-BC45-3FC6-82B3-1511EBBA9D51> /System/Library/PrivateFrameworks/CoreServicesInternal.framework/Versions/A/Cor eServicesInternal
        0x7fff8c100000 -     0x7fff8c1faff7  com.apple.DiskImagesFramework (10.7.2 - 331) <C88025FC-2460-3F33-B808-CB1E8C2E5CB9> /System/Library/PrivateFrameworks/DiskImages.framework/Versions/A/DiskImages
        0x7fff8c205000 -     0x7fff8c221ff7  com.apple.GenerationalStorage (1.0 - 125) <31F60175-E38D-3C63-8D95-32CFE7062BCB> /System/Library/PrivateFrameworks/GenerationalStorage.framework/Versions/A/Gene rationalStorage
        0x7fff8c222000 -     0x7fff8c223ff7  libremovefile.dylib (21.0.0 - compatibility 1.0.0) <001E87FF-97DF-328D-B22F-16E3ACEF8864> /usr/lib/system/libremovefile.dylib
        0x7fff8c224000 -     0x7fff8c224fff  com.apple.quartzframework (1.5 - 1.5) <2C13AE76-C86B-3D48-A583-121689190F74> /System/Library/Frameworks/Quartz.framework/Versions/A/Quartz
        0x7fff8c225000 -     0x7fff8c24eff7  com.apple.framework.Apple80211 (7.1.1 - 711.1) <FD0675E6-6602-3C28-85AA-6A4AF6B36D78> /System/Library/PrivateFrameworks/Apple80211.framework/Versions/A/Apple80211
        0x7fff8c24f000 -     0x7fff8c295ff7  libcurl.4.dylib (7.0.0 - compatibility 7.0.0) <EAF61ADC-DC00-34CE-B23E-7238ED54E31D> /usr/lib/libcurl.4.dylib
        0x7fff8c296000 -     0x7fff8c2a2fff  com.apple.CoreBluetooth (100.7 - 1) <988DB0FD-7759-3BA0-AE5F-B6DA2BDB3FF5> /System/Library/Frameworks/IOBluetooth.framework/Versions/A/Frameworks/CoreBlue tooth.framework/Versions/A/CoreBluetooth
        0x7fff8c2a3000 -     0x7fff8c2caff7  com.apple.PerformanceAnalysis (1.10 - 10) <DD87C994-66D6-330A-BAF9-AB86BE125A62> /System/Library/PrivateFrameworks/PerformanceAnalysis.framework/Versions/A/Perf ormanceAnalysis
        0x7fff8c2cb000 -     0x7fff8c37efff  com.apple.CoreText (220.11.0 - ???) <4EA8E2DF-542D-38D5-ADB9-C0DAA73F898B> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreText.framework/Versions/A/CoreText
        0x7fff8c37f000 -     0x7fff8c383fff  libmathCommon.A.dylib (2026.0.0 - compatibility 1.0.0) <FF83AFF7-42B2-306E-90AF-D539C51A4542> /usr/lib/system/libmathCommon.A.dylib
        0x7fff8c384000 -     0x7fff8c84bfff  FaceCoreLight (1.4.7 - compatibility 1.0.0) <E9D2A69C-6E81-358C-A162-510969F91490> /System/Library/PrivateFrameworks/FaceCoreLight.framework/Versions/A/FaceCoreLi ght
        0x7fff8c84c000 -     0x7fff8c857ff7  com.apple.speech.recognition.framework (4.0.19 - 4.0.19) <48607E6E-8612-3267-9184-E948B1863B32> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SpeechRecogni tion.framework/Versions/A/SpeechRecognition
        0x7fff8c858000 -     0x7fff8c875ff7  com.apple.openscripting (1.3.3 - ???) <4FACC89E-FDAA-3CA5-B5CD-1F4EEAEDF7CF> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/OpenScripting .framework/Versions/A/OpenScripting
        0x7fff8c876000 -     0x7fff8c87fff7  libsystem_notify.dylib (80.1.0 - compatibility 1.0.0) <A4D651E3-D1C6-3934-AD49-7A104FD14596> /usr/lib/system/libsystem_notify.dylib
        0x7fff8c880000 -     0x7fff8c886ff7  libunwind.dylib (30.0.0 - compatibility 1.0.0) <1E9C6C8C-CBE8-3F4B-A5B5-E03E3AB53231> /usr/lib/system/libunwind.dylib
        0x7fff8c889000 -     0x7fff8c996fff  libJP2.dylib (??? - ???) <6052C973-9354-35CB-AAB9-31D00D8786F9> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libJP2.dylib
        0x7fff8c997000 -     0x7fff8cb36fff  com.apple.QuartzCore (1.7 - 270.0) <E8FC9AA4-A5CB-384B-AD29-7190A1387D3E> /System/Library/Frameworks/QuartzCore.framework/Versions/A/QuartzCore
        0x7fff8cb45000 -     0x7fff8cc7efef  com.apple.vImage (5.1 - 5.1) <EB634387-CD15-3246-AC28-5FB368ACCEA2> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vImage.fr amework/Versions/A/vImage
        0x7fff8ccc5000 -     0x7fff8cda3ff7  com.apple.DiscRecording (6.0 - 6000.4.1) <644A30D5-30EA-3681-A59C-6F0C3CC7A3C7> /System/Library/Frameworks/DiscRecording.framework/Versions/A/DiscRecording
        0x7fff8cda9000 -     0x7fff8cdaefff  libGIF.dylib (??? - ???) <393E2DB5-9479-39A6-A75A-B5F20B852532> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libGIF.dylib
        0x7fff8cdaf000 -     0x7fff8ce06fff  libTIFF.dylib (??? - ???) <FF0D9A24-6956-3F03-81EA-3EEAD22C9DB8> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libTIFF.dylib
        0x7fff8ce07000 -     0x7fff8ce07fff  com.apple.ApplicationServices (41 - 41) <89B6AD5B-5C75-3E83-8C2B-AA7F4C55E400> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Application Services
        0x7fff8ce08000 -     0x7fff8d0e0ff7  com.apple.security (7.0 - 55010) <93713FF4-FE86-3B4C-8150-5FCC7F3320C8> /System/Library/Frameworks/Security.framework/Versions/A/Security
        0x7fff8d0e1000 -     0x7fff8d0e6fff  libpam.2.dylib (3.0.0 - compatibility 3.0.0) <D952F17B-200A-3A23-B9B2-7C1F7AC19189> /usr/lib/libpam.2.dylib
        0x7fff8d0e7000 -     0x7fff8d0fcfff  com.apple.speech.synthesis.framework (4.0.74 - 4.0.74) <C061ECBB-7061-3A43-8A18-90633F943295> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ SpeechSynthesis.framework/Versions/A/SpeechSynthesis
        0x7fff8d0fd000 -     0x7fff8d180fef  com.apple.Metadata (10.7.0 - 627.20) <E00156B0-663A-35EF-A307-A2CEB00F1845> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Metadat a.framework/Versions/A/Metadata
        0x7fff8d181000 -     0x7fff8d4a2fff  com.apple.AddressBook.framework (6.1 - 1062) <94321204-A094-3BBE-8EA6-6048D39F4E54> /System/Library/Frameworks/AddressBook.framework/Versions/A/AddressBook
        0x7fff8d4a3000 -     0x7fff8d511fff  com.apple.CoreSymbolication (2.1 - 66) <7CF9EF4A-262A-3009-8D42-A76F5614E372> /System/Library/PrivateFrameworks/CoreSymbolication.framework/Versions/A/CoreSy mbolication
        0x7fff8d512000 -     0x7fff8d512fff  com.apple.Carbon (153 - 153) <C1A30E01-E113-38A0-95CA-99360F92A37A> /System/Library/Frameworks/Carbon.framework/Versions/A/Carbon
        0x7fff8d513000 -     0x7fff8d54eff7  libsystem_info.dylib (??? - ???) <9C8C2DCB-96DB-3471-9DCE-ADCC26BE2DD4> /usr/lib/system/libsystem_info.dylib
        0x7fff8d5a5000 -     0x7fff8d6a7ff7  libxml2.2.dylib (10.3.0 - compatibility 10.0.0) <22F1D1B6-1761-3687-9EFD-036EA15FB2E4> /usr/lib/libxml2.2.dylib
        0x7fff8d744000 -     0x7fff8d7b4fff  com.apple.datadetectorscore (3.0 - 179.4) <2A822A13-94B3-3A43-8724-98FDF698BB12> /System/Library/PrivateFrameworks/DataDetectorsCore.framework/Versions/A/DataDe tectorsCore
        0x7fff8d7b5000 -     0x7fff8d7d9ff7  com.apple.RemoteViewServices (1.2 - 39) <862849C8-84C1-32A1-B87E-B29E74778C9F> /System/Library/PrivateFrameworks/RemoteViewServices.framework/Versions/A/Remot eViewServices
        0x7fff8d9a6000 -     0x7fff8da06fff  libvDSP.dylib (325.4.0 - compatibility 1.0.0) <3A7521E6-5510-3FA7-AB65-79693A7A5839> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvDSP.dylib
        0x7fff8da07000 -     0x7fff8dc09fff  libicucore.A.dylib (46.1.0 - compatibility 1.0.0) <38CD6ED3-C8E4-3CCD-89AC-9C3198803101> /usr/lib/libicucore.A.dylib
        0x7fff8dc0a000 -     0x7fff8dc35fff  libpcre.0.dylib (1.1.0 - compatibility 1.0.0) <7D3CDB0A-840F-3856-8F84-B4A50E66431B> /usr/lib/libpcre.0.dylib
        0x7fff8dc36000 -     0x7fff8dc37fff  libDiagnosticMessagesClient.dylib (??? - ???) <3DCF577B-F126-302B-BCE2-4DB9A95B8598> /usr/lib/libDiagnosticMessagesClient.dylib
        0x7fff8dc8d000 -     0x7fff8dc92fff  com.apple.OpenDirectory (10.7 - 146) <91A87249-6A2F-3F89-A8DE-0E95C0B54A3A> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/OpenDirectory
        0x7fff8dc93000 -     0x7fff8dc9afff  libcopyfile.dylib (85.1.0 - compatibility 1.0.0) <0AB51EE2-E914-358C-AC19-47BC024BDAE7> /usr/lib/system/libcopyfile.dylib
        0x7fff8dc9b000 -     0x7fff8dcbffff  com.apple.Kerberos (1.0 - 1) <1F826BCE-DA8F-381D-9C4C-A36AA0EA1CB9> /System/Library/Frameworks/Kerberos.framework/Versions/A/Kerberos
        0x7fff8dcc0000 -     0x7fff8dccaff7  liblaunch.dylib (392.35.0 - compatibility 1.0.0) <8F8BB206-CECA-33A5-A105-4A01C3ED5D23> /usr/lib/system/liblaunch.dylib
        0x7fff8ea64000 -     0x7fff8ecdffff  com.apple.imageKit (2.1.1 - 1.0) <9C159577-0FFF-34D8-890E-66627A9E44FB> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/ImageKit.fram ework/Versions/A/ImageKit
        0x7fff8ece0000 -     0x7fff8ed10ff7  com.apple.DictionaryServices (1.2.1 - 158.2) <3FC86118-7553-38F7-8916-B329D2E94476> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Diction aryServices.framework/Versions/A/DictionaryServices
        0x7fff8ed11000 -     0x7fff8ed1fff7  libkxld.dylib (??? - ???) <B1BD4862-9D3F-3EEF-895C-A8E2E53684B6> /usr/lib/system/libkxld.dylib
        0x7fff8ed20000 -     0x7fff8ed70fff  com.apple.CoreMediaIO (210.0 - 3180) <13374EA4-83BE-3407-B9DD-D199426D0E7A> /System/Library/Frameworks/CoreMediaIO.framework/Versions/A/CoreMediaIO
        0x7fff8ed84000 -     0x7fff8eff2ff7  com.apple.QuartzComposer (5.0 - 236) <CBF3070A-BD09-328D-857F-F35A0E1D22B5> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuartzCompose r.framework/Versions/A/QuartzComposer
        0x7fff8eff3000 -     0x7fff8f08dff7  com.apple.SearchKit (1.4.0 - 1.4.0) <4E70C394-773E-3A4B-A93C-59A88ABA9509> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SearchK it.framework/Versions/A/SearchKit
        0x7fff8f08e000 -     0x7fff8f0e9ff7  com.apple.HIServices (1.10 - ???) <BAB8B422-7047-3D2D-8E0A-13FCF153E4E7> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ HIServices.framework/Versions/A/HIServices
        0x7fff8f315000 -     0x7fff8f356fff  com.apple.QD (3.12 - ???) <983D6E1E-B8BD-3260-A960-13727351D867> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ QD.framework/Versions/A/QD
        0x7fff8f357000 -     0x7fff8fa6a587  com.apple.CoreGraphics (1.600.0 - ???) <A9F2451E-6F60-350E-A6E5-539669B53074> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/CoreGraphics
        0x7fff8fa6b000 -     0x7fff8fb52fff  com.apple.backup.framework (1.3.1 - 1.3.1) <3F01784C-3C09-3F08-B949-779F0A5248C1> /System/Library/PrivateFrameworks/Backup.framework/Versions/A/Backup
        0x7fff8fb84000 -     0x7fff8fb8bff7  com.apple.CommerceCore (1.0 - 17) <3894FE48-EDCE-30E9-9796-E2F959D92704> /System/Library/PrivateFrameworks/CommerceKit.framework/Versions/A/Frameworks/C ommerceCore.framework/Versions/A/CommerceCore
        0x7fff8fb8c000 -     0x7fff8fbbfff7  com.apple.GSS (2.1 - 2.0) <9A2C9736-DA10-367A-B376-2C7A584E6C7A> /System/Library/Frameworks/GSS.framework/Versions/A/GSS
        0x7fff8fc04000 -     0x7fff8fc56ff7  libGLU.dylib (??? - ???) <3C9153A0-8499-3DC0-AAA4-9FA6E488BE13> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLU.dylib
        0x7fff8fc6c000 -     0x7fff8fd6ffff  libsqlite3.dylib (9.6.0 - compatibility 9.0.0) <7F60B0FF-4946-3639-89AB-B540D318B249> /usr/lib/libsqlite3.dylib
        0x7fff900de000 -     0x7fff901dcfff  com.apple.QuickLookUIFramework (3.1 - 500.1) <D3A71FF1-7ED1-39DB-AD4E-451612DA536C> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuickLookUI.f ramework/Versions/A/QuickLookUI
        0x7fff901dd000 -     0x7fff901e3fff  libGFXShared.dylib (??? - ???) <343AE6C0-EB02-333C-8D35-DF6093B92758> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGFXShared.d ylib
        0x7fff9020c000 -     0x7fff90217fff  com.apple.CommonAuth (2.1 - 2.0) <BFDD0A8D-4BEA-39EC-98B3-2E083D7B1ABD> /System/Library/PrivateFrameworks/CommonAuth.framework/Versions/A/CommonAuth
        0x7fff90218000 -     0x7fff9028dff7  libc++.1.dylib (19.0.0 - compatibility 1.0.0) <C0EFFF1B-0FEB-3F99-BE54-506B35B555A9> /usr/lib/libc++.1.dylib
        0x7fff9028e000 -     0x7fff902bbff7  com.apple.opencl (1.50.63 - 1.50.63) <DB335C5C-3ABD-38C8-B6A5-8436EE1484D3> /System/Library/Frameworks/OpenCL.framework/Versions/A/OpenCL
        0x7fff902bc000 -     0x7fff902bcfff  com.apple.CoreServices (53 - 53) <043C8026-8EDD-3241-B090-F589E24062EF> /System/Library/Frameworks/CoreServices.framework/Versions/A/CoreServices
        0x7fff902bd000 -     0x7fff9039afef  libsystem_c.dylib (763.12.0 - compatibility 1.0.0) <FF69F06E-0904-3C08-A5EF-536FAFFFDC22> /usr/lib/system/libsystem_c.dylib
        0x7fff9039b000 -     0x7fff903c3ff7  com.apple.CoreVideo (1.7 - 70.1) <98F917B2-FB53-3EA3-B548-7E97B38309A7> /System/Library/Frameworks/CoreVideo.framework/Versions/A/CoreVideo
        0x7fff903c4000 -     0x7fff9040dfff  com.apple.framework.CoreWLAN (2.1.1 - 211.3) <0FBC6087-6872-3403-A317-CE888969CF4C> /System/Library/Frameworks/CoreWLAN.framework/Versions/A/CoreWLAN
        0x7fff9040e000 -     0x7fff90411ff7  com.apple.securityhi (4.0 - 1) <7146CB8E-B754-3B0E-A74E-77E9138A81C5> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SecurityHI.fr amework/Versions/A/SecurityHI
        0x7fff90412000 -     0x7fff90736fff  com.apple.HIToolbox (1.8 - ???) <A3BE7C59-52E6-3A7F-9B30-24B7DD3E95F2> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.fra mework/Versions/A/HIToolbox
        0x7fff90737000 -     0x7fff90738fff  com.apple.MonitorPanelFramework (1.4.0 - 1.4.0) <92364334-3B11-360B-89D8-447185FEC653> /System/Library/PrivateFrameworks/MonitorPanel.framework/Versions/A/MonitorPane l
        0x7fff90739000 -     0x7fff9073afff  libdnsinfo.dylib (395.7.0 - compatibility 1.0.0) <37FEFE78-BCB5-37EC-8E99-747469BCA4C7> /usr/lib/system/libdnsinfo.dylib
        0x7fff90abb000 -     0x7fff90b0fff7  com.apple.ImageCaptureCore (3.0.1 - 3.0.1) <5D86BECB-9F7A-3FDB-9436-C3DE4B2A5F29> /System/Library/Frameworks/ImageCaptureCore.framework/Versions/A/ImageCaptureCo re
        0x7fff90b10000 -     0x7fff90b13fff  com.apple.AppleSystemInfo (1.0 - 1) <111B6F69-3FBD-3860-BCF8-1DF02D9BED28> /System/Library/PrivateFrameworks/AppleSystemInfo.framework/Versions/A/AppleSys temInfo
        0x7fff90b71000 -     0x7fff90b73fff  libquarantine.dylib (36.0.0 - compatibility 1.0.0) <4C3BFBC7-E592-3939-B376-1C2E2D7C5389> /usr/lib/system/libquarantine.dylib
        0x7fff90b74000 -     0x7fff90b75fff  libunc.dylib (24.0.0 - compatibility 1.0.0) <337960EE-0A85-3DD0-A760-7134CF4C0AFF> /usr/lib/system/libunc.dylib
        0x7fff90b76000 -     0x7fff90bb5fff  com.apple.AE (527.7 - 527.7) <B82F7ABC-AC8B-3507-B029-969DD5CA813D> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/AE.fram ework/Versions/A/AE
        0x7fff90bc8000 -     0x7fff90bdcff7  com.apple.LangAnalysis (1.7.0 - 1.7.0) <04C31EF0-912A-3004-A08F-CEC27030E0B2> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ LangAnalysis.framework/Versions/A/LangAnalysis
        0x7fff90c19000 -     0x7fff90c19fff  com.apple.Accelerate.vecLib (3.7 - vecLib 3.7) <C06A140F-6114-3B8B-B080-E509303145B8> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/vecLib
        0x7fff90c1a000 -     0x7fff90c1cfff  libCVMSPluginSupport.dylib (??? - ???) <61D89F3C-C64D-3733-819F-8AAAE4E2E993> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCVMSPluginS upport.dylib
        0x7fff90c3d000 -     0x7fff90c7fff7  libcommonCrypto.dylib (55010.0.0 - compatibility 1.0.0) <BB770C22-8C57-365A-8716-4A3C36AE7BFB> /usr/lib/system/libcommonCrypto.dylib
        0x7fff90c80000 -     0x7fff90d8cfff  libcrypto.0.9.8.dylib (44.0.0 - compatibility 0.9.8) <3A8E1F89-5E26-3C8B-B538-81F5D61DBF8A> /usr/lib/libcrypto.0.9.8.dylib
        0x7fff90d8d000 -     0x7fff911bafff  libLAPACK.dylib (??? - ???) <4F2E1055-2207-340B-BB45-E4F16171EE0D> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libLAPACK.dylib
        0x7fff911bb000 -     0x7fff911bbfff  com.apple.Accelerate (1.7 - Accelerate 1.7) <82DDF6F5-FBC3-323D-B71D-CF7ABC5CF568> /System/Library/Frameworks/Accelerate.framework/Versions/A/Accelerate
        0x7fff911d5000 -     0x7fff911e3fff  libdispatch.dylib (187.7.0 - compatibility 1.0.0) <712AAEAC-AD90-37F7-B71F-293FF8AE8723> /usr/lib/system/libdispatch.dylib
        0x7fff911e4000 -     0x7fff91de5ff7  com.apple.AppKit (6.7.2 - 1138.23) <5CD2C850-4F52-3BA2-BA11-3107DFD2D23C> /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit
        0x7fff91de6000 -     0x7fff91dfcff7  com.apple.ImageCapture (7.0 - 7.0) <F15FC6FB-9E88-3BE9-BABE-0454D3A502A0> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/ImageCapture. framework/Versions/A/ImageCapture
        0x7fff91dfd000 -     0x7fff91e0aff7  libbz2.1.0.dylib (1.0.5 - compatibility 1.0.0) <3373D310-3B10-3DD1-B754-B7B138CD448D> /usr/lib/libbz2.1.0.dylib
        0x7fff91e0b000 -     0x7fff91e40fff  com.apple.securityinterface (5.0 - 55004) <CFB4A542-7297-3159-8229-A5815EFE0EF5> /System/Library/Frameworks/SecurityInterface.framework/Versions/A/SecurityInter face
        0x7fff91e41000 -     0x7fff91e42fff  libsystem_sandbox.dylib (??? - ???) <DC97E52F-C577-3A8A-A2F6-431AE3D40C40> /usr/lib/system/libsystem_sandbox.dylib
        0x7fff91e43000 -     0x7fff91eabff7  com.apple.audio.CoreAudio (4.0.1 - 4.0.1) <7966E3BE-376B-371A-A21D-9BD763C0BAE7> /System/Library/Frameworks/CoreAudio.framework/Versions/A/CoreAudio
        0x7fff91ed4000 -     0x7fff91f73fff  com.apple.LaunchServices (480.21 - 480.21) <6BFADEA9-5BC1-3B53-A013-488EB7F1AB57> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/LaunchS ervices.framework/Versions/A/LaunchServices
        0x7fff91f74000 -     0x7fff92708fef  com.apple.CoreAUC (6.11.04 - 6.11.04) <FFC336DF-C71F-3C93-8E93-5CBD9EEAE940> /System/Library/PrivateFrameworks/CoreAUC.framework/Versions/A/CoreAUC
        0x7fff9270f000 -     0x7fff9270ffff  com.apple.audio.units.AudioUnit (1.7.1 - 1.7.1) <04C10813-CCE5-3333-8C72-E8E35E417B3B> /System/Library/Frameworks/AudioUnit.framework/Versions/A/AudioUnit
        0x7fff9271e000 -     0x7fff92730ff7  libz.1.dylib (1.2.5 - compatibility 1.0.0) <30CBEF15-4978-3DED-8629-7109880A19D4> /usr/lib/libz.1.dylib
        0x7fff92731000 -     0x7fff9273ffff  com.apple.NetAuth (3.1 - 3.1) <FE7EC4D7-5632-3B8D-9094-A0AC8D60EDEE> /System/Library/PrivateFrameworks/NetAuth.framework/Versions/A/NetAuth
        0x7fff92740000 -     0x7fff92743fff  com.apple.help (1.3.2 - 42) <BF14DE49-F7E8-336F-81FB-BBDF2DB3AC09> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Help.framewor k/Versions/A/Help
        0x7fff9274f000 -     0x7fff9279aff7  com.apple.SystemConfiguration (1.11.1 - 1.11) <F832FE21-5509-37C6-B1F1-48928F31BE45> /System/Library/Frameworks/SystemConfiguration.framework/Versions/A/SystemConfi guration
        0x7fff9279e000 -     0x7fff927adff7  com.apple.opengl (1.7.5 - 1.7.5) <2945F1A6-910C-3596-9988-5701B04BD821> /System/Library/Frameworks/OpenGL.framework/Versions/A/OpenGL
        0x7fff927ae000 -     0x7fff929c8fef  com.apple.CoreData (104 - 358.12) <33B1FA75-7970-3751-9DCC-FF809D3E1FA2> /System/Library/Frameworks/CoreData.framework/Versions/A/CoreData
        0x7fff92a26000 -     0x7fff92a32fff  com.apple.DirectoryService.Framework (10.7 - 146) <BB0240B0-69F7-38FA-A8D8-9C0079F8613F> /System/Library/Frameworks/DirectoryService.framework/Versions/A/DirectoryServi ce
        0x7fff92a33000 -     0x7fff92a33fff  libkeymgr.dylib (23.0.0 - compatibility 1.0.0) <61EFED6A-A407-301E-B454-CD18314F0075> /usr/lib/system/libkeymgr.dylib
        0x7fff92a34000 -     0x7fff92b15fff  com.apple.CoreServices.OSServices (478.29 - 478.29) <B487110E-C942-33A8-A494-3BDEDB88B1CD> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/OSServi ces.framework/Versions/A/OSServices
        0x7fff92b16000 -     0x7fff92b3dfff  com.apple.framework.internetaccounts (1.1 - 2) <B01A08DC-2735-3783-B0C8-63492BD845CF> /System/Library/PrivateFrameworks/InternetAccounts.framework/Versions/A/Interne tAccounts
        0x7fff92b4e000 -     0x7fff92be4ff7  libvMisc.dylib (325.4.0 - compatibility 1.0.0) <642D8D54-F9F5-3FBB-A96C-EEFE94C6278B> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvMisc.dylib
        0x7fff92cba000 -     0x7fff92d11fff  com.apple.Suggestions (1.0 - 85.0) <CC8986E7-65EF-3CE5-9058-B082EB19DFFA> /System/Library/PrivateFrameworks/Suggestions.framework/Versions/A/Suggestions
        0x7fff92d12000 -     0x7fff92d88fff  com.apple.ISSupport (1.9.8 - 56) <2BEEF162-893F-356C-BD4E-8668F044A917> /System/Library/PrivateFrameworks/ISSupport.framework/Versions/A/ISSupport
        0x7fff92d89000 -     0x7fff931bbfff  com.apple.VideoToolbox (1.0 - 705.42) <FA0AD643-845C-3378-AFD1-8C5BD0215B72> /System/Library/PrivateFrameworks/VideoToolbox.framework/Versions/A/VideoToolbo x
        0x7fff931bc000 -     0x7fff93322fff  com.apple.CFNetwork (520.2.5 - 520.2.5) <406712D9-3F0C-3763-B4EB-868D01F1F042> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CFNetwo rk.framework/Versions/A/CFNetwork
        0x7fff93323000 -     0x7fff93340fff  com.apple.frameworks.preferencepanes (15.0 - 15.0) <ABF4E917-A452-3B86-B071-948F4B6A3CD3> /System/Library/Frameworks/PreferencePanes.framework/Versions/A/PreferencePanes
        0x7fff93341000 -     0x7fff935ccfff  com.apple.JavaScriptCore (7534.52 - 7534.52.7) <4B188A38-3A5B-327D-ABE9-8EE2420B3791> /System/Library/Frameworks/JavaScriptCore.framework/Versions/A/JavaScriptCore
        0x7fff9360c000 -     0x7fff93646fef  com.apple.DebugSymbols (2.1 - 85) <F45985E2-D1D0-3F47-861E-47904837B76F> /System/Library/PrivateFrameworks/DebugSymbols.framework/Versions/A/DebugSymbol s
        0x7fff93647000 -     0x7fff9375fff7  com.apple.DesktopServices (1.6.1 - 1.6.1) <4418EAA6-7163-3A77-ABD3-F8289796C81A> /System/Library/PrivateFrameworks/DesktopServicesPriv.framework/Versions/A/Desk topServicesPriv
        0x7fff93760000 -     0x7fff9385dfff  com.apple.avfoundation (2.0 - 180.30) <061DDF4C-E7BB-33D0-BEB9-0443ADF6EC8C> /System/Library/Frameworks/AVFoundation.framework/Versions/A/AVFoundation
        0x7fff9385e000 -     0x7fff93870ff7  libbsm.0.dylib (??? - ???) <349BB16F-75FA-363F-8D98-7A9C3FA90A0D> /usr/lib/libbsm.0.dylib
        0x7fff93871000 -     0x7fff93e55fff  libBLAS.dylib (??? - ???) <C34F6D88-187F-33DC-8A68-C0C9D1FA36DF> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libBLAS.dylib
        0x7fff94056000 -     0x7fff94134fff  com.apple.ImageIO.framework (3.1.1 - 3.1.1) <13E549F8-5BD6-3BAE-8C33-1D0BD269C081> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/ImageIO
        0x7fff94135000 -     0x7fff9413bfff  libmacho.dylib (800.0.0 - compatibility 1.0.0) <165514D7-1BFA-38EF-A151-676DCD21FB64> /usr/lib/system/libmacho.dylib
        0x7fff9413c000 -     0x7fff94558ff7  com.apple.SceneKit (2.1 - 125.1) <296A889C-2E9D-366F-8962-E23931EECC70> /System/Library/PrivateFrameworks/SceneKit.framework/Versions/A/SceneKit
        0x7fff9459d000 -     0x7fff9459eff7  libsystem_blocks.dylib (53.0.0 - compatibility 1.0.0) <8BCA214A-8992-34B2-A8B9-B74DEACA1869> /usr/lib/system/libsystem_blocks.dylib
        0x7fff9459f000 -     0x7fff945fbfff  com.apple.QuickLookFramework (3.1 - 500.1) <0C9E98D2-D8F9-3161-9809-0D77B98AD938> /System/Library/Frameworks/QuickLook.framework/Versions/A/QuickLook
        0x7fff945fc000 -     0x7fff94600fff  libdyld.dylib (195.5.0 - compatibility 1.0.0) <380C3F44-0CA7-3514-8080-46D1C9DF4FCD> /usr/lib/system/libdyld.dylib
        0x7fff94683000 -     0x7fff94685ff7  com.apple.print.framework.Print (7.1 - 247.1) <8A4925A5-BAA3-373C-9B5D-03E0270C6B12> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Print.framewo rk/Versions/A/Print
        0x7fff94686000 -     0x7fff94718fff  com.apple.CorePDF (3.0 - 3.0) <FA08FDA8-38C5-353D-89FC-59F9F99ABADD> /System/Library/PrivateFrameworks/CorePDF.framework/Versions/A/CorePDF
        0x7fff94719000 -     0x7fff9471afff  liblangid.dylib (??? - ???) <CACBE3C3-2F7B-3EED-B50E-EDB73F473B77> /usr/lib/liblangid.dylib
        0x7fff9471b000 -     0x7fff94ab9fef  com.apple.MediaToolbox (1.0 - 705.42) <BF05C02D-3202-3FF8-A334-C14AF7C89F9E> /System/Library/PrivateFrameworks/MediaToolbox.framework/Versions/A/MediaToolbo x
        0x7fff94aba000 -     0x7fff94baffff  libiconv.2.dylib (7.0.0 - compatibility 7.0.0) <5C40E880-0706-378F-B864-3C2BD922D926> /usr/lib/libiconv.2.dylib
        0x7fff94bb2000 -     0x7fff94bc4ff7  libsasl2.2.dylib (3.15.0 - compatibility 3.0.0) <6245B497-784B-355C-98EF-2DC6B45BF05C> /usr/lib/libsasl2.2.dylib
        0x7fff94bc5000 -     0x7fff94c03fff  com.apple.bom (11.0 - 183) <F300B9EC-995E-33A7-9175-9F07D4B68F16> /System/Library/PrivateFrameworks/Bom.framework/Versions/A/Bom
        0x7fff94c04000 -     0x7fff94c68fff  com.apple.Symbolication (1.2 - 83.1) <A7E088DE-BC16-3C24-A0D0-30EEBA221659> /System/Library/PrivateFrameworks/Symbolication.framework/Versions/A/Symbolicat ion
        0x7fff94c69000 -     0x7fff94f82ff7  com.apple.Foundation (6.7.1 - 833.20) <D922F590-FDA6-3D89-A271-FD35E2290624> /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
        0x7fff94f83000 -     0x7fff94f9afff  com.apple.CFOpenDirectory (10.7 - 146) <E71AE4A2-F72B-35F2-9043-9F45CF75F11A> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/Frameworks/CFOpen Directory.framework/Versions/A/CFOpenDirectory
        0x7fff94f9b000 -     0x7fff94fa1fff  IOSurface (??? - ???) <03F95CAC-569C-3573-B3D7-2D211B8BDC56> /System/Library/Frameworks/IOSurface.framework/Versions/A/IOSurface
        0x7fff95755000 -     0x7fff958aefff  com.apple.audio.toolbox.AudioToolbox (1.7.1 - 1.7.1) <4877267E-F736-3019-85D3-40A32A042A80> /System/Library/Frameworks/AudioToolbox.framework/Versions/A/AudioToolbox
        0x7fff958af000 -     0x7fff958b3fff  libCGXType.A.dylib (600.0.0 - compatibility 64.0.0) <36F75773-7380-3AC7-AF62-E1E6C07B7004> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCGXType.A.dylib
        0x7fff958c7000 -     0x7fff95959ff7  com.apple.PDFKit (2.6.1 - 2.6.1) <33A0A777-8CF4-3F36-BB1A-78F8A3D7E8C2> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/PDFKit.framew ork/Versions/A/PDFKit
        0x7fff9595a000 -     0x7fff95967fff  libCSync.A.dylib (600.0.0 - compatibility 64.0.0) <2DCDCCA3-F1BF-3143-A243-83973F93C95C> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCSync.A.dylib
        0x7fff95968000 -     0x7fff959d2fff  com.apple.framework.IOKit (2.0 - ???) <87D55F1D-CDB5-3D13-A5F9-98EA4E22F8EE> /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit
        0x7fff959d3000 -     0x7fff95a26fff  libFontRegistry.dylib (??? - ???) <57FBD85F-41A6-3DB9-B5F4-FCC6B260F1AD> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/libFontRegistry.dylib
        0x7fff95a7b000 -     0x7fff95a81ff7  com.apple.phonenumbers (1.0 - 47) <BC6C2FE2-99C0-3AD6-AA9C-C88780FFFCCF> /System/Library/PrivateFrameworks/PhoneNumbers.framework/Versions/A/PhoneNumber s
    External Modification Summary:
      Calls made by other processes targeting this process:
        task_for_pid: 3
        thread_create: 0
        thread_set_state: 0
      Calls made by this process:
        task_for_pid: 0
        thread_create: 0
        thread_set_state: 0
      Calls made by all processes on this machine:
        task_for_pid: 4180
        thread_create: 0
        thread_set_state: 0
    VM Region Summary:
    ReadOnly portion of Libraries: Total=191.8M resident=88.3M(46%) swapped_out_or_unallocated=103.5M(54%)
    Writable regions: Total=54.0M written=5916K(11%) resident=8292K(15%) swapped_out=0K(0%) unallocated=45.9M(85%)
    REGION TYPE                      VIRTUAL
    ===========                      =======
    CG shared images                    160K
    CoreAnimation                         4K
    CoreServices                       2148K
    MALLOC                             24.7M
    MALLOC guard page                    32K
    Memory tag=240                        4K
    Memory tag=242                       12K
    Memory tag=251                        8K
    STACK GUARD                        56.0M
    Stack                              11.6M
    Stack (reserved)                    520K        reserved VM address space (unallocated)
    VM_ALLOCATE                        16.1M
    __CI_BITMAP                          80K
    __DATA                             18.5M
    __IMAGE                            1256K
    __LINKEDIT                         47.8M
    __RC_CAMERAS                        236K
    __TEXT                            144.0M
    __UNICODE                           544K
    mapped file                        18.2M
    shared memory                       312K
    ===========                      =======
    TOTAL                             342.1M
    TOTAL, minus reserved VM space    341.6M

  • Is it possible to Mute "Say A Command" while in vibrate mode?

    in vibrate mode, when the phone "should" be silent, if you pick it up and accidentally touch the voice dialing command, the voice starts talking "say a command...". my opinion is that when you are in silent/vibrate mode, this should be muted or disabled. there does not seem to be a way to do it, i looked through all the options in profiles
    Any way to mute or disable the "say a command' while the phone is in vibrate mode?  I like the side button to do it so I dont want to get ride of it.

    In Options>Voice Dialing change the audio prompts to disabled. This will disable it for all profiles but its a pretty quick and easy fix to change back and forth.

  • HT1687 Anyone know how to reset my iphone vm password while in Canada and not turning on cellular so I don't get charged for roaming? Verizon says its an iphone issue and Apple says to contact my carrier?!

    Anyone know how to reset my iphone vm password (so I can listen to my messages) while in Canada and not turning on cellular so I don't get charged for roaming? Verizon says its an iphone issue and Apple says to contact my carrier?! I don't want to pay for roaming and I am able to use my phone fine and also connect to wifi while at friend's houses etc.

    It's not a Verizon reset - under General and phone there is a place to reset my password however I can't do it without cellular turned on.

  • My ipad does not have the amount of GB on the back and in the settings it says 56gb! Also there is no setting called regulatory. It is an ipad 4 retina w wifi that i got as a Christmas present. Could it be a fake? How can i tell?

    My ipad does not have the amount of GB on the back and in the settings it says 56gb! Also there is no setting called regulatory. It is an ipad 4 retina w wifi that i got as a Christmas present. Could it be a fake? How can i tell?

    The amount of storage that is shown on the box and in Settings are calculated differently - the package uses 1 billion bytes as a gig (i.e. decimal), whereas in Settings it's shown as the binary definition : http://support.apple.com/kb/TS2419
    Also some space has been used for iOS, the built-in app and some space is lost due to formatting.

  • Apple tv is giving me a meesage that says... There is a billing problem with a previous purchase. Go to the iTunes Store on your computer and click Purchase History to resolve problem. I have gone to my purchase history but can't seem to fix this issue.

    Apple tv is giving me a meesage that says... There is a billing problem with a previous purchase. Go to the iTunes Store on your computer and click Purchase History to resolve problem. I have gone to my purchase history but can't seem to fix this issue.

    You can contact the iTunes Store Customer Service department at no charge using the form on their Support page (select the category and subcategory closest to the issue you're reporting and you'll find an "Email Us" button) and explain your problem to them.
    Copied from Varjak Paw in :https://discussions.apple.com/thread/2598671

  • I have a 16GB 3GS phone. For the last few days, my phone is constantly giving me message that the accessory attached to my phone is not optimized for this iphone. You may experience noise or poor communication, while there is no acessory attached to it.

    I have a 16GB 3GS phone since about20 months now. For the last few days, my phone is constantly giving me message that the accessory attached to my phone is not optimized for this iphone. You may experience noise or poor communication, while there is no acessory attached to it. I always used standard headphones and charging cable. Now when i recall, it started at one of the sync sessions with my itunes. I have turned my phone off and aon again and again but the message keeps coming every one or two minutes.I have also started loosing voicce on different applications like youtube etc. Also the ringer volume up and down key does not show me the small boxes increasing or decreasing on screen. The phone is playing crazy. Can someone help please
    Thanks
    Zia

    It helped earlier but it has come back again. I don't know what to do. I tried what you said earlier but this time even this is not working either. And quite intrestingly my phone won't turn off. I turn it off, it goes off and then restarts on its own and then keep giving the same message again and again.
    Could it be a charging cable, is there any chance that the cable which was working fine one day could turn to be "incompatible" with iphone the other day????????
    Please help

  • HT4623 I am trying to update to ios6, on my iPad 2 . I get a message saying "error occurred while downloading ios6" can anyone help.?

    I am trying to update to ios6, on my iPad 2 . I get a message saying "error occurred while downloading ios6" can anyone help.?

    Sorry to hear your Adobe experience has been less than stellar.  I'll try to help...
    1.  Photoshop 14.2.1 is now two releases out of date.  You might want to go to your Creative Cloud application and ask it to install Photoshop CC (2014).  Earlier this year Adobe released 2014.0 as a separate install that can live side by side with 14.2.1.  Then just a few days ago they released 2014.1 as an in-place upgrade to 2014.0.
    2.  You may be able to update Camera Raw directly to version 8.6 by a link from this page:
    Keeping Photoshop Up-To-Date
    Best of luck to you.  Please let us know here if these things help.
    -Noel

  • ITunes will no longer play my music, all the albumss are there but it if I click on a song to play it I get a message saying " The song (name of song) could not be played because the original file coul not be found. Would you like to locate it."

    iTunes will no longer play my music, all the albumss are there but it if I click on a song to play it I get a message saying " The song (name of song) could not be played because the original file coul not be found. Would you like to locate it."

    You get this message because  iTunes can’t find the file. This can happen for a number of reasons:
    The song file or a folder in its path was renamed
    The song file or the folder it is in has been moved
    The song file has been deleted
    The device containing the song files e.g. external drive is not accessible or the drive letter has changed.
    Do any of these aply to you?

  • I purchased quick time pro, and attempted to download quick time 7, but it says I have quick time x installed.  I deleted quick time x but it still says it is there and will not let me install.

    I purchased quick time pro, and attempted to download quick time 7, but it says I have quick time x installed.  I deleted quick time x but it still says it is there and will not let me install.

    In the optional install items-Quick Time is not an option. I am on Leopard.
    Then you either:
    1) never had QT X installed and could not have deleted it since QT X is only installed on Snow Leopard (OS X v10.6), Lion (OS X v10.7), and Mountain Lion (OS X v10.8) systems or...
    2) you are actually running Snow Leopard (OS X v10.6) and not Leopard (OS X v10.5) as you just stated.
    Please confirm which statment is actually correct.

  • I imported 635 images into an iPhoto album so that I can share them via a photo-stream. However, iPhoto says there are only 600. When I try to add the missing images it says they are already there. Why can i not see these images in iPhoto?

    I imported 635 images into an iPhoto album so that I can share them via a photo-stream. However, iPhoto says there are only 600. When I try to add the missing images it says they are already there. Why can i not see these images in iPhoto?

    Generally I would not use Facebook for sharing any photos, it compresses the photos substantially, and when you have shadows and dark colours you get visible "bands" where there should be subtle gradients, ie at sunsets and sunrises.
    It sounds like you are using two methods to upload to Facebook:
    1. Sharing from within Aperture, which basically syncs Facebook with your Aperture album, so any changes made at either end gets synced, hence the deletions from Albums, although the original file should still be in your library, just removed rom the album. It is like a playlist in iTunes.
    2. Exporting pics and uploading to Facebook from the browser.
    I am not sure how method 1 gets compressed, but I know that uploading hi-res jpegs to Facebook using method 2 results in poor quality images.
    I wouldn't even bother comparing option 1 or 2, and they will both be poor images once you view them on Facebook, as opposed to viewing uploaded images on proper image sharing / hosting sites.
    Your problem is not with Aperture, it is using Facebook for showing your work.
    If you export pics form Aperture at high res jpegs or TIFFs your images will be fine.
    If you insist to use Facebook as your way to share your work, then your workflow should be this:
    1. Right click images you want to share.
    2. Select Export version.
    3. Export as 100% size and ensure the export settings are set at 100% quality.
    4. Upload this pic into Facebook.
    This will get you the best image size and resolution on Facebook.
    See how you go.

Maybe you are looking for

  • How do I restore just Apple Mail (and all its folders & settings) with TM?

    Hi folks, I was trying to set up an e-mail client on a PC, clicked and unclicked my gmail pop & imap on and off, and when I got home to my Apple MacBook, I had inadvertently reloaded (twice!) every e-mail that I've ever gotten in g-mail to Apple Mail

  • How do I allow pop ups in safari without being asked "block or allow" ?

    I'm assuming that when I turned on the setting in Safari to allow pop-ups, I wouldn't have to tell the browser to allow or block every single pop up after that.  Is there a combination of settings to make allow pop-ups without the additional "block o

  • How to run a MS Access Query from Servlet

    Is there a way to execute an MS Access query from a servlet. I have a query that is doing an INSERT into the database. I tried to code the servlet to directly do the query itself, but it keeps locking the database and hanging. I would appreciate any

  • Applescript Deleted Files via "Make Folder" command

    As I was working on an app to transfer photos from my memory card to my computer, I opened a new applescript window to do some testing of the next part of it separate from the main script. I did a simplet "make folder" command to make sure I had the

  • IDisk icon suddenly appearing on desktop

    Something annoying happened. I like to keep my desktop clean. Then I had some friends over, they were playing with the iMac, and now the iDisk icon is randomly appearing during use; usually when i explore the Finder folder. I eject it, and when I reb