Starting an applet automatically

Hello,
how can i start automatically an applet by calling a htm-site?
and how can i hand over an PHP variabel to this applet?
best regards,
Alexandra

The .html-page stored on the browser or produced by the
PHP-program might look like this:
<html><head><title> Applet AnApplet</title></head>
<body>
<applet code="AnApplet.class" archive="A_JAR_File.jar"
        width=650 height=450>
  <param name="a_name_for_a_parameter" value="some_string">
  <param name="some_other_name"        value="some_other_string">
  <p><b>The Java-Plug-In did not load. </b></p>
</applet>
</body>
</html>Inside the applet you can use the method getParameter to get
the value of a parameter. This method returns a null-pointer
if the parameter does not exist.
String a_name = getParameter("a_name_for_a_parameter");
if( a_name == null )
    a_name = "some_default_value";

Similar Messages

  • IE6 starts new Applet viewer window

    I have an html page with an Applet tag. This start a new window with Applet viewer. Obvioulsy I want the Applet to start in the same window as the html page.
    Does anybody know why this is so?

    I was creating a new Frame() object and adding a Label to the Frame (writing the code manually). This always starts an Appletviewer window of its own in IE6.
    Label myLabel = new Label("A New Label");
    Frame myFrame = new Frame();
    myFrame.add(myLabel);
    Using the JDeveloper visual editor, creating a Label in the Applet automatically generated the following code. When this is delivered to IE6 it puts the Label in the same windows as the html page instead of starting a new window.
    this.setLayout(null);
    jLabel.setText("A New Label");
    jLabel.setBounds(new Rectangle(90, 70, 60, 25));
    this.add(jLabel, null);
    In retrospect the documentation says that creating a new Frame() will create a new Window. But you always read that last.

  • Tried to reinstall OSX Mountain Lion 10.8.4 and every time i start with the installation i get a requested time out message, had to shut down my MacBook Pro retina. Now when i start up it automatically start internet recovery

    tried to reinstall OSX Mountain Lion 10.8.4 and every time i start with the installation i get a requested time out message, had to shut down my MacBook Pro retina. Now when i start up it automatically start internet recovery for two ouers. After the internet recovery the same problem with reinstalling OSX message

    Gave up on the GUI.  This script derived from http://blog.netnerds.net/2012/07/os-x-how-to-setup-nat-on-lion-and-mountain-lion / seems to work for me:
    gwdev=en0 # This is my WiFi connection (has Internet connection)
    targetdev=en1 # This is the USB to Ethernet adapter (to give Internet connection)
    /sbin/ifconfig $targetdev down
    /sbin/ifconfig bridge0 create
    /sbin/ifconfig bridge0 up
    /sbin/ifconfig bridge0 addm $gwdev
    /sbin/ifconfig bridge0 $HOST_ADDR
    /sbin/route add default -interface bridge0 -ifscope bridge0 -cloning
    /usr/sbin/sysctl -w net.inet.ip.forwarding=1
    /sbin/ipfw add 100 divert natd ip from any to any via $gwdev
    /usr/sbin/natd -interface $gwdev -use_sockets -same_ports -unregistered_only -dynamic -clamp_mss -enable_natportmap -natportmap_interface $targetdev

  • Start BPM process automatically

    Hi ALL,
    I have created a BPM process. I can start that process automatically from nwa -> Process controll.
    But I want to run the process automatically by a certain time interval. How can I do it.
    Can anybody help me.
    Thanks in advance
    Chandan

    Hi Chandan,
    I am not 100% sure if I understood you correctly, but with BPMN there comes a model element named Intermediate Timer Event which can be configured in two different ways using:
    an offset (e.g. 1 hour after the timer has been created)
    an expression  (e.g. ProcessContext.aDateOneEntered + 1 day)
    Nevertheless this still requires you to start the process by yourself, but it 'waits' at the timer until the offset or the expression has been reached. Thereby you can achieve that an interval is taken into account upon execution of the process.
    More information about events can be found in the documentation:
    Modeling Events
    https://help.sap.com/saphelp_nwce711/helpdata/en/47/61470236013df6e10000000a42189b/frameset.htm
    Hope that helps,
    Martin

  • How to start an applet offline with JNLP?

    I want my applet to work offline. It uses Java3d and that is why it needs JNLP. I have made sure that it doesn't make any network connections. I have also put the JNLP file that it uses, java3d-latest.jnlp in the same directory as the applet. It finds this jnlp file, but it doesn't find the applet-launcher class. I get "java.lang.ClassNotFoundException: org.jdesktop.applet.util.JNLPAppletLauncher". I try to solve this by putting the applet-launcher.jar in the same directory as the applet, but it still doesn't find the applet-launcher class. What can I do to make the applet start offline?
    I need it to work offline, because I am going to make a screensaver from the applet. This is the applet code in the page:
    <applet code="org.jdesktop.applet.util.JNLPAppletLauncher"
    width=100%
    height=100%
    archive="astrals.jar,
    applet-launcher.jar,
    http://download.java.net/media/java3d/webstart/release/j3d/latest/j3dutils.jar,
    http://download.java.net/media/jogl/builds/archive/jsr-231-webstart-current/jogl.jar,
    http://download.java.net/media/gluegen/webstart/gluegen-rt.jar,
    http://download.java.net/media/java3d/webstart/release/vecmath/latest/vecmath.jar">
    <param name="codebase_lookup" value="true">
    <param name="subapplet.classname" value="OrchideaOptM">
    <param name="subapplet.displayname" value="OrchideaOptM">
    <param name="jnlpNumExtensions" value="1">
    <!--<param name="jnlpExtension1" value="http://download.java.net/media/java3d/webstart/release/java3d-latest.jnlp">-->
    <param name="jnlpExtension1" value="file:/C:/java/3dflower/build/classes/java3d-latest.jnlp">
    <param name="progressbar" value="true">
    <param name="noddraw.check" value="true">
    <shortcut online="false">
    </applet>
    You can view my 3d applets here, they work online:
    http://astral.mobile-visuals.com/3d_visuals.php

    I think you can do that you have to use a combination of javascript and html. use the Onclick event handler to call a java script function let say startApplet and in this function open a new window and write the <html><applet code= width= height=> </applet> </html> in that window and you will be able to start your applet that way.

  • How to start java applet with netbeans 6.1

    hey,
    I want to learn how to start java applet (with database) with netbeans.. I'm new to java...can you show me how can i start..if you have any doc about it can you send it to me..thank you..:)

    You really should be asking this NetBeans question at the NB site - these forums are for Java language topics, not NB support.
    [http://www.netbeans.org/kb/61/web/applets.html]
    Almost any NB question you have can be answered by either the NB web documentation or the NB program's Help.

  • Cannot start JNLP applet on IE 9 64 bits (replicated)

    Hello,
    I made a post on the "Applets" section of the forum, but after further search I think it should have been here, so I leave the link
    Cannot start JNLP applet on IE 9 64 bits
    Ty
    Cad
    To any moderator, feel free to delete this thread and move the one posted above to this section

    1) Make sure you have correct version of JRE installed. Need 32 for 32 bit browser and 64 bit otherwise.
    Check list of installed plugins in IE to see if java plugin is listed.
    2) Make sure java plugin is enabled for IE in the Control Panel.
    If UAC is on then you need to run Java Control Panel as administrator for settings to take effect.
    3) Create small bat file to launch IE:
    set JPI_PLUGIN2_DEBUG=true
    <path-to-ie>\iexplore.exe
    Close IE and launch using this file. Try to open any applet, you should see window with trace log. Does it mention any errors?
    Please paste content here if you need further help.

  • Reg:process chains could be started manually and automatically

    Hi
    Each process chain could be started manually and automatically
    >If i want to start the process chain manually, how should i start and what are the settings shall i mark
    >If i want to start the process chain automatically, is there any tool are there to start the process chain at that particular time
    Plz clarify my doughts it is use full too me
    Thanks & Regards
    manikanta

    Hello,
    PC can be started both manually and automatically.
    Every PC has a start variant, when you right click on the start variant and go in the edit option, select the option direct scheduling. Then in change selection, check the box immediate and keep the periodic job at the bottom unchecked.
    Hit the tick, save on the other screen. And when back on the PC screen, from the menu option select the schedule option.
    This will run the chain manually.
    To run it automatically, follow the same procedure but instead of using immediate choose, data and time, provide date and time when you want to run, you can check periodic option if you want the chain to run daily, weekly or monthly.
    Regards,
    Shashank

  • Push Registry is not starting the MIDLET automatically

    I am not being able to start my MIDLET using the push registry mechanism. I am using the netbeans emuluator to execute the program.
    In the startApp of my application I have
         connections = PushRegistry.listConnections(false);
    and whenever a connection comes it starts a new thread. My Client keeps sending SMS requests but the server midlet in which the
    push registry is initiated does not start.
    In the application Descriptor I have added the following
    MIDLET class : Server.SMSReceive_S
    Sender IP : *
    Connection String : sms://:5000
    and in the API permissions I have added the following API permissions
    javax.microedition.io.PushRegistry, javax.wireless.messaging.sms.receive, javax.wireless.messaging.sms.send
    I have even tried to start the MIDLET dynamically by calling
         PushRegistry.registerConnection(smsConnection,this.getClass().getName(),filterName);
    but that too doesnt work?
    So what am I doing wrong in starting the MIDLET automatically using push registry?

    Hi, Malte
    I have given individual nodes address in db2nodes.cfg,  as per your instruction I have run the db2 list database directory I have got the following output
    System Database Directory
    Number of entries in the directory = 1
    atabase 1 entry:
    Database alias                       = SOP
    Database name                        = SOP
    Local database directory             = /db2/SOP
    Database release level               = b.00
    Comment                              = SAP database SOP
    Directory entry type                 = Indirect
    Catalog database partition number    = 0
    Alternate server hostname            =
    Alternate server port number         =
    => db2 list node directory
    => SQL1027N  The node directory cannot be found
    Regards

  • Start the Listener Automatically

    OS is Solaris
    Data base is 9i
    I shutdown database (shutdown immediate) and after that Solaris server (shutdown now).
    When I start solaris server database started but
    listener didn't start.
    How to start the listener automatically when OS reeboots?
    Thankx in Advance....

    You work with your system administrators to find which directory the script currently resides. The posting above gave the possible locations for the Sun OS.
    etc/rc0.d/ or /etc/rc2.d/ and so on
    Usually it is the normal dbstart script that is executed. You will need to work with the system administrators to either include the command line for stating the listener or include it in the dbstart script (which in not advisable since it could change with upgrades to the database version).
    Regards
    Tim

  • Start/shutdown oracle automatically.

    Hi
    I have installed oracle 9i in my mac ( Mac OS X 10.3.9 ) laptop. I would like start/shutdown oracle automatically.
    How do I do that ?
    Point to the place, where I can find more information on this.
    Thanks in advance
    -siva

    Hi Siva,
    if you looked a bit closer you could have found the link to 'Autostart oracle' <http://homepage.mac.com/ik_zelf/oracle/Personal12.html> where you can find a complete working setup.
    MacosX does not run the shutdown scripts so the database is terminated by a normal kill.
    regards,
    Ronald
    http://ronr.nl/unix-dba

  • Start new session automatically after the current one is expired

    Hi Guys,
    My application should be displayed on the screen 24/7 . The information there is being refreshed every 5 minutes. When the APEX session is expired the refresh stops working and the page has to be reloaded.
    I'm looking for the solution that would allow to keep the application always on and to start new session automatically without a human being involved.
    Thanks in advance,
    Elena

    Hi everybody,
    Being impatient, I've already found a solution. I created a JavaScript function the reloads the page. Instead of current session ID in the url I use 1. In this case apex generates the new session.
    The Timer Plug-in runs the function every X minutes.
    The function code is the following:
    function reload() {
         var url = location.href;     
         var g_app_id = '&APP_ID.';
         var g_page_id = '&APP_PAGE_ID.';
         var patt = new RegExp("[^=]+","i");  // i - Perform case-insensitive matching
         var newUrl = url.match(patt) + "=" + g_app_id + ":" + g_page_id + ":1";     
         window.location.assign(newUrl);
    I hope it might be helpful for you guys.
    Regards,
    Elena

  • Error starting java applet

    Hi,
    I had an issue on starting the applet on the web browser(either IE or FireFox). The applet loaded and starts well in my colleagues machine(windows 2000 and jdk 1.5.0) but in my local machine, running the same OS and jdk 1.5.0, throws an exception. here is the detail of exception thrown.....
    basic: Registered modality listener
    basic: Referencing classloader: sun.plugin.ClassLoaderInfo@1ea0252, refcount=1
    basic: Added progress listener: sun.plugin.util.GrayBoxPainter@1fc3c84
    basic: Loading applet ...
    basic: Initializing applet ...
    basic: Starting applet ...
    java.lang.NoClassDefFoundError
         at sun.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method)
         at sun.reflect.NativeConstructorAccessorImpl.newInstance(Unknown Source)
         at sun.reflect.DelegatingConstructorAccessorImpl.newInstance(Unknown Source)
         at java.lang.reflect.Constructor.newInstance(Unknown Source)
         at java.lang.Class.newInstance0(Unknown Source)
         at java.lang.Class.newInstance(Unknown Source)
         at sun.applet.AppletPanel.createApplet(Unknown Source)
         at sun.plugin.AppletViewer.createApplet(Unknown Source)
         at sun.applet.AppletPanel.runLoader(Unknown Source)
         at sun.applet.AppletPanel.run(Unknown Source)
         at java.lang.Thread.run(Unknown Source)
    basic: Exception: java.lang.NoClassDefFoundError
    Im tracing the exception using the Java Console in the web browser and set the trace level to 5.
    Any help will be very much appreciated.
    Thanks.

    Don't see what the jre is trying to download (class, jar) and why it is not able to download.
    A Full trace might help you out:
    http://forum.java.sun.com/thread.jspa?threadID=656028

  • Hello. My Iphone start update iOS automatically. I want to have iOS ver. 6.1.3. How I can abort iOS 7.0.2 updating?

    Hello. My Iphone start update iOS automatically. I want to have iOS ver. 6.1.3. How I can abort iOS 7.0.2 updating?

    I had this issue and following the steps below fixed it:
    1- backup your iphone on itunes
    2- perform factory reset (it will wipe out the iOS7 from your iphone, if already downloaded)
    3- restore iphone data using itunes (this won't restore the iOS 7 download data that was downloaded to the device)
    4- disable wifi right after restored (to prevent auto download again of iOS7)
    5- fill up your iphone with photos or music, leave less than 3GB free.
    By filling up storage you can prevent Apple from auto downloading iOS 7 to your device.  The iOS 7 download requires 3.1GB of data and if there is less than that it won't allow the download to happen.
    The instructions above won't remove ios7 if the upgrade has been installed and currently running on your device. It removes the ios7 upgrade data that has downloaded to your device (and taking up storage space) that is waiting for you to press the "Install Now" button. Don't press that button...

  • Mac Pro suddenly shuts down and starts up again automatically

    Hello Friends!
    Got a really strange problem here, with my Mac Pro.
    Specs:
    2010 Mac Pro 2.GHz Quad-Core Intel Xeon
    RAM: 16GB Kingston RAM
    2x1000GB HDs (one from apple, and another Western Digital)
    My Mac Pro suddenly shuts down, and starts up again automatically. No warning, no freezing - just a shut down noise and black screen. After 3-4 seconds, it starts up again.
    Can someone help me with that?
    All the best,
    Lukas

    I have an older MacPro 32 GBs RAM 2008   4 hard drives (Int. and two ext. 1 & 2TB).  MacOSX 10.6.8
    Just started shutting down and starting up for not reason a day or two ago.  I'm not a programmer and these instructions are difficult for me.  
    Start Time of first crash.  4-20-14 10:46:01 AM
    4/20/14 10:46:01 AM
    bootlog[49]
    BOOT_TIME: 1397958350 0
    Last One
    4/22/14 1:46:06 PM
    bootlog[43]
    BOOT_TIME: 1398141945 0
    (Not all the way back)!
    4/19/14 4:04:29 PM
    [0x0-0x32032].com.azureus.vuze[282]
      java.lang.NullPointerException
    4/19/14 4:04:29 PM
    [0x0-0x32032].com.azureus.vuze[282]
    at com.aelitis.azureus.ui.swt.shells.opentorrent.OpenTorrentOptionsWindow$OpenTorr entInstance$26.runSupport(OpenTorrentOptionsWindow.java:2606)
    4/19/14 4:04:29 PM
    [0x0-0x32032].com.azureus.vuze[282]
    at org.gudy.azureus2.core3.util.AERunnable.run(AERunnable.java:38)
    4/19/14 4:04:29 PM
    [0x0-0x32032].com.azureus.vuze[282]
    at org.gudy.azureus2.ui.swt.Utils.execSWTThread(Utils.java:733)
    4/19/14 4:04:29 PM
    [0x0-0x32032].com.azureus.vuze[282]
    *** process 282 exceeded 500 log message per second limit  -  remaining messages this second discarded ***
    4/19/14 4:04:51 PM
    kernel
    CODE SIGNING: cs_invalid_page(0x1000): p=300[GoogleSoftwareUp] clearing CS_VALID
    4/19/14 4:06:03 PM
    [0x0-0x32032].com.azureus.vuze[282]
    /usr/bin/nice -n 0 "/Users/ralphcabit/Library/Application Support/Vuze/plugins/azemp/vuzeplayer" -slave -identify -prefer-ipv4 -osdlevel 0 -noautosub -font /var/folders/Zw/ZwiUrc-PG1as5fH6A5NrmE+++TI/-Tmp-/LiberationSans-Bold.ttf335924 4140842114239.ttf -subfont-text-scale 2.5 -subfont-blur 4 -subfont-outline 2 -framedrop -vo corevideo:buffer_name=vuze_1397891163260 "/Volumes/HD2/AzDL/Day of the Locust/Day of the Locust.avi"
    4/19/14 4:34:10 PM
    [0x0-0x3a03a].org.mozilla.firefox[324]
    OpenGL version detected: 210
    4/19/14 4:34:10 PM
    [0x0-0x3a03a].org.mozilla.firefox[324]
    OpenGL version detected: 210
    4/19/14 4:57:32 PM
    kernel
    IOAudioStream[0x1324c700]::clipIfNecessary() - Error: attempting to clip to a position more than one buffer ahead of last clip position (4627,29b)->(4628,a1b).
    4/19/14 4:57:32 PM
    kernel
    IOAudioStream[0x1324c700]::clipIfNecessary() - adjusting clipped position to (4628,29b)
    4/19/14 5:03:34 PM
    kernel
    CODE SIGNING: cs_invalid_page(0x1000): p=347[GoogleSoftwareUp] clearing CS_VALID
    4/19/14 5:15:47 PM
    /Applications/iTunes.app/Contents/MacOS/iTunes[363]
    MDS Error: unable to create user DBs in /var/folders/Zw/ZwiUrc-PG1as5fH6A5NrmE+++TI/-Caches-//mds
    4/19/14 5:15:47 PM
    /Applications/iTunes.app/Contents/MacOS/iTunes[363]
    MDS Error: unable to create user DBs in /var/folders/Zw/ZwiUrc-PG1as5fH6A5NrmE+++TI/-Caches-//mds
    4/19/14 5:15:47 PM
    /Applications/iTunes.app/Contents/MacOS/iTunes[363]
    MDS Error: unable to create user DBs in /var/folders/Zw/ZwiUrc-PG1as5fH6A5NrmE+++TI/-Caches-//mds
    4/19/14 5:15:47 PM
    /Applications/iTunes.app/Contents/MacOS/iTunes[363]
    MDS Error: unable to create user DBs in /var/folders/Zw/ZwiUrc-PG1as5fH6A5NrmE+++TI/-Caches-//mds
    4/19/14 5:15:47 PM
    /Applications/iTunes.app/Contents/MacOS/iTunes[363]
    MDS Error: unable to create user DBs in /var/folders/Zw/ZwiUrc-PG1as5fH6A5NrmE+++TI/-Caches-//mds
    4/19/14 5:15:47 PM
    /Applications/iTunes.app/Contents/MacOS/iTunes[363]
    MDS Error: unable to create user DBs in /var/folders/Zw/ZwiUrc-PG1as5fH6A5NrmE+++TI/-Caches-//mds
    4/19/14 5:15:47 PM
    /Applications/iTunes.app/Contents/MacOS/iTunes[363]
    MDS Error: unable to create user DBs in /var/folders/Zw/ZwiUrc-PG1as5fH6A5NrmE+++TI/-Caches-//mds
    4/19/14 5:15:47 PM
    /Applications/iTunes.app/Contents/MacOS/iTunes[363]
    MDS Error: unable to create user DBs in /var/folders/Zw/ZwiUrc-PG1as5fH6A5NrmE+++TI/-Caches-//mds
    4/19/14 5:15:47 PM
    /Applications/iTunes.app/Contents/MacOS/iTunes[363]
    MDS Error: unable to create user DBs in /var/folders/Zw/ZwiUrc-PG1as5fH6A5NrmE+++TI/-Caches-//mds
    4/19/14 5:15:55 PM
    kernel
    Message Version Check or Length Not Match.
    4/19/14 5:15:55 PM
    kernel
    Message Length Check - msglength = 3152, expectingLength = 3152
    4/19/14 5:15:55 PM
    kernel
    Message Version Check - msg(0.0.0)@0x14430024 atifb:(3.1.0)
    4/19/14 5:15:55 PM
    kernel
    Message Version Check or Length Not Match.
    4/19/14 5:15:55 PM
    kernel
    Message Length Check - msglength = 3152, expectingLength = 3152
    4/19/14 5:15:55 PM
    kernel
    Message Version Check - msg(0.0.0)@0x159e6024 atifb:(3.1.0)
    4/19/14 5:15:55 PM
    kernel
    Message Version Check or Length Not Match.
    4/19/14 5:15:55 PM
    kernel
    Message Length Check - msglength = 3152, expectingLength = 3152
    4/19/14 5:15:55 PM
    kernel
    Message Version Check - msg(0.0.0)@0x14348024 atifb:(3.1.0)
    4/19/14 5:23:58 PM
    iTunes[363]
    *** attempt to pop an unknown autorelease pool (0x35003000)
    4/19/14 5:45:56 PM
    [0x0-0x47047].com.apple.iTunes[363]
    AppleGVA:: Error creating the accelerator 1
    4/19/14 6:02:17 PM
    kernel
    CODE SIGNING: cs_invalid_page(0x1000): p=402[GoogleSoftwareUp] clearing CS_VALID
    4/19/14 6:12:35 PM
    Finder[136]
    CFPropertyListCreateFromXMLData(): Old-style plist parser: missing semicolon in dictionary.
    4/19/14 6:12:35 PM
    Finder[136]
    CFPropertyListCreateFromXMLData(): Old-style plist parser: missing semicolon in dictionary.
    4/19/14 6:12:35 PM
    Finder[136]
    CFPropertyListCreateFromXMLData(): Old-style plist parser: missing semicolon in dictionary.
    4/19/14 6:21:34 PM
    /Applications/Google Chrome.app/Contents/MacOS/Google Chrome[427]
    MDS Error: unable to create user DBs in /var/folders/Zw/ZwiUrc-PG1as5fH6A5NrmE+++TI/-Caches-//mds
    4/19/14 6:21:34 PM
    /Applications/Google Chrome.app/Contents/MacOS/Google Chrome[427]
    MDS Error: unable to create user DBs in /var/folders/Zw/ZwiUrc-PG1as5fH6A5NrmE+++TI/-Caches-//mds
    4/19/14 6:21:34 PM
    /Applications/Google Chrome.app/Contents/MacOS/Google Chrome[427]
    MDS Error: unable to create user DBs in /var/folders/Zw/ZwiUrc-PG1as5fH6A5NrmE+++TI/-Caches-//mds
    4/19/14 6:21:34 PM
    /Applications/Google Chrome.app/Contents/MacOS/Google Chrome[427]
    MDS Error: unable to create user DBs in /var/folders/Zw/ZwiUrc-PG1as5fH6A5NrmE+++TI/-Caches-//mds
    4/19/14 6:21:34 PM
    /Applications/Google Chrome.app/Contents/MacOS/Google Chrome[427]
    MDS Error: unable to create user DBs in /var/folders/Zw/ZwiUrc-PG1as5fH6A5NrmE+++TI/-Caches-//mds
    4/19/14 6:21:34 PM
    /Applications/Google Chrome.app/Contents/MacOS/Google Chrome[427]
    MDS Error: unable to create user DBs in /var/folders/Zw/ZwiUrc-PG1as5fH6A5NrmE+++TI/-Caches-//mds
    4/19/14 6:21:34 PM
    /Applications/Google Chrome.app/Contents/MacOS/Google Chrome[427]
    MDS Error: unable to create user DBs in /var/folders/Zw/ZwiUrc-PG1as5fH6A5NrmE+++TI/-Caches-//mds
    4/19/14 6:21:34 PM
    /Applications/Google Chrome.app/Contents/MacOS/Google Chrome[427]
    MDS Error: unable to create user DBs in /var/folders/Zw/ZwiUrc-PG1as5fH6A5NrmE+++TI/-Caches-//mds
    4/19/14 6:21:34 PM
    /Applications/Google Chrome.app/Contents/MacOS/Google Chrome[427]
    MDS Error: unable to create user DBs in /var/folders/Zw/ZwiUrc-PG1as5fH6A5NrmE+++TI/-Caches-//mds
    4/19/14 6:21:34 PM
    kernel
    CODE SIGNING: cs_invalid_page(0x1000): p=429[ksadmin] clearing CS_VALID
    4/19/14 6:21:34 PM
    kernel
    CODE SIGNING: cs_invalid_page(0x1000): p=432[ksadmin] clearing CS_VALID
    4/19/14 6:21:54 PM
    [0x0-0x50050].com.google.Chrome[427]
    [427:46339:0419/182154:ERROR:rlz.cc(41)] Not implemented reached in bool GoogleUpdateSettings::GetLanguage(base::string16 *)
    4/19/14 6:23:15 PM
    [0x0-0x5b05b].org.mozilla.firefox[444]
    OpenGL version detected: 210
    4/19/14 6:23:15 PM
    [0x0-0x5b05b].org.mozilla.firefox[444]
    OpenGL version detected: 210
    4/19/14 6:25:41 PM
    VLC[449]
    Error loading /Library/Audio/Plug-Ins/HAL/DVCPROHDAudio.plugin/Contents/MacOS/DVCPROHDAudio:  dlopen(/Library/Audio/Plug-Ins/HAL/DVCPROHDAudio.plugin/Contents/MacOS/DVCPROHD Audio, 262): no suitable image found.  Did find:
    /Library/Audio/Plug-Ins/HAL/DVCPROHDAudio.plugin/Contents/MacOS/DVCPROHDAudio: no matching architecture in universal wrapper
    4/19/14 6:25:41 PM
    VLC[449]
    Cannot find function pointer NewPlugIn for factory C5A4CE5B-0BB8-11D8-9D75-0003939615B6 in CFBundle/CFPlugIn 0x10026a2e0 </Library/Audio/Plug-Ins/HAL/DVCPROHDAudio.plugin> (bundle, not loaded)
    4/19/14 6:25:41 PM
    [0x0-0x5c05c].org.videolan.vlc[449]
    [0x100225150] main libvlc: Running vlc with the default interface. Use 'cvlc' to use vlc without interface.
    4/19/14 6:25:41 PM
    VLC[449]
    ERROR: <PXSourceList: 0x10064adc0>: Attempt to set unknown item as dropItem=<SideBarItem: 0x136030330>.
    4/19/14 6:25:41 PM
    [0x0-0x5c05c].org.videolan.vlc[449]
    [0x1006984d0] es demux error: cannot peek
    4/19/14 6:25:41 PM
    [0x0-0x5c05c].org.videolan.vlc[449]
    [0x1006984d0] es demux error: cannot peek
    4/19/14 6:25:41 PM
    [0x0-0x5c05c].org.videolan.vlc[449]
    [0x100267a30] main playlist: stopping playback
    4/19/14 6:25:41 PM
    [0x0-0x5c05c].org.videolan.vlc[449]
    [0x1045290d0] es demux error: cannot peek
    4/19/14 6:25:41 PM
    [0x0-0x5c05c].org.videolan.vlc[449]
    [0x1045290d0] es demux error: cannot peek
    4/19/14 6:25:41 PM
    VLC[449]
    *** -[NSCFArray objectAtIndex:]: index (0) beyond bounds (0)
    4/19/14 6:25:41 PM
    VLC[449]
    *** -[NSCFArray objectAtIndex:]: index (0) beyond bounds (0)
    4/19/14 6:25:44 PM
    [0x0-0x5c05c].org.videolan.vlc[449]
    [rm @ 0x10181c600] Invalid stream index 1 for index at pos 1460481
    4/19/14 6:43:10 PM
    Finder[136]
    Error loading /Library/Audio/Plug-Ins/HAL/DVCPROHDAudio.plugin/Contents/MacOS/DVCPROHDAudio:  dlopen(/Library/Audio/Plug-Ins/HAL/DVCPROHDAudio.plugin/Contents/MacOS/DVCPROHD Audio, 262): no suitable image found.  Did find:
    /Library/Audio/Plug-Ins/HAL/DVCPROHDAudio.plugin/Contents/MacOS/DVCPROHDAudio: no matching architecture in universal wrapper
    4/19/14 6:43:10 PM
    Finder[136]
    Cannot find function pointer NewPlugIn for factory C5A4CE5B-0BB8-11D8-9D75-0003939615B6 in CFBundle/CFPlugIn 0x136921eb0 </Library/Audio/Plug-Ins/HAL/DVCPROHDAudio.plugin> (bundle, not loaded)
    4/19/14 7:01:00 PM
    kernel
    CODE SIGNING: cs_invalid_page(0x1000): p=481[GoogleSoftwareUp] clearing CS_VALID
    4/19/14 7:06:20 PM
    /System/Library/CoreServices/SubmitDiagInfo[485]
    MDS Error: unable to create user DBs in /var/folders/Zw/ZwiUrc-PG1as5fH6A5NrmE+++TI/-Caches-//mds
    4/19/14 7:06:20 PM
    /System/Library/CoreServices/SubmitDiagInfo[485]
    MDS Error: unable to create user DBs in /var/folders/Zw/ZwiUrc-PG1as5fH6A5NrmE+++TI/-Caches-//mds
    4/19/14 7:06:20 PM
    /System/Library/CoreServices/SubmitDiagInfo[485]
    MDS Error: unable to create user DBs in /var/folders/Zw/ZwiUrc-PG1as5fH6A5NrmE+++TI/-Caches-//mds
    4/19/14 7:06:20 PM
    /System/Library/CoreServices/SubmitDiagInfo[485]
    MDS Error: unable to create user DBs in /var/folders/Zw/ZwiUrc-PG1as5fH6A5NrmE+++TI/-Caches-//mds
    4/19/14 7:06:21 PM
    /System/Library/CoreServices/SubmitDiagInfo[485]
    MDS Error: unable to create user DBs in /var/folders/Zw/ZwiUrc-PG1as5fH6A5NrmE+++TI/-Caches-//mds
    4/19/14 7:06:21 PM
    /System/Library/CoreServices/SubmitDiagInfo[485]
    MDS Error: unable to create user DBs in /var/folders/Zw/ZwiUrc-PG1as5fH6A5NrmE+++TI/-Caches-//mds
    4/19/14 7:06:21 PM
    /System/Library/CoreServices/SubmitDiagInfo[485]
    MDS Error: unable to create user DBs in /var/folders/Zw/ZwiUrc-PG1as5fH6A5NrmE+++TI/-Caches-//mds
    4/19/14 7:06:21 PM
    /System/Library/CoreServices/SubmitDiagInfo[485]
    MDS Error: unable to create user DBs in /var/folders/Zw/ZwiUrc-PG1as5fH6A5NrmE+++TI/-Caches-//mds
    4/19/14 7:06:21 PM
    /System/Library/CoreServices/SubmitDiagInfo[485]
    MDS Error: unable to create user DBs in /var/folders/Zw/ZwiUrc-PG1as5fH6A5NrmE+++TI/-Caches-//mds
    4/19/14 7:06:21 PM
    SubmitDiagInfo[485]
    SubmitDiagInfo successfully uploaded 28 diagnostic messages.
    4/19/14 7:59:43 PM
    kernel
    CODE SIGNING: cs_invalid_page(0x1000): p=512[GoogleSoftwareUp] clearing CS_VALID
    4/19/14 8:16:46 PM
    /Applications/Mail.app/Contents/MacOS/Mail[525]
    MDS Error: unable to create user DBs in /var/folders/Zw/ZwiUrc-PG1as5fH6A5NrmE+++TI/-Caches-//mds
    4/19/14 8:16:46 PM
    /Applications/Mail.app/Contents/MacOS/Mail[525]
    MDS Error: unable to create user DBs in /var/folders/Zw/ZwiUrc-PG1as5fH6A5NrmE+++TI/-Caches-//mds
    4/19/14 8:16:46 PM
    /Applications/Mail.app/Contents/MacOS/Mail[525]
    MDS Error: unable to create user DBs in /var/folders/Zw/ZwiUrc-PG1as5fH6A5NrmE+++TI/-Caches-//mds
    4/19/14 8:16:46 PM
    /Applications/Mail.app/Contents/MacOS/Mail[525]
    MDS Error: unable to create user DBs in /var/folders/Zw/ZwiUrc-PG1as5fH6A5NrmE+++TI/-Caches-//mds
    4/19/14 8:16:46 PM
    /Applications/Mail.app/Contents/MacOS/Mail[525]
    MDS Error: unable to create user DBs in /var/folders/Zw/ZwiUrc-PG1as5fH6A5NrmE+++TI/-Caches-//mds
    4/19/14 8:16:46 PM
    /Applications/Mail.app/Contents/MacOS/Mail[525]
    MDS Error: unable to create user DBs in /var/folders/Zw/ZwiUrc-PG1as5fH6A5NrmE+++TI/-Caches-//mds
    4/19/14 8:16:49 PM
    Mail[525]
    Error loading /Library/Audio/Plug-Ins/HAL/DVCPROHDAudio.plugin/Contents/MacOS/DVCPROHDAudio:  dlopen(/Library/Audio/Plug-Ins/HAL/DVCPROHDAudio.plugin/Contents/MacOS/DVCPROHD Audio, 262): no suitable image found.  Did find:
    /Library/Audio/Plug-Ins/HAL/DVCPROHDAudio.plugin/Contents/MacOS/DVCPROHDAudio: no matching architecture in universal wrapper
    4/19/14 8:16:49 PM
    Mail[525]
    Cannot find function pointer NewPlugIn for factory C5A4CE5B-0BB8-11D8-9D75-0003939615B6 in CFBundle/CFPlugIn 0x137c81d60 </Library/Audio/Plug-Ins/HAL/DVCPROHDAudio.plugin> (bundle, not loaded)
    4/19/14 8:54:11 PM
    /Applications/Mail.app/Contents/MacOS/Mail[525]
    MDS Error: unable to create user DBs in /var/folders/Zw/ZwiUrc-PG1as5fH6A5NrmE+++TI/-Caches-//mds
    4/19/14 8:54:11 PM
    /Applications/Mail.app/Contents/MacOS/Mail[525]
    MDS Error: unable to create user DBs in /var/folders/Zw/ZwiUrc-PG1as5fH6A5NrmE+++TI/-Caches-//mds
    4/19/14 8:54:11 PM
    /Applications/Mail.app/Contents/MacOS/Mail[525]
    MDS Error: unable to create user DBs in /var/folders/Zw/ZwiUrc-PG1as5fH6A5NrmE+++TI/-Caches-//mds
    4/19/14 8:58:26 PM
    /tmp/KSOutOfProcessFetcher.oKWJJ79TY0/ksfetch[563]
    MDS Error: unable to create user DBs in /var/folders/Zw/ZwiUrc-PG1as5fH6A5NrmE+++TI/-Caches-//mds
    4/19/14 8:58:26 PM
    /tmp/KSOutOfProcessFetcher.oKWJJ79TY0/ksfetch[563]
    MDS Error: unable to create user DBs in /var/folders/Zw/ZwiUrc-PG1as5fH6A5NrmE+++TI/-Caches-//mds
    4/19/14 8:58:26 PM
    /tmp/KSOutOfProcessFetcher.oKWJJ79TY0/ksfetch[563]
    MDS Error: unable to create user DBs in /var/folders/Zw/ZwiUrc-PG1as5fH6A5NrmE+++TI/-Caches-//mds
    4/19/14 8:58:26 PM
    /tmp/KSOutOfProcessFetcher.oKWJJ79TY0/ksfetch[563]
    MDS Error: unable to create user DBs in /var/folders/Zw/ZwiUrc-PG1as5fH6A5NrmE+++TI/-Caches-//mds
    4/19/14 8:58:26 PM
    /tmp/KSOutOfProcessFetcher.oKWJJ79TY0/ksfetch[563]
    MDS Error: unable to create user DBs in /var/folders/Zw/ZwiUrc-PG1as5fH6A5NrmE+++TI/-Caches-//mds
    4/19/14 8:58:26 PM
    /tmp/KSOutOfProcessFetcher.oKWJJ79TY0/ksfetch[563]
    MDS Error: unable to create user DBs in /var/folders/Zw/ZwiUrc-PG1as5fH6A5NrmE+++TI/-Caches-//mds
    4/19/14 8:58:26 PM
    /tmp/KSOutOfProcessFetcher.oKWJJ79TY0/ksfetch[563]
    MDS Error: unable to create user DBs in /var/folders/Zw/ZwiUrc-PG1as5fH6A5NrmE+++TI/-Caches-//mds
    4/19/14 8:58:26 PM
    /tmp/KSOutOfProcessFetcher.oKWJJ79TY0/ksfetch[563]
    MDS Error: unable to create user DBs in /var/folders/Zw/ZwiUrc-PG1as5fH6A5NrmE+++TI/-Caches-//mds
    4/19/14 8:58:26 PM
    /tmp/KSOutOfProcessFetcher.oKWJJ79TY0/ksfetch[563]
    MDS Error: unable to create user DBs in /var/folders/Zw/ZwiUrc-PG1as5fH6A5NrmE+++TI/-Caches-//mds
    4/19/14 8:58:26 PM
    kernel
    CODE SIGNING: cs_invalid_page(0x1000): p=562[GoogleSoftwareUp] clearing CS_VALID
    4/19/14 8:58:27 PM
    /tmp/KSOutOfProcessFetcher.GGpTOi01qr/ksfetch[565]
    MDS Error: unable to create user DBs in /var/folders/Zw/ZwiUrc-PG1as5fH6A5NrmE+++TI/-Caches-//mds
    4/19/14 8:58:27 PM
    /tmp/KSOutOfProcessFetcher.GGpTOi01qr/ksfetch[565]
    MDS Error: unable to create user DBs in /var/folders/Zw/ZwiUrc-PG1as5fH6A5NrmE+++TI/-Caches-//mds
    4/19/14 8:58:27 PM
    /tmp/KSOutOfProcessFetcher.GGpTOi01qr/ksfetch[565]
    MDS Error: unable to create user DBs in /var/folders/Zw/ZwiUrc-PG1as5fH6A5NrmE+++TI/-Caches-//mds
    4/19/14 8:58:27 PM
    /tmp/KSOutOfProcessFetcher.GGpTOi01qr/ksfetch[565]
    MDS Error: unable to create user DBs in /var/folders/Zw/ZwiUrc-PG1as5fH6A5NrmE+++TI/-Caches-//mds
    4/19/14 8:58:27 PM
    /tmp/KSOutOfProcessFetcher.GGpTOi01qr/ksfetch[565]
    MDS Error: unable to create user DBs in /var/folders/Zw/ZwiUrc-PG1as5fH6A5NrmE+++TI/-Caches-//mds
    4/19/14 8:58:27 PM
    /tmp/KSOutOfProcessFetcher.GGpTOi01qr/ksfetch[565]
    MDS Error: unable to create user DBs in /var/folders/Zw/ZwiUrc-PG1as5fH6A5NrmE+++TI/-Caches-//mds
    4/19/14 8:58:27 PM
    /tmp/KSOutOfProcessFetcher.GGpTOi01qr/ksfetch[565]
    MDS Error: unable to create user DBs in /var/folders/Zw/ZwiUrc-PG1as5fH6A5NrmE+++TI/-Caches-//mds
    4/19/14 8:58:27 PM
    /tmp/KSOutOfProcessFetcher.GGpTOi01qr/ksfetch[565]
    MDS Error: unable to create user DBs in /var/folders/Zw/ZwiUrc-PG1as5fH6A5NrmE+++TI/-Caches-//mds
    4/19/14 8:58:27 PM
    /tmp/KSOutOfProcessFetcher.GGpTOi01qr/ksfetch[565]
    MDS Error: unable to create user DBs in /var/folders/Zw/ZwiUrc-PG1as5fH6A5NrmE+++TI/-Caches-//mds
    4/19/14 8:58:28 PM
    /Users/ralphcabit/Library/Google/GoogleSoftwareUpdate/GoogleSoftwareUpdate.bundl e/Contents/Resources/GoogleSoftwareUpdateAgent.app/Contents/MacOS/GoogleSoftware UpdateAgent[562]
    MDS Error: unable to create user DBs in /var/folders/Zw/ZwiUrc-PG1as5fH6A5NrmE+++TI/-Caches-//mds
    4/19/14 8:58:28 PM
    /Users/ralphcabit/Library/Google/GoogleSoftwareUpdate/GoogleSoftwareUpdate.bundl e/Contents/Resources/GoogleSoftwareUpdateAgent.app/Contents/MacOS/GoogleSoftware UpdateAgent[562]
    MDS Error: unable to create user DBs in /var/folders/Zw/ZwiUrc-PG1as5fH6A5NrmE+++TI/-Caches-//mds
    4/19/14 8:58:28 PM
    /Users/ralphcabit/Library/Google/GoogleSoftwareUpdate/GoogleSoftwareUpdate.bundl e/Contents/Resources/GoogleSoftwareUpdateAgent.app/Contents/MacOS/GoogleSoftware UpdateAgent[562]
    MDS Error: unable to create user DBs in /var/folders/Zw/ZwiUrc-PG1as5fH6A5NrmE+++TI/-Caches-//mds
    4/19/14 8:58:28 PM
    /Users/ralphcabit/Library/Google/GoogleSoftwareUpdate/GoogleSoftwareUpdate.bundl e/Contents/Resources/GoogleSoftwareUpdateAgent.app/Contents/MacOS/GoogleSoftware UpdateAgent[562]
    MDS Error: unable to create user DBs in /var/folders/Zw/ZwiUrc-PG1as5fH6A5NrmE+++TI/-Caches-//mds
    4/19/14 8:58:28 PM
    /Users/ralphcabit/Library/Google/GoogleSoftwareUpdate/GoogleSoftwareUpdate.bundl e/Contents/Resources/GoogleSoftwareUpdateAgent.app/Contents/MacOS/GoogleSoftware UpdateAgent[562]
    MDS Error: unable to create user DBs in /var/folders/Zw/ZwiUrc-PG1as5fH6A5NrmE+++TI/-Caches-//mds
    4/19/14 8:58:28 PM
    /Users/ralphcabit/Library/Google/GoogleSoftwareUpdate/GoogleSoftwareUpdate.bundl e/Contents/Resources/GoogleSoftwareUpdateAgent.app/Contents/MacOS/GoogleSoftware UpdateAgent[562]
    MDS Error: unable to create user DBs in /var/folders/Zw/ZwiUrc-PG1as5fH6A5NrmE+++TI/-Caches-//mds
    4/19/14 8:58:28 PM
    /Users/ralphcabit/Library/Google/GoogleSoftwareUpdate/GoogleSoftwareUpdate.bundl e/Contents/Resources/GoogleSoftwareUpdateAgent.app/Contents/MacOS/GoogleSoftware UpdateAgent[562]
    MDS Error: unable to create user DBs in /var/folders/Zw/ZwiUrc-PG1as5fH6A5NrmE+++TI/-Caches-//mds
    4/19/14 8:58:28 PM
    /Users/ralphcabit/Library/Google/GoogleSoftwareUpdate/GoogleSoftwareUpdate.bundl e/Contents/Resources/GoogleSoftwareUpdateAgent.app/Contents/MacOS/GoogleSoftware UpdateAgent[562]
    MDS Error: unable to create user DBs in /var/folders/Zw/ZwiUrc-PG1as5fH6A5NrmE+++TI/-Caches-//mds
    4/19/14 8:58:28 PM
    /Users/ralphcabit/Library/Google/GoogleSoftwareUpdate/GoogleSoftwareUpdate.bundl e/Contents/Resources/GoogleSoftwareUpdateAgent.app/Contents/MacOS/GoogleSoftware UpdateAgent[562]
    MDS Error: unable to create user DBs in /var/folders/Zw/ZwiUrc-PG1as5fH6A5NrmE+++TI/-Caches-//mds
    4/19/14 9:26:48 PM
    /Applications/Google Chrome.app/Contents/MacOS/Google Chrome[599]
    MDS Error: unable to create user DBs in /var/folders/Zw/ZwiUrc-PG1as5fH6A5NrmE+++TI/-Caches-//mds
    4/19/14 9:26:48 PM
    /Applications/Google Chrome.app/Contents/MacOS/Google Chrome[599]
    MDS Error: unable to create user DBs in /var/folders/Zw/ZwiUrc-PG1as5fH6A5NrmE+++TI/-Caches-//mds
    4/19/14 9:26:48 PM
    /Applications/Google Chrome.app/Contents/MacOS/Google Chrome[599]
    MDS Error: unable to create user DBs in /var/folders/Zw/ZwiUrc-PG1as5fH6A5NrmE+++TI/-Caches-//mds
    4/19/14 9:26:48 PM
    /Applications/Google Chrome.app/Contents/MacOS/Google Chrome[599]
    MDS Error: unable to create user DBs in /var/folders/Zw/ZwiUrc-PG1as5fH6A5NrmE+++TI/-Caches-//mds
    4/19/14 9:26:48 PM
    /Applications/Google Chrome.app/Contents/MacOS/Google Chrome[599]
    MDS Error: unable to create user DBs in /var/folders/Zw/ZwiUrc-PG1as5fH6A5NrmE+++TI/-Caches-//mds
    4/19/14 9:26:48 PM
    /Applications/Google Chrome.app/Contents/MacOS/Google Chrome[599]
    MDS Error: unable to create user DBs in /var/folders/Zw/ZwiUrc-PG1as5fH6A5NrmE+++TI/-Caches-//mds
    4/19/14 9:26:48 PM
    /Applications/Google Chrome.app/Contents/MacOS/Google Chrome[599]
    MDS Error: unable to create user DBs in /var/folders/Zw/ZwiUrc-PG1as5fH6A5NrmE+++TI/-Caches-//mds
    4/19/14 9:26:48 PM
    /Applications/Google Chrome.app/Contents/MacOS/Google Chrome[599]
    MDS Error: unable to create user DBs in /var/folders/Zw/ZwiUrc-PG1as5fH6A5NrmE+++TI/-Caches-//mds
    4/19/14 9:26:48 PM
    /Applications/Google Chrome.app/Contents/MacOS/Google Chrome[599]
    MDS Error: unable to create user DBs in /var/folders/Zw/ZwiUrc-PG1as5fH6A5NrmE+++TI/-Caches-//mds
    4/19/14 9:26:48 PM
    kernel
    CODE SIGNING: cs_invalid_page(0x1000): p=601[ksadmin] clearing CS_VALID
    4/19/14 9:26:48 PM
    kernel
    CODE SIGNING: cs_invalid_page(0x1000): p=604[ksadmin] clearing CS_VALID
    4/19/14 9:27:07 PM
    [0x0-0x78078].com.google.Chrome[599]
    [599:46851:0419/212707:ERROR:rlz.cc(41)] Not implemented reached in bool GoogleUpdateSettings::GetLanguage(base::string16 *)
    4/19/14 9:27:45 PM
    [0x0-0x78078].com.google.Chrome[599]
    [WARNING:/Volumes/Builds/jenkins/ws/St_Make/code/products/player/pepper/gypbuild /../../../../flash/platform/pepper/pep_url_request_info.cpp(219)] Missing colon in HTTP header line "
    4/19/14 9:27:45 PM
    [0x0-0x78078].com.google.Chrome[599]
    4/19/14 9:29:06 PM
    Google Chrome[599]
    Cannot find function pointer GraphicConverterCMIFactory for factory E3F3BEA1-3194-11D9-87A7-000A95874F98 in CFBundle/CFPlugIn 0x3b41f260 </Users/ralphcabit/Library/Contextual Menu Items/GraphicConverterCMI.plugin> (not loaded)
    4/19/14 9:30:28 PM
    kernel
    SAM Multimedia: READ or WRITE failed, SENSE_KEY = 0x05, ASC = 0x20, ASCQ = 0x00
    4/19/14 9:30:28 PM
    kernel
    SAM Multimedia: READ or WRITE failed, SENSE_KEY = 0x05, ASC = 0x20, ASCQ = 0x00
    4/19/14 9:30:28 PM
    kernel
    SAM Multimedia: READ or WRITE failed, SENSE_KEY = 0x05, ASC = 0x20, ASCQ = 0x00
    4/19/14 9:30:28 PM
    kernel
    SAM Multimedia: READ or WRITE failed, SENSE_KEY = 0x05, ASC = 0x20, ASCQ = 0x00
    4/19/14 9:30:28 PM
    kernel
    SAM Multimedia: READ or WRITE failed, SENSE_KEY = 0x05, ASC = 0x20, ASCQ = 0x00
    4/19/14 9:30:28 PM
    KernelEventAgent[39]
    tid 00000000 received event(s) VQ_LOWDISK, VQ_VERYLOWDISK (516)
    4/19/14 9:32:00 PM
    Google Chrome[599]
    Cannot find function pointer GraphicConverterCMIFactory for factory E3F3BEA1-3194-11D9-87A7-000A95874F98 in CFBundle/CFPlugIn 0x3b41f260 </Users/ralphcabit/Library/Contextual Menu Items/GraphicConverterCMI.plugin> (not loaded)
    4/19/14 9:35:41 PM
    /Applications/Google Chrome.app/Contents/MacOS/Google Chrome[650]
    MDS Error: unable to create user DBs in /var/folders/Zw/ZwiUrc-PG1as5fH6A5NrmE+++TI/-Caches-//mds
    4/19/14 9:35:41 PM
    /Applications/Google Chrome.app/Contents/MacOS/Google Chrome[650]
    MDS Error: unable to create user DBs in /var/folders/Zw/ZwiUrc-PG1as5fH6A5NrmE+++TI/-Caches-//mds
    4/19/14 9:35:41 PM
    /Applications/Google Chrome.app/Contents/MacOS/Google Chrome[650]
    MDS Error: unable to create user DBs in /var/folders/Zw/ZwiUrc-PG1as5fH6A5NrmE+++TI/-Caches-//mds
    4/19/14 9:35:41 PM
    /Applications/Google Chrome.app/Contents/MacOS/Google Chrome[650]
    MDS Error: unable to create user DBs in /var/folders/Zw/ZwiUrc-PG1as5fH6A5NrmE+++TI/-Caches-//mds
    4/19/14 9:35:41 PM
    /Applications/Google Chrome.app/Contents/MacOS/Google Chrome[650]
    MDS Error: unable to create user DBs in /var/folders/Zw/ZwiUrc-PG1as5fH6A5NrmE+++TI/-Caches-//mds
    4/19/14 9:35:41 PM
    /Applications/Google Chrome.app/Contents/MacOS/Google Chrome[650]
    MDS Error: unable to create user DBs in /var/folders/Zw/ZwiUrc-PG1as5fH6A5NrmE+++TI/-Caches-//mds
    4/19/14 9:35:41 PM
    /Applications/Google Chrome.app/Contents/MacOS/Google Chrome[650]
    MDS Error: unable to create user DBs in /var/folders/Zw/ZwiUrc-PG1as5fH6A5NrmE+++TI/-Caches-//mds
    4/19/14 9:35:41 PM
    /Applications/Google Chrome.app/Contents/MacOS/Google Chrome[650]
    MDS Error: unable to create user DBs in /var/folders/Zw/ZwiUrc-PG1as5fH6A5NrmE+++TI/-Caches-//mds
    4/19/14 9:35:41 PM
    /Applications/Google Chrome.app/Contents/MacOS/Google Chrome[650]
    MDS Error: unable to create user DBs in /var/folders/Zw/ZwiUrc-PG1as5fH6A5NrmE+++TI/-Caches-//mds
    4/19/14 9:35:41 PM
    kernel
    CODE SIGNING: cs_invalid_page(0x1000): p=652[ksadmin] clearing CS_VALID
    4/19/14 9:35:41 PM
    kernel
    CODE SIGNING: cs_invalid_page(0x1000): p=655[ksadmin] clearing CS_VALID
    4/19/14 9:36:00 PM
    [0x0-0x88088].com.google.Chrome[650]
    [650:46339:0419/213600:ERROR:rlz.cc(41)] Not implemented reached in bool GoogleUpdateSettings::GetLanguage(base::string16 *)
    4/19/14 9:39:03 PM
    com.apple.kextcache[628]
    Created prelinked kernel /System/Library/Caches/com.apple.kext.caches/Startup/kernelcache_i386.AF146629.
    4/19/14 9:56:45 PM
    [0x0-0x88088].com.google.Chrome[650]
    Warning: unknown JFIF revision number 2.01
    4/19/14 9:56:45 PM
    [0x0-0x88088].com.google.Chrome[650]
    Warning: unknown JFIF revision number 2.01
    4/19/14 9:56:45 PM
    [0x0-0x88088].com.google.Chrome[650]
    Warning: unknown JFIF revision number 2.01
    4/19/14 9:56:45 PM
    [0x0-0x88088].com.google.Chrome[650]
    Warning: unknown JFIF revision number 2.01
    4/19/14 9:56:45 PM
    [0x0-0x88088].com.google.Chrome[650]
    Warning: unknown JFIF revision number 2.01
    4/19/14 9:57:09 PM
    kernel
    CODE SIGNING: cs_invalid_page(0x1000): p=680[GoogleSoftwareUp] clearing CS_VALID
    4/19/14 10:46:25 PM
    quicklookd[714]
    [QL] 'Creating thumbnail - cancelled' timed out for '<QLThumbnailRequest /Volumes/HD4/MUSIC VIDS/Zappa - Video From **** DivX.avi>' (Start date: 2014-04-19 22:46:13 +0900)
    4/19/14 10:46:49 PM
    VLC[716]
    Error loading /Library/Audio/Plug-Ins/HAL/DVCPROHDAudio.plugin/Contents/MacOS/DVCPROHDAudio:  dlopen(/Library/Audio/Plug-Ins/HAL/DVCPROHDAudio.plugin/Contents/MacOS/DVCPROHD Audio, 262): no suitable image found.  Did find:
    /Library/Audio/Plug-Ins/HAL/DVCPROHDAudio.plugin/Contents/MacOS/DVCPROHDAudio: no matching architecture in universal wrapper
    4/19/14 10:46:49 PM
    VLC[716]
    Cannot find function pointer NewPlugIn for factory C5A4CE5B-0BB8-11D8-9D75-0003939615B6 in CFBundle/CFPlugIn 0x100647cf0 </Library/Audio/Plug-Ins/HAL/DVCPROHDAudio.plugin> (bundle, not loaded)
    4/19/14 10:46:49 PM
    [0x0-0x9a09a].org.videolan.vlc[716]
    [0x1002240e0] main libvlc: Running vlc with the default interface. Use 'cvlc' to use vlc without interface.
    4/19/14 10:46:50 PM
    VLC[716]
    ERROR: <PXSourceList: 0x10028b800>: Attempt to set unknown item as dropItem=<SideBarItem: 0x13636ab70>.
    4/19/14 10:46:50 PM
    [0x0-0x9a09a].org.videolan.vlc[716]
    [mpeg4 @ 0x103802c00] Video uses a non-standard and wasteful way to store B-frames ('packed B-frames'). Consider using a tool like VirtualDub or avidemux to fix it.
    4/19/14 10:46:50 PM
    [0x0-0x9a09a].org.videolan.vlc[716]
    [0x103800cb0] mpgatofixed32 audio converter error: libmad error: bad main_data_begin pointer
    4/19/14 10:46:50 PM
    /System/Library/Frameworks/CoreServices.framework/Frameworks/Metadata.framework/ Versions/A/Support/mdworker[649]
    MDS Error: unable to create user DBs in /var/folders/Zw/ZwiUrc-PG1as5fH6A5NrmE+++TI/-Caches-//mds
    4/19/14 10:46:50 PM
    /System/Library/Frameworks/CoreServices.framework/Frameworks/Metadata.framework/ Versions/A/Support/mdworker[649]
    MDS Error: unable to create user DBs in /var/folders/Zw/ZwiUrc-PG1as5fH6A5NrmE+++TI/-Caches-//mds
    4/19/14 10:46:50 PM
    /System/Library/Frameworks/CoreServices.framework/Frameworks/Metadata.framework/ Versions/A/Support/mdworker[649]
    MDS Error: unable to create user DBs in /var/folders/Zw/ZwiUrc-PG1as5fH6A5NrmE+++TI/-Caches-//mds
    4/19/14 10:46:50 PM
    /System/Library/Frameworks/CoreServices.framework/Frameworks/Metadata.framework/ Versions/A/Support/mdworker[649]
    MDS Error: unable to create user DBs in /var/folders/Zw/ZwiUrc-PG1as5fH6A5NrmE+++TI/-Caches-//mds
    4/19/14 10:46:50 PM
    /System/Library/Frameworks/CoreServices.framework/Frameworks/Metadata.framework/ Versions/A/Support/mdworker[649]
    MDS Error: unable to create user DBs in /var/folders/Zw/ZwiUrc-PG1as5fH6A5NrmE+++TI/-Caches-//mds
    4/19/14 10:46:50 PM
    /System/Library/Frameworks/CoreServices.framework/Frameworks/Metadata.framework/ Versions/A/Support/mdworker[649]
    MDS Error: unable to create user DBs in /var/folders/Zw/ZwiUrc-PG1as5fH6A5NrmE+++TI/-Caches-//mds
    4/19/14 10:46:50 PM
    /System/Library/Frameworks/CoreServices.framework/Frameworks/Metadata.framework/ Versions/A/Support/mdworker[649]
    MDS Error: unable to create user DBs in /var/folders/Zw/ZwiUrc-PG1as5fH6A5NrmE+++TI/-Caches-//mds
    4/19/14 10:46:50 PM
    [0x0-0x9a09a].org.videolan.vlc[716]
    [mpeg4 @ 0x100830c00] Video uses a non-standard and wasteful way to store B-frames ('packed B-frames'). Consider using a tool like VirtualDub or avidemux to fix it.
    4/19/14 10:46:50 PM
    [0x0-0x9a09a].org.videolan.vlc[716]
    [0x1020730b0] mpgatofixed32 audio converter error: libmad error: bad main_data_begin pointer
    4/19/14 10:46:52 PM
    [0x0-0x9a09a].org.videolan.vlc[716]
    shader program 1: WARNING: vertex shader writes varying 'TexCoord1' which is not active.
    4/19/14 10:46:52 PM
    [0x0-0x9a09a].org.videolan.vlc[716]
    WARNING: vertex shader writes varying 'TexCoord2' which is not active.
    4/19/14 10:47:16 PM
    [0x0-0x9a09a].org.videolan.vlc[716]
    [0x1038948b0] mpgatofixed32 audio converter error: libmad error: bad main_data_begin pointer
    4/19/14 10:47:16 PM
    [0x0-0x9a09a].org.videolan.vlc[716]
    [0x1038948b0] mpgatofixed32 audio converter error: libmad error: bad main_data_begin pointer
    4/19/14 10:55:52 PM
    kernel
    CODE SIGNING: cs_invalid_page(0x1000): p=733[GoogleSoftwareUp] clearing CS_VALID
    4/19/14 10:59:41 PM
    [0x0-0x9a09a].org.videolan.vlc[716]
    [flv @ 0x10105a200] Stream discovered after head already parsed
    4/19/14 10:59:41 PM
    [0x0-0x9a09a].org.videolan.vlc[716]
    [flv @ 0x1038a0400] Stream discovered after head already parsed
    4/19/14 10:59:41 PM
    [0x0-0x9a09a].org.videolan.vlc[716]
    shader program 1: WARNING: vertex shader writes varying 'TexCoord1' which is not active.
    4/19/14 10:59:41 PM
    [0x0-0x9a09a].org.videolan.vlc[716]
    WARNING: vertex shader writes varying 'TexCoord2' which is not active.
    4/19/14 11:52:41 PM
    [0x0-0x32032].com.azureus.vuze[282]
    Jeff Beck - There and Back (1980) [EAC-FLAC]: Incoming keep-alive message flood detected, dropping spamming peer connection.L: 5.254.138.76: 59929 [Transmission 2.82]
    4/19/14 11:54:36 PM
    kernel
    CODE SIGNING: cs_invalid_page(0x1000): p=806[GoogleSoftwareUp] clearing CS_VALID
    4/20/14 12:12:32 AM
    [0x0-0x9a09a].org.videolan.vlc[716]
    [flv @ 0x103860c00] Stream discovered after head already parsed
    4/20/14 12:12:33 AM
    [0x0-0x32032].com.azureus.vuze[282]
    core.stop
    4/20/14 12:12:33 AM
    [0x0-0x32032].com.azureus.vuze[282]
    Stopping idle sleep preventer
    4/20/14 12:12:36 AM
    [0x0-0x32032].com.azureus.vuze[282]
    core.stop done in 3100
    4/20/14 12:12:36 AM
    System Preferences[823]
    Error loading /Library/Audio/Plug-Ins/HAL/DVCPROHDAudio.plugin/Contents/MacOS/DVCPROHDAudio:  dlopen(/Library/Audio/Plug-Ins/HAL/DVCPROHDAudio.plugin/Contents/MacOS/DVCPROHD Audio, 262): no suitable image found.  Did find:
    /Library/Audio/Plug-Ins/HAL/DVCPROHDAudio.plugin/Contents/MacOS/DVCPROHDAudio: no matching architecture in universal wrapper
    4/20/14 12:12:36 AM
    System Preferences[823]
    Cannot find function pointer NewPlugIn for factory C5A4CE5B-0BB8-11D8-9D75-0003939615B6 in CFBundle/CFPlugIn 0x200081d60 </Library/Audio/Plug-Ins/HAL/DVCPROHDAudio.plugin> (bundle, not loaded)
    4/20/14 12:12:56 AM
    com.apple.launchd.peruser.501[130]
    ([0x0-0x4f04f].com.apple.Preview[416]) Exited: Killed
    4/20/14 12:12:56 AM
    com.apple.launchd.peruser.501[130]
    (com.apple.AirPortBaseStationAgent[166]) Exited: Killed
    4/20/14 12:12:56 AM
    com.apple.launchd.peruser.501[130]
    (com.apple.FolderActions.enabled[170]) Exited: Killed
    4/20/14 12:12:56 AM
    com.apple.launchd.peruser.501[130]
    ([0x0-0x8008].com.apple.inputmethod.Kotoeri[155]) Exited: Killed
    4/20/14 12:12:56 AM
    loginwindow[38]
    DEAD_PROCESS: 38 console
    4/20/14 12:12:57 AM
    kernel
    systemShutdown true
    4/20/14 12:12:57 AM
    kernel
    systemShutdown true
    4/20/14 12:12:57 AM
    shutdown[828]
    halt by ralphcabit:
    4/20/14 12:12:57 AM
    shutdown[828]
    SHUTDOWN_TIME: 1397920377 530969
    4/20/14 12:12:58 AM
    kernel
    Kext loading now disabled.
    4/20/14 12:12:58 AM
    kernel
    Kext unloading now disabled.
    4/20/14 12:12:58 AM
    kernel
    Kext autounloading now disabled.
    4/20/14 12:12:58 AM
    kernel
    Kernel requests now disabled.
    4/20/14 12:13:17 AM
    mDNSResponder[37]
    mDNSResponder mDNSResponder-258.21 (May 26 2011 14:40:13) stopping
    4/20/14 12:13:17 AM
    DirectoryService[16]
    BUG in libdispatch: 10K549 - 1960 - 0x10004004
    4/20/14 12:13:17 AM
    com.apple.SecurityServer[33]
    Session 0x301fe0 dead
    4/20/14 12:13:17 AM
    com.apple.SecurityServer[33]
    Killing auth hosts
    4/20/14 12:13:17 AM
    WindowServer[91]
    hidd died. Reestablishing connection.
    4/20/14 12:13:17 AM
    com.apple.SecurityServer[33]
    Session 0x301fe0 destroyed
    4/20/14 10:45:55 AM
    kernel
    npvhash=4095
    4/20/14 12:13:17 AM
    WindowServer[91]
    bootstrap_look_ip failed: Unknown service name
    4/20/14 10:45:55 AM
    kernel
    PAE enabled
    4/20/14 10:45:55 AM
    kernel
    64 bit mode enabled
    4/20/14 10:45:55 AM
    kernel
    Darwin Kernel Version 10.8.0: Tue Jun  7 16:33:36 PDT 2011; root:xnu-1504.15.3~1/RELEASE_I386
    4/20/14 10:45:55 AM
    kernel
    vm_page_bootstrap: 6159568 free pages and 99120 wired pages
    4/20/14 10:45:55 AM
    kernel
    standard timeslicing quantum is 10000 us
    4/20/14 10:45:55 AM
    kernel
    mig_table_max_displ = 73
    4/20/14 10:45:55 AM
    kernel
    AppleACPICPU: ProcessorId=0 LocalApicId=0 Enabled
    4/20/14 10:45:55 AM
    kernel
    AppleACPICPU: ProcessorId=1 LocalApicId=1 Enabled
    4/20/14 10:45:55 AM
    kernel
    AppleACPICPU: ProcessorId=2 LocalApicId=6 Enabled
    4/20/14 10:45:55 AM
    kernel
    AppleACPICPU: ProcessorId=3 LocalApicId=7 Enabled
    4/20/14 10:45:55 AM
    kernel
    AppleACPICPU: ProcessorId=4 LocalApicId=0 Disabled
    4/20/14 10:45:55 AM
    kernel
    AppleACPICPU: ProcessorId=5 LocalApicId=0 Disabled
    4/20/14 10:45:55 AM
    kernel
    AppleACPICPU: ProcessorId=6 LocalApicId=0 Disabled
    4/20/14 10:45:55 AM
    kernel
    AppleACPICPU: ProcessorId=7 LocalApicId=0 Disabled
    4/20/14 10:45:55 AM
    kernel
    calling mpo_policy_init for TMSafetyNet
    4/20/14 10:45:55 AM
    kernel
    Security policy loaded: Safety net for Time Machine (TMSafetyNet)
    4/20/14 10:45:55 AM
    kernel
    calling mpo_policy_init for Quarantine
    4/20/14 10:45:55 AM
    kernel
    Security policy loaded: Quarantine policy (Quarantine)
    4/20/14 10:45:55 AM
    kernel
    calling mpo_policy_init for Sandbox
    4/20/14 10:45:55 AM
    kernel
    Security policy loaded: Seatbelt sandbox policy (Sandbox)
    4/20/14 10:45:55 AM
    kernel
    Copyright (c) 1982, 1986, 1989, 1991, 1993
    4/20/14 10:45:55 AM
    kernel
    The Regents of the University of California. All rights reserved.
    4/20/14 10:45:55 AM
    kernel
    MAC Framework successfully initialized
    4/20/14 10:45:55 AM
    kernel
    using 16384 buffer headers and 4096 cluster IO buffer headers
    4/20/14 10:45:55 AM
    kernel
    IOAPIC: Version 0x20 Vectors 64:87
    4/20/14 10:45:55 AM
    kernel
    ACPI: System State [S0 S3 S4 S5] (S3)
    4/20/14 10:45:55 AM
    kernel
    PFM64 0xf10000000, 0xf0000000
    4/20/14 10:45:55 AM
    kernel
    [ PCI configuration begin ]
    4/20/14 10:45:55 AM
    kernel
    PCI configuration changed (bridge=4 device=1 cardbus=0)
    4/20/14 10:45:55 AM
    kernel
    [ PCI configuration end, bridges 17 devices 26 ]
    4/20/14 10:45:55 AM
    kernel
    AppleIntelCPUPowerManagement: (built 16:44:45 Jun  7 2011) initialization complete
    4/20/14 10:45:55 AM
    kernel
    mbinit: done (64 MB memory set for mbuf pool)
    4/20/14 10:45:55 AM
    kernel
    rooting via boot-uuid from /chosen: 09A76986-C881-305A-9A97-15F2D98B28A5
    4/20/14 10:45:55 AM
    kernel
    Waiting on <dict ID="0"><key>IOProviderClass</key><string ID="1">IOResources</string><key>IOResourceMatch</key><string ID="2">boot-uuid-media</string></dict>
    4/20/14 10:45:55 AM
    kernel
    com.apple.AppleFSCompressionTypeZlib kmod start
    4/20/14 10:45:55 AM
    kernel
    com.apple.AppleFSCompressionTypeZlib load succeeded
    4/20/14 10:45:55 AM
    kernel
    AppleIntelCPUPowerManagementClient: ready
    4/20/14 10:45:55 AM
    kernel
    Got boot device = IOService:/AppleACPIPlatformExpert/PCI0@0/AppleACPIPCI/SATA@1F,2/AppleAHCI/PRT0 @0/IOAHCIDevice@0/AppleAHCIDiskDriver/IOAHCIBlockStorageDevice/IOBlockStorageDri ver/WDC WD2500AAJS-41RYA0 Media/IOGUIDPartitionScheme/Customer@2
    4/20/14 10:45:55 AM
    kernel
    BSD root: disk0s2, major 14, minor 2
    4/20/14 10:45:55 AM
    kernel
    FireWire (OHCI) TI ID 8025 built-in now active, GUID 001cb3fffe8e3a66; max speed s800.
    4/20/14 10:45:55 AM
    kernel
    SAM Multimedia: READ or WRITE failed, SENSE_KEY = 0x05, ASC = 0x20, ASCQ = 0x00
    4/20/14 10:45:55 AM
    kernel
    SAM Multimedia: READ or WRITE failed, SENSE_KEY = 0x05, ASC = 0x20, ASCQ = 0x00
    4/20/14 10:45:55 AM
    kernel
    SAM Multimedia: READ or WRITE failed, SENSE_KEY = 0x05, ASC = 0x20, ASCQ = 0x00
    4/20/14 10:45:55 AM
    kernel
    SAM Multimedia: READ or WRITE failed, SENSE_KEY = 0x05, ASC = 0x20, ASCQ = 0x00
    4/20/14 10:45:55 AM
    kernel
    SAM Multimedia: READ or WRITE failed, SENSE_KEY = 0x05, ASC = 0x20, ASCQ = 0x00
    4/20/14 10:45:50 AM
    com.apple.launchd[1]
    *** launchd[1] has started up. ***
    4/20/14 10:45:55 AM
    com.apple.launchd[1]
    (com.apple.usbmuxd) Unknown key: POSIXSpawnType
    4/20/14 10:45:56 AM
    kernel
    AppleIntel8254XEthernet: Ethernet address 00:17:f2:0d:18:4a
    4/20/14 10:45:56 AM
    kernel
    AppleIntel8254XEthernet: Ethernet address 00:17:f2:0d:18:4b
    4/20/14 10:45:56 AM
    kernel
    systemShutdown false
    System Diagnostic Report (last one)
    Process:         plugin-container [236]
    Path:            /Applications/Firefox.app/Contents/MacOS/plugin-container.app/Contents/MacOS/pl ugin-container
    Identifier:      plugin-container
    Version:         ??? (???)
    Code Type:       X86-64 (Native)
    Parent Process:  firefox [220]
    Date/Time:       2014-04-12 17:49:47.384 +0900
    OS Version:      Mac OS X 10.6.8 (10K549)
    Report Version:  6
    Interval Since Last Report:          271743 sec
    Crashes Since Last Report:           6
    Per-App Crashes Since Last Report:   6
    Anonymous UUID:                      1D7447CF-D1D4-4E24-AEAA-5DEA325A3E4A
    Exception Type:  EXC_BREAKPOINT (SIGTRAP)
    Exception Codes: 0x0000000000000002, 0x0000000000000000
    Crashed Thread:  0
    Dyld Error Message:
      could not load inserted library:
    Binary Images:
        0x7fff5fc00000 -     0x7fff5fc3bdef  dyld 132.1 (???) <69130DA3-7CB3-54C8-ABC5-423DECDD2AF7> /usr/lib/dyld
    System Profile:
    Model: MacPro1,1, BootROM MP11.005C.B08, 4 processors, Dual-Core Intel Xeon, 2.66 GHz, 12 GB, SMC 1.7f10
    Graphics: ATI Radeon HD 5770, ATI Radeon HD 5770, PCIe, 1024 MB
    Graphics: NVIDIA GeForce 7300 GT, NVIDIA GeForce 7300 GT, PCIe, 32768 MB
    Memory Module: global_name
    Network Service: Ethernet 2, Ethernet, en1
    PCI Card: ATI Radeon HD 5770, sppci_displaycontroller, Slot-1
    PCI Card: ATI Radeon HD 5770, ATY,HoolockParent, Slot-1
    PCI Card: NVIDIA GeForce 7300 GT, sppci_displaycontroller, Slot-2
    Serial ATA Device: WDC WD2500AAJS-41RYA0, 232.89 GB
    Serial ATA Device: WDC WD20EARX-00PASB0, 1.82 TB
    Serial ATA Device: WDC WD5000AAKS-00TMA0, 465.76 GB
    Serial ATA Device: Hitachi HDP725050GLA360, 465.76 GB
    Parallel ATA Device: PIONEER DVD-RW  DVR-112D
    USB Device: Composite Device, 0x0763  (M-Audio), 0x1002, 0x5d100000 / 2
    USB Device: nanoKONTROL2, 0x0944  (KORG, Inc.), 0x0117, 0x1d200000 / 2
    USB Device: Hub in Apple Pro Keyboard, 0x05ac  (Apple Inc.), 0x1003, 0x3d100000 / 2
    USB Device: Apple Optical USB Mouse, 0x05ac  (Apple Inc.), 0x0304, 0x3d110000 / 4
    USB Device: Apple Pro Keyboard, 0x05ac  (Apple Inc.), 0x020d, 0x3d130000 / 3
    FireWire Device: built-in_hub, Up to 800 Mb/sec
    FireWire Device: My Book 1112, WD, Up to 800 Mb/sec

Maybe you are looking for