Syntax for page level process to invoke an on-demand app level process?

I want to use a page level process (if that's the right thing to do) to run an application process on-demand each time certain pages load. What is the proper syntax for the page level process?
I tried many variations of the following but it does not pass syntax checking.
1.
APPLICATION_PROCESS=GLOBAL_UPDATE;
2.
begin
APPLICATION_PROCESS=GLOBAL_UPDATE;
end;
What is the proper syntax?
Thanks,
Linda

Linda - If you want to run an application process when certain pages load, just create an application process (PL/SQL type) with the desired firing point, e.g., On Load: Before Header and in the process condition use a condition type like "Current Page Is Contained Within Expression 1 (comma delimited list of pages)". No need to create either a page process or an on-demand application process to do this.
Scott

Similar Messages

  • Syntax for Page 1/3, 2/3 etc. in Report

    Hi,
    I have a report, in which Page number is coming like this:--
    Page 1
    But i want it like this:--
    Page 1/3 , Page 2/3 & Page 3/3.
    In my report, syntax is written SY-PAGNO for Page 1. Then what will be the syntax for Page 1/3 etc.
    Thanks

    I cann't paste the whole code here becuase it have more than 40000 characters. 
    Hint : - It is the copy of Standard program RQPDRK00.
    I paste some code here.....(before START-OF-SELECTION.)....Here are the changed in this code---
    REPORT ZKC_RQPDRK00 NO STANDARD PAGE HEADING LINE-SIZE 147 line-count
    56(10).
    Kopie aus RCPDRK00, Ohne Materialkomponenten, ergänzt um Typ Q
    und Kreuz bei Merkmalen und Merkmalswerte. Wird aufgerufen von
    RQPDRK02.
    Tranparente DB-Tabellen
    TABLES: MAPL,                          "Material-Alt. Zuordnung
            PLKOD,                         "Plankopf
            PLFLD,                         "Planfolge
            PLPOD,                         "Vorgang
            RCR01,                         "Arbeitsplatz Vorgang
            PLPODS,                        "Untervorgang
            RCR01S,                        "Arbeitsplatz Untervorgang
           PLMZD,                         "Materialkomponentenzuor
            PLMK,                          "QM-Merkmale
            PLMKB,                         "QM-Merkmale: Belegstruktur
            PLMW,                          "QM-Merkmalswerte
            PLFHD,                         "Fertigungshilsmittelzuordnung
            RQPAS,                         "Steuertabelle QM
            QPMK ,                         "Stammprüfmerkmale
            QPMT ,                         "Stammprüfmerkmale: Texte
            QPMZ ,                         "Zuordnungstabelle Stammdaten QM
            MARA ,
            CDPOS,
            CDHDR,
            TWEWT,
            QMTT.
    ATAB-Tabellen
    TABLES:
            TCA01,                         "Plantyp
            TCA02,                         "Text zum Plantyp
            TCA08,                         "Folgenartenbeschreibung
            TCA09.                         "Plananwendung
    Strukturtabellen (Reine Workareas)
    TABLES: RC27M,                         "Struktur für Materialstammview
            QMKST.                         "Steuerkennzeichen Planmerkmal
    DATA:  TAB_MAPL   LIKE MAPL  OCCURS 10 ,
           L_MAPL_WA  LIKE MAPL ,
           L_PLNNR    LIKE MAPL-PLNNR ,
           L_MATNR    LIKE MAPL-MATNR .
    DATA : BEGIN OF I_CDPOS OCCURS 0.
            INCLUDE STRUCTURE CDPOS.
    DATA :  UDATE LIKE CDHDR-UDATE.
    DATA   END OF I_CDPOS.
    DATA WS_LINES LIKE SY-LINNO.
    DATA FIRST_PAGE_FLAG VALUE 'Y'.
    DATA BAL_LINE TYPE I.
    data grp like PLKOD-PLNNR.
    DATA : PAGECOUNT(5) TYPE c.
    Select-Options
    Auswahlmenü Anforderungsbild
    SELECTION-SCREEN SKIP.
    SELECTION-SCREEN BEGIN OF BLOCK AUSWAHL WITH FRAME TITLE TEXT-X22.
    SELECT-OPTIONS:VAGRP FOR PLKOD-VAGRP,  "Planergruppe
                   STATU FOR PLKOD-STATU,  "Status
                   WERKS FOR PLKOD-WERKS,  "Werk
                   VERWE FOR PLKOD-VERWE.  "Planverwendung
    SELECTION-SCREEN END OF BLOCK AUSWAHL.
    Include QM Routinen zum Drucken der Merkmale
    INCLUDE ZKC_IQPDRK00.
    *INCLUDE IQPDRK00.
    *-- Ergänzung QM: Plantyp Q wird als Default gesetzt
    INITIALIZATION.
      PN_PLNTY = 'Q' .
    top-of-page.
      ULINE.
      PRINT-CONTROL FUNCTION: 'SABLD' LINE 2.
                           'SAOFF' LINE 2,
                           'SAULN' LINE 3.
      write : SY-VLINE,
               30 'BCH ELECTRIC LIMITED',
               77 SY-VLINE,
               95 'QUALITY ASSURANCE',
               125 SY-VLINE,
               130 'Page ',SY-PAGNO, '/ ', '-----',
               147 SY-VLINE.
      ULINE.
      end-of-page.
      skip 2.
      ULINE.
      WRITE : SY-VLINE,
             50 SY-VLINE,
             100 SY-VLINE,
             147 SY-VLINE.
            120 SY-VLINE,
            82 'Confidential',
            95 SY-VLINE,
            122 'Restricted',
            147 SY-VLINE.
    WRITE : SY-VLINE,
             50 SY-VLINE,
             100 SY-VLINE,
             147 SY-VLINE.
            98 TEXT-K10,
            106 grp,
            92 'Confidentiality',
            120 SY-VLINE,
            123 'Confidentiality',
            147 SY-VLINE.
    ULINE AT 81(67).
    WRITE : SY-VLINE,
             50 SY-VLINE,
             100 SY-VLINE,
             147 SY-VLINE.
            120 SY-VLINE,
            84 'Internal',
            95 SY-VLINE,
            117 'Public',
            147 SY-VLINE.
    uline.
    WRITE : SY-VLINE,
             15 'Prepared by',
             50 SY-VLINE,
             70'Reviewed by',
             100 SY-VLINE,
             120 'Approved by',
             147 SY-VLINE.
            98 'Confidentiality',
            120 sy-vline,
            123 'Restricted',
            122 'Page ',
            147 SY-VLINE.
    uline.
    set margin 15 2.
    START-OF-SELECTION.
    END-OF-SELECTION.
       WRITE SY-PAGNO TO PAGECOUNT LEFT-JUSTIFIED.
        DO SY-PAGNO TIMES.
            READ LINE 1 OF PAGE SY-INDEX.
            REPLACE '-----' WITH PAGECOUNT INTO SY-LISEL.
            MODIFY CURRENT LINE.
        ENDDO.
    This is changed code....
    Please check...

  • Syntax for calling html page in PL/SQL package

    Hi,
    I'm trying to call html page (stored on server) in my pl/sql package!
    I have already create html page in pl/sql package code and it's works fine.
    Now create better html page (interface design) and stored on server. I would like to call that stored html page in my pl/sql package.
    What is syntax for calling html page in PL/SQL or could you suggest me some literature.
    In first option I had created ces and stored it on server. Then I call it in pl/sql package like htp.p('<link rel="stylesheet" href="\download\table_style.css" type="text/css">');
    I try someting like that for calling html page but it doesn't works.
    htp.p('<link rel="form" href="\download\interface.htm" type="text/html">');
    Does anyone know syntax for calling html page in pl/sql?!?
    Thanks!

    hello
    I normally use htp.anchor(URL,linkname);
    it works
    ammar sajdi
    www.e-ammar.com/Oracle.htm

  • Export command syntax for OA page in R12

    Hi,
    Can any one let me know the syntax for export command for an OA page in R12.
    I have tried with the 11i export command, but could not get the page.
    Thanks,
    Divya

    Hi,
    sorry, wrong forum (its about JDeveloper and ADF) - See: OA Framework
    Frank

  • Upper and lower level groups for pages

    Is it possible to create different level groups for pages that show up in the navigation menu?

    Your question is not that clear.
    Are you talking about hidden pages? If so, yes it is possible. You would need to create your own navigation bar though. I did this on my first website by creating my own nav bar at the top of the page. I had a couple of extra pages that were not linked to the nav bar. I used Back and Next buttons on the other two pages to link them back.
    When I re-designed my site, I increased the page size, so that I had room for two nav bars, one at the top of the page which is fixed and another at the side which changes as I add new things to the site.

  • What is the difference for page processes in Firefox and IE?

    I created a page that has a bunch of precesses all fired in the correct order in Firefix and every item is shown with the correct value.
    Unfortunately I was naive enough to believe that in Ie this would work as well, but for some reason items are not filled by the very same processes, and urls I am creating with them do no contain the values I fetched with the processes.
    Can anyone explain to me how I fill a lot of items and what the importance of order in the html page is?

    An HTML DB process is a server side thing, regardless of the browser used. What processes are you referring to? Processes you wrote or the builtin processes like Automatic DML and row-fetch? Are these onload or after submit processes? What does the Session State popup show in IE? The best way to "fill a lot of items" if they are all coming from the same table/view is to use the builtin row fetch process.
    Hope this helps.

  • Syntax for invoking servlet from form in a servlet context

              Hi all,
              I have a web application called A, put all related files in a directory B. I deployed
              some JSPs into a directory C under B. Within a jsp called c.jsp in C, a servlet
              is called in a form. What syntax should I use to call the servlet properly. For
              the given web application A, the url syntax for it is http://server/A/C/c.jsp.
              I used 'action=servlet', 'action=/servlet', but failed. For 'action=servlet',
              the user is directed to http://server/A/C/servlet. The other is http://server/servlet.
              Both are not correct. Any ideas?
              Thanks,
              Lijun
              

    What is the servlet-mapping in the web.xml file? If this is your servlet mapping:
              <servlet>
              <servlet-name>CookieCounter</servlet-name>
              <servlet-class>examples.servlets.CookieCounter</servlet-class>
              </servlet>
              <servlet-mapping>
              <servlet-name>CookieCounter</servlet-name>
              <url-pattern>monster</url-pattern>
              </servlet-mapping>
              Then the appropriate action is action=monster (or possibly action=../monster).
              Hope this helps,
              Robert
              Lijun wrote:
              > Hi all,
              >
              > I have a web application called A, put all related files in a directory B. I deployed
              > some JSPs into a directory C under B. Within a jsp called c.jsp in C, a servlet
              > is called in a form. What syntax should I use to call the servlet properly. For
              > the given web application A, the url syntax for it is http://server/A/C/c.jsp.
              > I used 'action=servlet', 'action=/servlet', but failed. For 'action=servlet',
              > the user is directed to http://server/A/C/servlet. The other is http://server/servlet.
              > Both are not correct. Any ideas?
              >
              > Thanks,
              > Lijun
              

  • Syntax for text element in page windows.

    Hi ,
    I have written the syntax in page windows as follows:
    <B>Customer/Supplier:</> ,, &KNA1-NAME1&
    But I am not getting any data in the output screen.
    Plz suggest me the correct syntax.
    Regards,
    Mridul.

    SELECTION-SCREEN BEGIN OF BLOCK blk1 WITH FRAME TITLE text-001 .
    PARAMETERS:  p_cheque   RADIOBUTTON GROUP rb1 DEFAULT 'X',              " Cheques
                 p_credit   RADIOBUTTON GROUP rb1,                          " Credit card
                 p_bacs     RADIOBUTTON GROUP rb1.                          " Bacs/Chaps
    SELECTION-SCREEN END OF BLOCK blk1.
    goto ->Text Element Selection Text
    P_CHEQUE     Cheques
    P_CREDIT                     Credit Card
    P_BACS               Bacs / Chaps
    you can able to assign text to radio button.
    Rewards if useful...............
    Minal

  • Invoking a webservice as an "application process"

    Hello there,
    I have setup a web service successfully and I can invoke it as a "Page Process", get the response in a collection , and do a few validation based on it.
    However, I will need this validation for most of my pages in the application, so I thought, I would rather run it against the application as a whole.
    The issue came when I try to invoke the web service as an "Application Process" rather than a page process. Unfortunately APEX does not seems to give an option to invoke a web service on application level as it does for page level.
    For Application Process, apparently I can only run a PL/SQL block, which is fine; if I know how to make a call to the web service and fill the collection from a PL/SQL Block.
    My application does not have a particular page as "home entry"; users basically will be accessing different pages as entry points. I really don't like to invoke WS calls on each of the page to get the collection filled, so my validation could run - I mean I will have only this option unless this tread yield me with an alternative :)-
    I am sure someone must have gone through similar situation, and hopefully could provide a solution or workaround for me.
    Thanks a lot in advance
    Regards
    Ligon Gopinathan

    Ligon:
    Yes, using NTLM authentication does complicate things a bit. However, I think it may be possible to to achieve the goal of pushing all users to a fixed landing page upon successful session establishment by the NTLM page-sentry function and from thereon to the page the user requested. This landing page will have 2 'before header' processes , one that will call the Web Service and the another that will simply re-direct the user to the page that was initially requested.
    In the page-sentry function you can modify the call to 'wwv_flow_custom_auth_std.post_login' such that the parameter
    p_flow_page is set to 'apex_application.g_flow_id ||':'<landing-page-id>'
    You will also need to save off the actual page requested( the value of apex_application.g_flow_step_id) into an application_item which you can then reference in the pre-header process of the landing-page.
    I must caution you that I have not tested whether this approach will work but decided to throw this out here anyhow :)
    Check http://www.oracle-base.com/articles/10g/utl_dbws10g.php out for a how-to for calling out to Web Services using PL/SQL .
    Varad

  • Unable to invoke a EJB from a BPEL process

    I am unable to invoke a EJB from a BPEL process. Whenever I try to test it from the oracle EM, I get the below exception. I am using WebLogic 10.3.3, SOA suite 11.1.1.3 and JDev 11.1.1.3 .
    This is what I see from the EM....
    Non Recoverable System Fault :
    javaInterface attribute for the binding is missing or the inteface class is not available.
    Below is a part of the stack trace from the soa server log…
    Caused By: oracle.classloader.util.AnnotatedClassNotFoundException:
    Missing class: com.abc.GreetingEJBBean
    Dependent class: oracle.integration.platform.blocks.ejb.SDOEjbReferenceD
    elegateImpl
    Loader: sun.misc.Launcher$AppClassLoader@20929799
    Code-Source: /C:/Oracle_latest/Middleware/home_11gR1/Oracle_SOA1/soa
    /modules/oracle.soa.fabric_11.1.1/fabric-runtime.jar
    Configuration: /C:/Oracle_latest/Middleware/home_11gR1/Oracle_SOA1/soa
    /modules/oracle.soa.fabric_11.1.1/fabric-runtime.jar
    Piece of xml from the composite.xml
    <reference name="GreetingService"
    ui:wsdlLocation="http://123.45.218.140:7001/GreetingEJBBean/GreetingEJBBeanService?wsdl">
    <interface.wsdl interface="http://abc.com/#wsdl.interface(GreetingEJBBean)" />
    <binding.ejb uri="GreetingEJB-GreetingEJB-GreetingEJB"
    javaInterface="com.abc.GreetingEJB"/>
    </reference>
    Looks like its not able to find the javaInterface mentioned above.
    I have a simple EJB with one business method and a very simple BPEL process.
    @Stateless(name = "GreetingEJB", mappedName = "GreetingEJB-GreetingEJB-GreetingEJB")
    @WebService
    public class GreetingEJBBean implements GreetingEJB {
    public GreetingEJBBean() {
    public String greetUser(String name){
    return ("Hello " + name);
    Any help would be greatly appreciated.

    I haven't tried from a BPEL process, but I have had success (as in Lucas's blogs) of using services and references as EJB Java Interface. This is with EJB java interfaces solely of base types (i.e. String foo(String s)).
    At high level here's what I have noted so far:
    1. Per Lucas's blog, @javaInterface is not being added to the ejb.binding automatically but it's not clear to me when this is and is not required given that interface.java is specified for the reference or service. Would interface.java and @javaInterface ever be different? I've been adding @javaInterface manually anyways since Lucas is a smart guy and I'd rather avoid errors. :-)
    2. Dropping an EJB interface jar in SCA-INF/lib works, but I've had the problem that the JDeveloper SOA Plugin doesn't see those classes until I stop and restart JDeveloper. Until then, I'm confronted with the java->wsdl mapping error. I was sort of primed to figure this one out since I ran into similar issues with SOA SpringBean components.
    3. Dropping EJB interface source in SCA-INF/src is more reliable, because then I can build the project (i.e. create SCA-INF/classes) and the JDeveloper SOA Plugin seems to resolve these brand new classes immediately.
    4. I've tried to invoke an EJB java-interface reference with a slightly complicated java interface (a class parameter with some fields, one of which is an array of another class). The auto-generated WSDL doesn't look exactly right to me (but I'm new to JAXB). Mediator maps to it just fine and the project compiles and deploys normally but fails at runtime. I have not researched in depth. It's not clear to me from the documentation and release notes whether I should expect for it to work, or whether I should expect to have to create my own JAXB mapping. If the latter, I really need a good example!

  • What is the proper SQL syntax for dates input as variable

    Hello,
    I am working on an ASP JavaScript page that requests totals
    from an Access database for a specific date range. I can write the
    SQL statement to query the DB and get the results I need using the
    WHERE statement below.
    ...WHERE LABOR_DATE BETWEEN #7/15/2006# AND #7/18/2006# GROUP
    BY [LABOR].[JOB_NUMBER_NAME]
    I have another page that I want to pass two variables in
    Dreamweaver specifying the date range varBeginDate and varEndDate
    and query the database using the date range input by the user.
    What is the correct syntax for replacing the actual dates in
    the example above with my variable values?

    Short answer - you can't. There's no automatic link between file paths and mounting servers. There are lots of valid reasons for this (e.g. preventing malicious links from automatically opening files from remote servers), but you can get there in a controlled environment.
    You can configure Automounts on any directory. That way whenever any application tries to access a particular path the OS will automatically mount the directory, but it needs to be told in advance which directories (and which servers) to mount.
    For example, if you'd configured your iTunes Library to be saved at /mnt/itunes and it's served from afp://mediaserver.your.net/path/to/itunes you would configure an automount to mount the AFP server at /mnt/itunes.
    Since its an automount, the OS wouldn't mount the server until some process tried to read /mnt/itunes.
    There are several ways of specifying automounts, and for each there are several tutorials online that walk you through the process. Try Mike Bombich's site for a starter.

  • Distinguish where a process is invoked from

    Hi there,
    I have a request for a new feature in ES Next:
    It would be great if it was possible to distinguish where a process was invoked from, I mean, from which start point (or endpoint) it has been invoked. When you play a process recording (in ES2) it always looks like the process has been invoked from all start points.
    Sincerely
    Kim Christensen
    Dafolo A/S

    VOICE calls will show that information (origination and destination of voice calls by city and state), but I've never seen that level of information on text messages - just dates, times, and the numbers that the texts were sent to and from.
    If the information is available, I don't know how to access it....anyone else know?

  • What is the setVariable syntax for AS3

    Hi,
    I am having issues with setting a variable in AS3 SWF playing inside a Dir12
    spriteObjRef.setVariable(variableName, newValue)
    In the context of ActionScript 3, this method is only supported on a Flash object, not on a
    spriteObjectRef.
    What would the Flash Object syntax be??
    Thanks,
    Jim

    Jusclark-Oracle wrote:
    What is the correct syntax for referencing a page item (P23_ID, for example) in a PL/SQL page process, after submit?
    See "About Referencing Session State" in the documentation.
    Within an anonymous block in an APEX page process, use the standard bind variable syntax:
    :P23_ID
    In general, use bind variable syntax when referencing session state values in SQL or DML:
    select
        ename
    into
        :p23_name
    from
        emp
    where
        empno = to_number(:p23_id);
    and obviously when assigning values to the item:
    :P23_ID := foo.nextval;
    PL/SQL function references v('p23_id') and nv('p23_id') [for number values] must be used to access values in stored program units called from APEX, although it's usually better to pass the values as parameters: foo(:p23_id).

  • When I click on a saved document or spreadsheet, I get this message You need a newer version of Numbers to open this document.  When I go Software update, there is no update for pages or numbers.  can't purchase or update?

    when I click on a saved document or spreadsheet, I get this message 'You need a newer version of Numbers to open this document'.  When I go Software update, there is no update for pages or numbers.  can't purchase or update?
    Trying re-purchasing.  won't let me.  says to check for updates?
    any suggestions

    It sounds to me as though you are attempting to open a Pages 09 document with the Pages 08 application. If you do have Pages 09 on your computer, it may be that for some reason an existing Pages 08 application is invoked accidentally.
    Jerry

  • My Safari is quitting unexpectedly for the last 2 days. The report I get is Process:         Safari [386] Path:            /Applications/Safari.app/Contents/MacOS/Safari Identifier:      com.apple.Safari Ve

    My Safari has been quitting for the last 2 days. The report I get is as follows. I would be grateful for any help.
    Process:         Safari [386]
    Path:            /Applications/Safari.app/Contents/MacOS/Safari
    Identifier:      com.apple.Safari
    Version:         5.1.10 (6534.59.10)
    Build Info:      WebBrowser-75345910~1
    Code Type:       X86-64 (Native)
    Parent Process:  launchd [95]
    Date/Time:       2013-12-05 22:59:31.207 -0500
    OS Version:      Mac OS X 10.6.8 (10K549)
    Report Version:  6
    Interval Since Last Report:          4324 sec
    Crashes Since Last Report:           3
    Per-App Interval Since Last Report:  32 sec
    Per-App Crashes Since Last Report:   3
    Anonymous UUID:                      7DC5ED9E-BFB1-44E7-99F1-5474E81F2DAE
    Exception Type:  EXC_BAD_ACCESS (SIGSEGV)
    Exception Codes: KERN_INVALID_ADDRESS at 0x0000000000000018
    Crashed Thread:  3  WebCore: IconDatabase
    Thread 0:  Dispatch queue: com.apple.main-thread
    0   libSystem.B.dylib                       0x00007fff80003d7a mach_msg_trap + 10
    1   libSystem.B.dylib                       0x00007fff800043ed mach_msg + 59
    2   com.apple.CoreFoundation                0x00007fff83f90902 __CFRunLoopRun + 1698
    3   com.apple.CoreFoundation                0x00007fff83f8fd8f CFRunLoopRunSpecific + 575
    4   com.apple.HIToolbox                     0x00007fff863a27ee RunCurrentEventLoopInMode + 333
    5   com.apple.HIToolbox                     0x00007fff863a25f3 ReceiveNextEventCommon + 310
    6   com.apple.HIToolbox                     0x00007fff863a24ac BlockUntilNextEventMatchingListInMode + 59
    7   com.apple.AppKit                        0x00007fff87b97eb2 _DPSNextEvent + 708
    8   com.apple.AppKit                        0x00007fff87b97801 -[NSApplication nextEventMatchingMask:untilDate:inMode:dequeue:] + 155
    9   com.apple.Safari.framework              0x00007fff8589995c -[BrowserApplication nextEventMatchingMask:untilDate:inMode:dequeue:] + 177
    10  com.apple.AppKit                        0x00007fff87b5d68f -[NSApplication run] + 395
    11  com.apple.AppKit                        0x00007fff87b563b0 NSApplicationMain + 364
    12  com.apple.Safari.framework              0x00007fff85a5a56a SafariMain + 200
    13  com.apple.Safari                        0x0000000100000f1c 0x100000000 + 3868
    Thread 1:  Dispatch queue: com.apple.libdispatch-manager
    0   libSystem.B.dylib                       0x00007fff8001cc0a kevent + 10
    1   libSystem.B.dylib                       0x00007fff8001eadd _dispatch_mgr_invoke + 154
    2   libSystem.B.dylib                       0x00007fff8001e7b4 _dispatch_queue_invoke + 185
    3   libSystem.B.dylib                       0x00007fff8001e2de _dispatch_worker_thread2 + 252
    4   libSystem.B.dylib                       0x00007fff8001dc08 _pthread_wqthread + 353
    5   libSystem.B.dylib                       0x00007fff8001daa5 start_wqthread + 13
    Thread 2:
    0   libSystem.B.dylib                       0x00007fff8001da2a __workq_kernreturn + 10
    1   libSystem.B.dylib                       0x00007fff8001de3c _pthread_wqthread + 917
    2   libSystem.B.dylib                       0x00007fff8001daa5 start_wqthread + 13
    Thread 3 Crashed:  WebCore: IconDatabase
    0   com.apple.WebCore                       0x00007fff8362949d bool ***::HashTable<***::String, std::pair<***::String, WebCore::PageURLRecord*>, ***::PairFirstExtractor<std::pair<***::String, WebCore::PageURLRecord*> >, ***::StringHash, ***::PairHashTraits<***::HashTraits<***::String>, ***::HashTraits<WebCore::PageURLRecord*> >, ***::HashTraits<***::String> >::contains<***::IdentityHashTranslator<***::StringHash>, ***::String>(***::String const&) const + 45
    1   com.apple.WebCore                       0x00007fff82c6395b WebCore::IconDatabase::pruneUnretainedIcons() + 331
    2   com.apple.WebCore                       0x00007fff82c4c1fa WebCore::IconDatabase::syncThreadMainLoop() + 362
    3   com.apple.WebCore                       0x00007fff82c49598 WebCore::IconDatabase::iconDatabaseSyncThread() + 296
    4   libSystem.B.dylib                       0x00007fff8003cfd6 _pthread_start + 331
    5   libSystem.B.dylib                       0x00007fff8003ce89 thread_start + 13
    Thread 4:
    0   libSystem.B.dylib                       0x00007fff8001da2a __workq_kernreturn + 10
    1   libSystem.B.dylib                       0x00007fff8001de3c _pthread_wqthread + 917
    2   libSystem.B.dylib                       0x00007fff8001daa5 start_wqthread + 13
    Thread 5:
    0   libSystem.B.dylib                       0x00007fff80003d7a mach_msg_trap + 10
    1   libSystem.B.dylib                       0x00007fff800043ed mach_msg + 59
    2   com.apple.QuartzCore                    0x00007fff89aa6396 CA::Render::Server::server_thread(void*) + 177
    3   com.apple.QuartzCore                    0x00007fff89aa62d6 thread_fun + 34
    4   libSystem.B.dylib                       0x00007fff8003cfd6 _pthread_start + 331
    5   libSystem.B.dylib                       0x00007fff8003ce89 thread_start + 13
    Thread 6:
    0   libSystem.B.dylib                       0x00007fff80003d7a mach_msg_trap + 10
    1   libSystem.B.dylib                       0x00007fff800043ed mach_msg + 59
    2   com.apple.CoreFoundation                0x00007fff83f90902 __CFRunLoopRun + 1698
    3   com.apple.CoreFoundation                0x00007fff83f8fd8f CFRunLoopRunSpecific + 575
    4   com.apple.Foundation                    0x00007fff897c914f +[NSURLConnection(NSURLConnectionReallyInternal) _resourceLoadLoop:] + 297
    5   com.apple.Foundation                    0x00007fff8974a114 __NSThread__main__ + 1429
    6   libSystem.B.dylib                       0x00007fff8003cfd6 _pthread_start + 331
    7   libSystem.B.dylib                       0x00007fff8003ce89 thread_start + 13
    Thread 7:  Safari: SafeBrowsingManager
    0   libSystem.B.dylib                       0x00007fff80045aea pread + 10
    1   libsqlite3.dylib                        0x00007fff8148509c unixRead + 44
    2   libsqlite3.dylib                        0x00007fff81488ec0 sqlite3PagerAcquire + 1312
    3   libsqlite3.dylib                        0x00007fff8149d22c checkTreePage + 252
    4   libsqlite3.dylib                        0x00007fff8149d321 checkTreePage + 497
    5   libsqlite3.dylib                        0x00007fff8149d321 checkTreePage + 497
    6   libsqlite3.dylib                        0x00007fff814fbeed sqlite3VdbeExec + 31725
    7   libsqlite3.dylib                        0x00007fff814ff798 sqlite3_step + 1384
    8   com.apple.Safari.framework              0x00007fff85a97b6e Safari::SQLiteStatement::step() + 28
    9   com.apple.Safari.framework              0x00007fff85a6817f Safari::SafeBrowsingStore::checkIntegrity() + 51
    10  com.apple.Safari.framework              0x00007fff85a68598 Safari::SafeBrowsingStore::initDatabase() + 104
    11  com.apple.Safari.framework              0x00007fff85a68642 Safari::SafeBrowsingStore::getListID(Safari::SString const&, int&) + 38
    12  com.apple.Safari.framework              0x00007fff85a686db Safari::SafeBrowsingStore::addList(Safari::SString const&) + 35
    13  com.apple.Safari.framework              0x00007fff85a60991 Safari::SafeBrowsingListManager::SafeBrowsingListManager(Safari::SafeBrowsingSe rvice&, ***::Vector<Safari::SString, 0ul> const&, Safari::SString const&, Safari::SString const&) + 433
    14  com.apple.Safari.framework              0x00007fff85a60d98 Safari::SafeBrowsingListManager::create(Safari::SafeBrowsingService&, ***::Vector<Safari::SString, 0ul> const&, Safari::SString const&, Safari::SString const&) + 78
    15  com.apple.Safari.framework              0x00007fff85a66b9f Safari::SafeBrowsingService::didReceiveListNames(***::Vector<Safari::SString, 0ul> const&) + 35
    16  com.apple.Safari.framework              0x00007fff859d858a Safari::GoogleSafeBrowsingService::initialize() + 294
    17  com.apple.Safari.framework              0x00007fff85a6254e Safari::SafeBrowsingManager::addGoogleSafeBrowsingService() + 122
    18  com.apple.Safari.framework              0x00007fff85a6272e Safari::SafeBrowsingManager::handleMessage(Safari::SafeBrowsingManager::SafeBro wsingMessage*) + 202
    19  com.apple.Safari.framework              0x00007fff85a119b3 Safari::MessageRunLoop::dispatchMessage() + 49
    20  com.apple.CoreFoundation                0x00007fff83f923d1 __CFRunLoopDoSources0 + 1361
    21  com.apple.CoreFoundation                0x00007fff83f905c9 __CFRunLoopRun + 873
    22  com.apple.CoreFoundation                0x00007fff83f8fd8f CFRunLoopRunSpecific + 575
    23  com.apple.Safari.framework              0x00007fff85a118e5 Safari::MessageRunLoop::threadBody() + 107
    24  com.apple.Safari.framework              0x00007fff85a1191f Safari::MessageRunLoop::threadCallback(void*) + 9
    25  libSystem.B.dylib                       0x00007fff8003cfd6 _pthread_start + 331
    26  libSystem.B.dylib                       0x00007fff8003ce89 thread_start + 13
    Thread 8:
    0   libSystem.B.dylib                       0x00007fff8003ea6a __semwait_signal + 10
    1   libSystem.B.dylib                       0x00007fff80042881 _pthread_cond_wait + 1286
    2   com.apple.CoreVideo                     0x00007fff83cb1342 CVDisplayLink::runIOThread() + 804
    3   com.apple.CoreVideo                     0x00007fff83cb0fe3 startIOThread(void*) + 139
    4   libSystem.B.dylib                       0x00007fff8003cfd6 _pthread_start + 331
    5   libSystem.B.dylib                       0x00007fff8003ce89 thread_start + 13
    Thread 9:  Safari: SnapshotStore
    0   libSystem.B.dylib                       0x00007fff8003ea6a __semwait_signal + 10
    1   libSystem.B.dylib                       0x00007fff80042881 _pthread_cond_wait + 1286
    2   com.apple.JavaScriptCore                0x00007fff8239d650 ***::ThreadCondition::timedWait(***::Mutex&, double) + 64
    3   com.apple.Safari.framework              0x00007fff85a8e14b Safari::MessageQueueWaitResult Safari::MessageQueue<***::RefPtr<Safari::SnapshotStore::DiskAccessMessage> >::waitForMessageFilteredWithTimeout<bool ()(***::RefPtr<Safari::SnapshotStore::DiskAccessMessage>&)>(***::RefPtr<Safari: :SnapshotStore::DiskAccessMessage>&, bool (&)(***::RefPtr<Safari::SnapshotStore::DiskAccessMessage>&), double) + 149
    4   com.apple.Safari.framework              0x00007fff85a8c5bd Safari::SnapshotStore::diskAccessThreadBody() + 115
    5   com.apple.Safari.framework              0x00007fff85a8c73d Safari::SnapshotStore::diskAccessThreadCallback(void*) + 9
    6   libSystem.B.dylib                       0x00007fff8003cfd6 _pthread_start + 331
    7   libSystem.B.dylib                       0x00007fff8003ce89 thread_start + 13
    Thread 3 crashed with X86 Thread State (64-bit):
      rax: 0x0000000000001fff  rbx: 0x0000000100368380  rcx: 0x000000010051ce98  rdx: 0x00000000ffffffff
      rdi: 0x0000000100335950  rsi: 0x00000001007c0dd0  rbp: 0x00000001007c0cd0  rsp: 0x00000001007c0c90
       r8: 0x0000000100335900   r9: 0x0000000000000000  r10: 0x0000000000000000  r11: 0x0000000000000000
      r12: 0x0000000000000001  r13: 0x00000001003358f8  r14: 0x0000000100335800  r15: 0x000000010be00000
      rip: 0x00007fff8362949d  rfl: 0x0000000000010206  cr2: 0x0000000000000018
    Binary Images:
           0x100000000 -        0x100000fff  com.apple.Safari 5.1.10 (6534.59.10) <E9B93F8E-359B-6C7E-E1D5-6415B49BBB03> /Applications/Safari.app/Contents/MacOS/Safari
           0x10c580000 -        0x10c713fe7  GLEngine ??? (???) <BCE83654-81EC-D231-ED6E-1DD449B891F2> /System/Library/Frameworks/OpenGL.framework/Resources/GLEngine.bundle/GLEngine
           0x10c79a000 -        0x10c7c0fff  GLRendererFloat ??? (???) <38621D22-8F49-F937-851B-E21BD49A8A88> /System/Library/Frameworks/OpenGL.framework/Resources/GLRendererFloat.bundle/GL RendererFloat
           0x10e87f000 -        0x10eca2fef  libclh.dylib 3.1.1 C  (3.1.1) <432F5475-F934-92A0-FB49-78F03DA82176> /System/Library/Extensions/GeForceGLDriver.bundle/Contents/MacOS/libclh.dylib
           0x200000000 -        0x200787fe7  com.apple.GeForceGLDriver 1.6.36 (6.3.6) <4F23289A-D45A-0630-8D7F-4C35A4D2AA00> /System/Library/Extensions/GeForceGLDriver.bundle/Contents/MacOS/GeForceGLDrive r
        0x7fff5fc00000 -     0x7fff5fc3be0f  dyld 132.1 (???) <29DECB19-0193-2575-D838-CF743F0400B2> /usr/lib/dyld
        0x7fff80003000 -     0x7fff801c4fef  libSystem.B.dylib 125.2.11 (compatibility 1.0.0) <9AB4F1D1-89DC-0E8A-DC8E-A4FE4D69DB69> /usr/lib/libSystem.B.dylib
        0x7fff801c5000 -     0x7fff8044eff7  com.apple.security 6.1.2 (55002) <D224882B-D57B-83AF-3781-548BCEACB327> /System/Library/Frameworks/Security.framework/Versions/A/Security
        0x7fff8044f000 -     0x7fff80477fff  com.apple.DictionaryServices 1.1.2 (1.1.2) <E9269069-93FA-2B71-F9BA-FDDD23C4A65E> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Diction aryServices.framework/Versions/A/DictionaryServices
        0x7fff804bb000 -     0x7fff804c9ff7  libkxld.dylib ??? (???) <8145A534-95CC-9F3C-B78B-AC9898F38C6F> /usr/lib/system/libkxld.dylib
        0x7fff804ca000 -     0x7fff80509ff7  libssl.0.9.8.dylib 0.9.8 (compatibility 0.9.8) <B2E93DEC-2F33-366A-995C-ACA0523D508F> /usr/lib/libssl.0.9.8.dylib
        0x7fff8065a000 -     0x7fff80710ff7  libobjc.A.dylib 227.0.0 (compatibility 1.0.0) <03140531-3B2D-1EBA-DA7F-E12CC8F63969> /usr/lib/libobjc.A.dylib
        0x7fff80711000 -     0x7fff80734fff  com.apple.opencl 12.3.6 (12.3.6) <42FA5783-EB80-1168-4015-B8C68F55842F> /System/Library/Frameworks/OpenCL.framework/Versions/A/OpenCL
        0x7fff807d3000 -     0x7fff80993fe7  com.apple.WebKit2 6534.59 (6534.59.10) <61029ECF-E501-D530-C98A-AB9AAB9FF257> /System/Library/PrivateFrameworks/WebKit2.framework/Versions/A/WebKit2
        0x7fff80994000 -     0x7fff809eafe7  libTIFF.dylib ??? (???) <2DBEC120-DAA7-3789-36A2-A205BCDF2D72> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libTIFF.dylib
        0x7fff809eb000 -     0x7fff809fcff7  libz.1.dylib 1.2.3 (compatibility 1.0.0) <97019C74-161A-3488-41EC-A6CA8738418C> /usr/lib/libz.1.dylib
        0x7fff809fd000 -     0x7fff80e44fef  com.apple.RawCamera.bundle 3.7.1 (570) <5AFA87CA-DC3D-F84E-7EA1-6EABA8807766> /System/Library/CoreServices/RawCamera.bundle/Contents/MacOS/RawCamera
        0x7fff80e45000 -     0x7fff80ec3ff7  com.apple.CoreText 151.13 (???) <5C6214AD-D683-80A8-86EB-328C99B75322> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreText.framework/Versions/A/CoreText
        0x7fff80ec4000 -     0x7fff80ec4ff7  com.apple.ApplicationServices 38 (38) <10A0B9E9-4988-03D4-FC56-DDE231A02C63> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Application Services
        0x7fff80f15000 -     0x7fff80f3cff7  libJPEG.dylib ??? (???) <08758593-6436-B29E-1DA8-F15597835EC1> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libJPEG.dylib
        0x7fff81047000 -     0x7fff81124fff  com.apple.vImage 4.1 (4.1) <C3F44AA9-6F71-0684-2686-D3BBC903F020> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vImage.fr amework/Versions/A/vImage
        0x7fff81326000 -     0x7fff8133cfef  libbsm.0.dylib ??? (???) <42D3023A-A1F7-4121-6417-FCC6B51B3E90> /usr/lib/libbsm.0.dylib
        0x7fff8133d000 -     0x7fff813bcfe7  com.apple.audio.CoreAudio 3.2.6 (3.2.6) <79E256EB-43F1-C7AA-6436-124A4FFB02D0> /System/Library/Frameworks/CoreAudio.framework/Versions/A/CoreAudio
        0x7fff81473000 -     0x7fff8152cfff  libsqlite3.dylib 9.6.0 (compatibility 9.0.0) <2C5ED312-E646-9ADE-73A9-6199A2A43150> /usr/lib/libsqlite3.dylib
        0x7fff81568000 -     0x7fff81568ff7  com.apple.CoreServices 44 (44) <DC7400FB-851E-7B8A-5BF6-6F50094302FB> /System/Library/Frameworks/CoreServices.framework/Versions/A/CoreServices
        0x7fff817ba000 -     0x7fff817c1fff  com.apple.OpenDirectory 10.6 (10.6) <4FF6AD25-0916-B21C-9E88-2CC42D90EAC7> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/OpenDirectory
        0x7fff817c2000 -     0x7fff81805ff7  libRIP.A.dylib 545.0.0 (compatibility 64.0.0) <5FF3D7FD-84D8-C5FA-D640-90BB82EC651D> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libRIP.A.dylib
        0x7fff81d94000 -     0x7fff81d99ff7  com.apple.CommonPanels 1.2.4 (91) <4D84803B-BD06-D80E-15AE-EFBE43F93605> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CommonPanels. framework/Versions/A/CommonPanels
        0x7fff81d9a000 -     0x7fff81d9aff7  com.apple.Accelerate 1.6 (Accelerate 1.6) <15DF8B4A-96B2-CB4E-368D-DEC7DF6B62BB> /System/Library/Frameworks/Accelerate.framework/Versions/A/Accelerate
        0x7fff81d9b000 -     0x7fff81d9cff7  com.apple.audio.units.AudioUnit 1.6.7 (1.6.7) <49B723D1-85F8-F86C-2331-F586C56D68AF> /System/Library/Frameworks/AudioUnit.framework/Versions/A/AudioUnit
        0x7fff81d9d000 -     0x7fff81ddefff  com.apple.SystemConfiguration 1.10.8 (1.10.2) <78D48D27-A9C4-62CA-2803-D0BBED82855A> /System/Library/Frameworks/SystemConfiguration.framework/Versions/A/SystemConfi guration
        0x7fff81ddf000 -     0x7fff81df0fff  SyndicationUI ??? (???) <A7C60837-3B4F-ACDE-5B7B-63DA918763D0> /System/Library/PrivateFrameworks/SyndicationUI.framework/Versions/A/Syndicatio nUI
        0x7fff81e84000 -     0x7fff81e89fff  libGFXShared.dylib ??? (???) <6BBC351E-40B3-F4EB-2F35-05BDE52AF87E> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGFXShared.d ylib
        0x7fff81e8a000 -     0x7fff81e8bfff  liblangid.dylib ??? (???) <EA4D1607-2BD5-2EE2-2A3B-632EEE5A444D> /usr/lib/liblangid.dylib
        0x7fff82393000 -     0x7fff826b5fff  com.apple.JavaScriptCore 6534.59 (6534.59.11) <992F7C39-0ADA-C5EF-0405-55F81A5B2F76> /System/Library/Frameworks/JavaScriptCore.framework/Versions/A/JavaScriptCore
        0x7fff826f3000 -     0x7fff82748ff7  com.apple.framework.familycontrols 2.0.2 (2020) <8807EB96-D12D-8601-2E74-25784A0DE4FF> /System/Library/PrivateFrameworks/FamilyControls.framework/Versions/A/FamilyCon trols
        0x7fff82749000 -     0x7fff82a7dfef  com.apple.CoreServices.CarbonCore 861.39 (861.39) <1386A24D-DD15-5903-057E-4A224FAF580B> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonC ore.framework/Versions/A/CarbonCore
        0x7fff82a7e000 -     0x7fff82a94fe7  com.apple.MultitouchSupport.framework 207.11 (207.11) <8233CE71-6F8D-8B3C-A0E1-E123F6406163> /System/Library/PrivateFrameworks/MultitouchSupport.framework/Versions/A/Multit ouchSupport
        0x7fff82a9b000 -     0x7fff82b80fef  com.apple.DesktopServices 1.5.11 (1.5.11) <39FAA3D2-6863-B5AB-AED9-92D878EA2438> /System/Library/PrivateFrameworks/DesktopServicesPriv.framework/Versions/A/Desk topServicesPriv
        0x7fff82b81000 -     0x7fff82c43fe7  libFontParser.dylib ??? (???) <EF06F16C-0CC9-B4CA-7BD9-0A97FA967340> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/libFontParser.dylib
        0x7fff82c44000 -     0x7fff83caefff  com.apple.WebCore 6534.59 (6534.59.6) <24B753DC-1FD4-FFCC-5F66-44799244A125> /System/Library/Frameworks/WebKit.framework/Versions/A/Frameworks/WebCore.frame work/Versions/A/WebCore
        0x7fff83caf000 -     0x7fff83cd4ff7  com.apple.CoreVideo 1.6.2 (45.6) <E138C8E7-3CB6-55A9-0A2C-B73FE63EA288> /System/Library/Frameworks/CoreVideo.framework/Versions/A/CoreVideo
        0x7fff83ce7000 -     0x7fff83d47fe7  com.apple.framework.IOKit 2.0 (???) <4F071EF0-8260-01E9-C641-830E582FA416> /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit
        0x7fff83d79000 -     0x7fff83d7fff7  com.apple.DiskArbitration 2.3 (2.3) <857F6E43-1EF4-7D53-351B-10DE0A8F992A> /System/Library/Frameworks/DiskArbitration.framework/Versions/A/DiskArbitration
        0x7fff83db0000 -     0x7fff83dc4ff7  com.apple.speech.synthesis.framework 3.10.35 (3.10.35) <621B7415-A0B9-07A7-F313-36BEEDD7B132> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ SpeechSynthesis.framework/Versions/A/SpeechSynthesis
        0x7fff83ebd000 -     0x7fff83f04ff7  com.apple.coreui 2 (114) <923E33CC-83FC-7D35-5603-FB8F348EE34B> /System/Library/PrivateFrameworks/CoreUI.framework/Versions/A/CoreUI
        0x7fff83f05000 -     0x7fff83f43fe7  libFontRegistry.dylib ??? (???) <395D7C0D-36B5-B353-0DC8-51ABC0B1C030> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/libFontRegistry.dylib
        0x7fff83f44000 -     0x7fff840bbfe7  com.apple.CoreFoundation 6.6.6 (550.44) <BB4E5158-E47A-39D3-2561-96CB49FA82D4> /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
        0x7fff840bc000 -     0x7fff844fffef  libLAPACK.dylib 219.0.0 (compatibility 1.0.0) <0CC61C98-FF51-67B3-F3D8-C5E430C201A9> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libLAPACK.dylib
        0x7fff84661000 -     0x7fff84664fff  com.apple.help 1.3.2 (41.1) <BD1B0A22-1CB8-263E-FF85-5BBFDE3660B9> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Help.framewor k/Versions/A/Help
        0x7fff84665000 -     0x7fff8479afff  com.apple.audio.toolbox.AudioToolbox 1.6.7 (1.6.7) <F4814A13-E557-59AF-30FF-E62929367933> /System/Library/Frameworks/AudioToolbox.framework/Versions/A/AudioToolbox
        0x7fff8479b000 -     0x7fff84805fe7  libvMisc.dylib 268.0.1 (compatibility 1.0.0) <AF0EA96D-000F-8C12-B952-CB7E00566E08> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvMisc.dylib
        0x7fff84830000 -     0x7fff849d2fe7  com.apple.WebKit 6534.59 (6534.59.10) <5F60FC29-1962-988F-96D1-A72A61F8C4EB> /System/Library/Frameworks/WebKit.framework/Versions/A/WebKit
        0x7fff84d1c000 -     0x7fff84e20ff7  com.apple.PubSub 1.0.5 (65.28) <87EB5C5F-E4E2-E4FD-70EE-773B3A40ABCD> /System/Library/Frameworks/PubSub.framework/Versions/A/PubSub
        0x7fff84e80000 -     0x7fff84f54fe7  com.apple.CFNetwork 454.12.4 (454.12.4) <C83E2BA1-1818-B3E8-5334-860AD21D1C80> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CFNetwo rk.framework/Versions/A/CFNetwork
        0x7fff84f55000 -     0x7fff85651ff7  com.apple.CoreGraphics 1.545.0 (???) <58D597B1-EB3B-710E-0B8C-EC114D54E11B> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/CoreGraphics
        0x7fff857ef000 -     0x7fff85838fef  libGLU.dylib ??? (???) <B0F4CA55-445F-E901-0FCF-47B3B4BAE6E2> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLU.dylib
        0x7fff85839000 -     0x7fff86079fe7  com.apple.Safari.framework 6534 (6534.59.10) <994DD15D-D620-7FEB-C912-1FF3086942AD> /System/Library/PrivateFrameworks/Safari.framework/Versions/A/Safari
        0x7fff862bf000 -     0x7fff862caff7  com.apple.speech.recognition.framework 3.11.1 (3.11.1) <3D65E89B-FFC6-4AAF-D5CC-104F967C8131> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SpeechRecogni tion.framework/Versions/A/SpeechRecognition
        0x7fff86374000 -     0x7fff86672fff  com.apple.HIToolbox 1.6.5 (???) <AD1C18F6-51CB-7E39-35DD-F16B1EB978A8> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.fra mework/Versions/A/HIToolbox
        0x7fff8682a000 -     0x7fff86949ff7  libcrypto.0.9.8.dylib 0.9.8 (compatibility 0.9.8) <0CE8D59B-D0C7-1DCE-3654-37F27F61BEFA> /usr/lib/libcrypto.0.9.8.dylib
        0x7fff8694a000 -     0x7fff8695fff7  com.apple.LangAnalysis 1.6.6 (1.6.6) <1AE1FE8F-2204-4410-C94E-0E93B003BEDA> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ LangAnalysis.framework/Versions/A/LangAnalysis
        0x7fff86960000 -     0x7fff86a7afff  libGLProgrammability.dylib ??? (???) <D1650AED-02EF-EFB3-100E-064C7F018745> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLProgramma bility.dylib
        0x7fff86a7e000 -     0x7fff86a97fff  com.apple.CFOpenDirectory 10.6 (10.6) <401557B1-C6D1-7E1A-0D7E-941715C37BFA> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/Frameworks/CFOpen Directory.framework/Versions/A/CFOpenDirectory
        0x7fff86ab3000 -     0x7fff872bdfe7  libBLAS.dylib 219.0.0 (compatibility 1.0.0) <FC941ECB-71D0-FAE3-DCBF-C5A619E594B8> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libBLAS.dylib
        0x7fff872be000 -     0x7fff872beff7  com.apple.Cocoa 6.6 (???) <68B0BE46-6E24-C96F-B341-054CF9E8F3B6> /System/Library/Frameworks/Cocoa.framework/Versions/A/Cocoa
        0x7fff872bf000 -     0x7fff872c5ff7  IOSurface ??? (???) <8E302BB2-0704-C6AB-BD2F-C2A6C6A2E2C3> /System/Library/Frameworks/IOSurface.framework/Versions/A/IOSurface
        0x7fff872c6000 -     0x7fff872c6ff7  com.apple.vecLib 3.6 (vecLib 3.6) <96FB6BAD-5568-C4E0-6FA7-02791A58B584> /System/Library/Frameworks/vecLib.framework/Versions/A/vecLib
        0x7fff872d1000 -     0x7fff872e8fff  com.apple.ImageCapture 6.1 (6.1) <79AB2131-2A6C-F351-38A9-ED58B25534FD> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/ImageCapture. framework/Versions/A/ImageCapture
        0x7fff8730a000 -     0x7fff87420ff7  libxml2.2.dylib 10.3.0 (compatibility 10.0.0) <3814FCF9-92B9-A6AB-E76A-F7021894AA3F> /usr/lib/libxml2.2.dylib
        0x7fff87421000 -     0x7fff874adfef  SecurityFoundation ??? (???) <3F1F2727-C508-3630-E2C1-38361841FCE4> /System/Library/Frameworks/SecurityFoundation.framework/Versions/A/SecurityFoun dation
        0x7fff874e6000 -     0x7fff874ecfff  libCGXCoreImage.A.dylib 545.0.0 (compatibility 64.0.0) <D2F8C7E3-CBA1-2E66-1376-04AA839DABBB> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCGXCoreImage.A.dylib
        0x7fff874ed000 -     0x7fff87537ff7  com.apple.Metadata 10.6.3 (507.15) <DE238BE4-5E22-C4D5-CF5C-3D50FDEE4701> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Metadat a.framework/Versions/A/Metadata
        0x7fff87538000 -     0x7fff8757bfef  libtidy.A.dylib ??? (???) <2F4273D3-418B-668C-F488-7E659D3A8C23> /usr/lib/libtidy.A.dylib
        0x7fff87648000 -     0x7fff8765cfff  libGL.dylib ??? (???) <2ECE3B0F-39E1-3938-BF27-7205C6D0358B> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib
        0x7fff8765d000 -     0x7fff87661ff7  libCGXType.A.dylib 545.0.0 (compatibility 64.0.0) <DB710299-B4D9-3714-66F7-5D2964DE585B> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCGXType.A.dylib
        0x7fff877d3000 -     0x7fff87894fef  com.apple.ColorSync 4.6.8 (4.6.8) <7DF1D175-6451-51A2-DBBF-40FCA78C0D2C> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ColorSync.framework/Versions/A/ColorSync
        0x7fff87895000 -     0x7fff878c6fff  libGLImage.dylib ??? (???) <562565E1-AA65-FE96-13FF-437410C886D0> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLImage.dyl ib
        0x7fff878c7000 -     0x7fff878d3fff  libbz2.1.0.dylib 1.0.5 (compatibility 1.0.0) <9AB864FA-9197-5D48-A0EC-EC8330D475FC> /usr/lib/libbz2.1.0.dylib
        0x7fff878d4000 -     0x7fff878f5fe7  libPng.dylib ??? (???) <D8EC7740-EE32-865A-2F75-C9EDE2135510> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libPng.dylib
        0x7fff878f6000 -     0x7fff8793eff7  libvDSP.dylib 268.0.1 (compatibility 1.0.0) <98FC4457-F405-0262-00F7-56119CA107B6> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvDSP.dylib
        0x7fff8793f000 -     0x7fff8794cfe7  libCSync.A.dylib 545.0.0 (compatibility 64.0.0) <1C35FA50-9C70-48DC-9E8D-2054F7A266B1> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCSync.A.dylib
        0x7fff8794d000 -     0x7fff879fdfff  edu.mit.Kerberos 6.5.11 (6.5.11) <085D80F5-C9DC-E252-C21B-03295E660C91> /System/Library/Frameworks/Kerberos.framework/Versions/A/Kerberos
        0x7fff879fe000 -     0x7fff87a04ff7  com.apple.CommerceCore 1.0 (9.1) <3691E9BA-BCF4-98C7-EFEC-78DA6825004E> /System/Library/PrivateFrameworks/CommerceKit.framework/Versions/A/Frameworks/C ommerceCore.framework/Versions/A/CommerceCore
        0x7fff87a05000 -     0x7fff87abafe7  com.apple.ink.framework 1.3.3 (107) <8C36373C-5473-3A6A-4972-BC29D504250F> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Ink.framework /Versions/A/Ink
        0x7fff87b50000 -     0x7fff87b53ff7  libCoreVMClient.dylib ??? (???) <75819794-3B7A-8944-D004-7EA6DD7CE836> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCoreVMClien t.dylib
        0x7fff87b54000 -     0x7fff8854eff7  com.apple.AppKit 6.6.8 (1038.36) <4CFBE04C-8FB3-B0EA-8DDB-7E7D10E9D251> /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit
        0x7fff8854f000 -     0x7fff885a2ff7  com.apple.HIServices 1.8.3 (???) <F6E0C7A7-C11D-0096-4DDA-2C77793AA6CD> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ HIServices.framework/Versions/A/HIServices
        0x7fff885e7000 -     0x7fff88612ff7  libxslt.1.dylib 3.24.0 (compatibility 3.0.0) <3630A97F-55C1-3F34-CA63-3847653C9645> /usr/lib/libxslt.1.dylib
        0x7fff88643000 -     0x7fff886d3fff  com.apple.SearchKit 1.3.0 (1.3.0) <4175DC31-1506-228A-08FD-C704AC9DF642> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SearchK it.framework/Versions/A/SearchKit
        0x7fff886d4000 -     0x7fff88715fef  com.apple.QD 3.36 (???) <5DC41E81-32C9-65B2-5528-B33E934D5BB4> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ QD.framework/Versions/A/QD
        0x7fff88716000 -     0x7fff88765ff7  com.apple.DirectoryService.PasswordServerFramework 6.1 (6.1) <0731C40D-71EF-B417-C83B-54C3527A36EA> /System/Library/PrivateFrameworks/PasswordServer.framework/Versions/A/PasswordS erver
        0x7fff88766000 -     0x7fff887afff7  com.apple.securityinterface 4.0.1 (40418.0.1) <9AF33A9F-2D8C-2AE6-868C-EA836C861031> /System/Library/Frameworks/SecurityInterface.framework/Versions/A/SecurityInter face
        0x7fff887b0000 -     0x7fff887e6ff7  com.apple.framework.Apple80211 6.2.5 (625.6) <B67C7A65-E4FB-4419-3F31-4482E17EF203> /System/Library/PrivateFrameworks/Apple80211.framework/Versions/A/Apple80211
        0x7fff888fe000 -     0x7fff88903fff  libGIF.dylib ??? (???) <3BAD0DE8-8151-68B0-2244-A4541C738972> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libGIF.dylib
        0x7fff88ae7000 -     0x7fff88b22fff  com.apple.AE 496.5 (496.5) <208DF391-4DE6-81ED-C697-14A2930D1BC6> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/AE.fram ework/Versions/A/AE
        0x7fff88b23000 -     0x7fff88bbdfff  com.apple.ApplicationServices.ATS 275.19 (???) <2DE8987F-4563-4D8E-45C3-2F6F786E120D> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/ATS
        0x7fff88c4b000 -     0x7fff88d08fff  com.apple.CoreServices.OSServices 359.2 (359.2) <BBB8888E-18DE-5D09-3C3A-F4C029EC7886> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/OSServi ces.framework/Versions/A/OSServices
        0x7fff88d09000 -     0x7fff88d18fff  libxar.1.dylib ??? (???) <CBAF862A-3C77-6446-56C2-9C4461631AAF> /usr/lib/libxar.1.dylib
        0x7fff894b6000 -     0x7fff894f0fff  libcups.2.dylib 2.8.0 (compatibility 2.0.0) <4F2A4397-89BD-DEAC-4971-EE838FFA0964> /usr/lib/libcups.2.dylib
        0x7fff894f1000 -     0x7fff8953dfff  libauto.dylib ??? (???) <F7221B46-DC4F-3153-CE61-7F52C8C293CF> /usr/lib/libauto.dylib
        0x7fff8953e000 -     0x7fff8954dfff  com.apple.NetFS 3.2.2 (3.2.2) <7CCBD70E-BF31-A7A7-DB98-230687773145> /System/Library/Frameworks/NetFS.framework/Versions/A/NetFS
        0x7fff89555000 -     0x7fff89714fff  com.apple.ImageIO.framework 3.0.6 (3.0.6) <92882FD3-CB3F-D0BE-DDDA-43B4BEE10F58> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/ImageIO
        0x7fff89739000 -     0x7fff899bbfff  com.apple.Foundation 6.6.8 (751.63) <E10E4DB4-9D5E-54A8-3FB6-2A82426066E4> /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
        0x7fff899bc000 -     0x7fff899c7fff  com.apple.CrashReporterSupport 10.6.7 (258) <A2CBB18C-BD1C-8650-9091-7687E780E689> /System/Library/PrivateFrameworks/CrashReporterSupport.framework/Versions/A/Cra shReporterSupport
        0x7fff899d6000 -     0x7fff89a52ff7  com.apple.ISSupport 1.9.7 (55) <BAE839AB-9DBD-FB23-F1F1-39445F04D8DA> /System/Library/PrivateFrameworks/ISSupport.framework/Versions/A/ISSupport
        0x7fff89a53000 -     0x7fff89df0fe7  com.apple.QuartzCore 1.6.3 (227.37) <16DFF6CD-EA58-CE62-A1D7-5F6CE3D066DD> /System/Library/Frameworks/QuartzCore.framework/Versions/A/QuartzCore
        0x7fff89df1000 -     0x7fff89e0cff7  com.apple.openscripting 1.3.1 (???) <9D50701D-54AC-405B-CC65-026FCB28258B> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/OpenScripting .framework/Versions/A/OpenScripting
        0x7fff89e0d000 -     0x7fff89e1cfef  com.apple.opengl 1.6.14 (1.6.14) <ECAE2D12-5BE3-46E7-6EE5-563B80B32A3E> /System/Library/Frameworks/OpenGL.framework/Versions/A/OpenGL
        0x7fff89e1d000 -     0x7fff89e20ff7  com.apple.securityhi 4.0 (36638) <AEF55AF1-54D3-DB8D-27A7-E16192E0045A> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SecurityHI.fr amework/Versions/A/SecurityHI
        0x7fff89e21000 -     0x7fff89e23fff  libRadiance.dylib ??? (???) <BF694EE5-6FDA-553A-CC89-F7135618E9C7> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libRadiance.dylib
        0x7fff89e99000 -     0x7fff8a057fff  libicucore.A.dylib 40.0.0 (compatibility 1.0.0) <97A75BFB-0DB6-6F44-36B0-97B7F7208ABB> /usr/lib/libicucore.A.dylib
        0x7fff8a058000 -     0x7fff8a079fff  libresolv.9.dylib 41.1.0 (compatibility 1.0.0) <9410EC7F-4D24-6740-AFEE-90405750FAD7> /usr/lib/libresolv.9.dylib
        0x7fff8a218000 -     0x7fff8a295fef  libstdc++.6.dylib 7.9.0 (compatibility 7.0.0) <35ECA411-2C08-FD7D-11B1-1B7A04921A5C> /usr/lib/libstdc++.6.dylib
        0x7fff8a2a5000 -     0x7fff8a2d8ff7  libTrueTypeScaler.dylib ??? (???) <B7BA8104-FA18-39A2-56E1-922EE7A660AC> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/libTrueTypeScaler.dylib
        0x7fff8a30e000 -     0x7fff8a310fff  com.apple.print.framework.Print 6.1 (237.1) <CA8564FB-B366-7413-B12E-9892DA3C6157> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Print.framewo rk/Versions/A/Print
        0x7fff8a3f4000 -     0x7fff8a414fff  com.apple.DirectoryService.Framework 3.6 (621.16) <0ED4A74A-F8FB-366D-6588-F13EA397326F> /System/Library/Frameworks/DirectoryService.framework/Versions/A/DirectoryServi ce
        0x7fff8a487000 -     0x7fff8a499fe7  libsasl2.2.dylib 3.15.0 (compatibility 3.0.0) <76B83C8D-8EFE-4467-0F75-275648AFED97> /usr/lib/libsasl2.2.dylib
        0x7fff8a49a000 -     0x7fff8a53afff  com.apple.LaunchServices 362.3 (362.3) <B90B7C31-FEF8-3C26-BFB3-D8A48BD2C0DA> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/LaunchS ervices.framework/Versions/A/LaunchServices
        0x7fff8a54f000 -     0x7fff8a68dfff  com.apple.CoreData 102.1 (251) <9DFE798D-AA52-6A9A-924A-DA73CB94D81A> /System/Library/Frameworks/CoreData.framework/Versions/A/CoreData
        0x7fff8a70c000 -     0x7fff8a710ff7  libmathCommon.A.dylib 315.0.0 (compatibility 1.0.0) <95718673-FEEE-B6ED-B127-BCDBDB60D4E5> /usr/lib/system/libmathCommon.A.dylib
        0x7fff8a72d000 -     0x7fff8a72dff7  com.apple.Accelerate.vecLib 3.6 (vecLib 3.6) <4CCE5D69-F1B3-8FD3-1483-E0271DB2CCF3> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/vecLib
        0x7fff8a72e000 -     0x7fff8a72eff7  com.apple.Carbon 150 (152) <23704665-E9F4-6B43-1115-2E69F161FC45> /System/Library/Frameworks/Carbon.framework/Versions/A/Carbon
        0x7fff8a72f000 -     0x7fff8a730ff7  com.apple.TrustEvaluationAgent 1.1 (1) <5952A9FA-BC2B-16EF-91A7-43902A5C07B6> /System/Library/PrivateFrameworks/TrustEvaluationAgent.framework/Versions/A/Tru stEvaluationAgent
        0x7fff8a731000 -     0x7fff8a73cfff  com.apple.corelocation 12.3 (12.3) <A6CFB410-2333-8BE3-658B-75A93C90A9CC> /System/Library/Frameworks/CoreLocation.framework/Versions/A/CoreLocation
        0x7fff8a73d000 -     0x7fff8a7c2ff7  com.apple.print.framework.PrintCore 6.3 (312.7) <CDFE82DD-D811-A091-179F-6E76069B432D> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ PrintCore.framework/Versions/A/PrintCore
        0x7fffffe00000 -     0x7fffffe01fff  libSystem.B.dylib ??? (???) <9AB4F1D1-89DC-0E8A-DC8E-A4FE4D69DB69> /usr/lib/libSystem.B.dylib
    Model: MacBookPro3,1, BootROM MBP31.0070.B07, 2 processors, Intel Core 2 Duo, 2.2 GHz, 2 GB, SMC 1.16f11
    Graphics: NVIDIA GeForce 8600M GT, GeForce 8600M GT, PCIe, 128 MB
    Memory Module: global_name
    AirPort: spairport_wireless_card_type_airport_extreme (0x168C, 0x87), Atheros 5416: 2.1.14.6
    Bluetooth: Version 2.4.5f3, 2 service, 19 devices, 1 incoming serial ports
    Network Service: AirPort, AirPort, en1
    PCI Card: pci168c,24, sppci_othernetwork, PCI Slot 5
    Serial ATA Device: WDC WD5000BPVT-00HXZT3, 465.76 GB
    Parallel ATA Device: MATSHITADVD-R   UJ-857E
    USB Device: Bluetooth USB Host Controller, 0x05ac  (Apple Inc.), 0x8205, 0x1a100000 / 2
    USB Device: Apple Internal Keyboard / Trackpad, 0x05ac  (Apple Inc.), 0x021a, 0x5d200000 / 3
    USB Device: IR Receiver, 0x05ac  (Apple Inc.), 0x8242, 0x5d100000 / 2

    Back up all data.
    Triple-click anywhere in the line below on this page to select it:
    ~/Library/Safari/WebpageIcons.db
    Right-click or control-click the line and select
    Services ▹ Reveal in Finder (or just Reveal)
    from the contextual menu.* A folder should open with an item selected. Quit the application if it's running. Move the selected item to the Trash.
    *If you don't see the contextual menu item, copy the selected text to the Clipboard by pressing the key combination  command-C. In the Finder, select
    Go ▹ Go to Folder...
    from the menu bar, paste into the box that opens (command-V). You won't see what you pasted because a line break is included. Press return.

Maybe you are looking for