Creating a cursor that returns both a set and a singleton

I have a situation where I have dozens of statically defined pl/sql cursors, along with result processing, where I'd like to modify the cursor definitions in such a way that they may be used to return either a single row or a set.
The effect would be to dynamically add a 'where xx.id = <variable>' predicate to the set oriented cursor to return a single row, but where if I say something (which I know I can't) like 'where xx.id = ANY', then the predicate is effectively ignored.
I don't want to use dynamic sql for performance reasons, and obviously I don't want to have replicate reams of queries and code.
Anyone have any thoughts on how to do this?
Thanks, Jim
Edited by: 922615 on Mar 21, 2012 7:35 PM

It sounds like you just want
CURSOR cursor_name( p_id IN NUMBER )
    IS SELECT *
         FROM some_table
        WHERE (p_id IS NULL or id = p_id );If you pass a NULL for p_id, you'll get every row back. If you pass a non-NULL ID, you'll get just the one row.
Justin

Similar Messages

  • How do we create a CURSOR that consists of two TABLES

    I would like to access a cursor that has columns from two tables.

    How do we create a CURSOR that consists of two TABLESA cursor does not consist of data. A cursor is not a result set that is created in the memory of the database server and populated with "+results+".
    A cursor is source code (SQL or anonymous PL/SQL block) that has been compiled into an executable program. The execution plan (see the EXPLAIN PLAN SQL command) describes the structure of this program and how it will be executed.
    When you fetch data from a cursor, you are receiving the output of this executable program known as a cursor.
    So as the other respondents explained in this thread, you need to create SQL source code that joins tables. Then you send this SQL to the server, where it is parsed and compiled into a cursor in the database's Shared Pool (together with all other SQLs that the database received - all SQLs are compiled as cursors).
    Once this is done, you can open the cursor (execute the cursor program) and fetch data from it.

  • How to create a function that returns multiple rows in table

    Dear all,
    I want to create a funtion that returns multiple rows from the table (ex: gl_balances). I done following:
    -- Create type (successfull)
    Create or replace type tp_gl_balance as Object
    PERIOD_NAME VARCHAR2(15),
    CURRENCY_CODE VARCHAR2(15),
    PERIOD_TYPE VARCHAR2(15),
    PERIOD_YEAR NUMBER(15),
    BEGIN_BALANCE_DR NUMBER,
    BEGIN_BALANCE_CR NUMBER
    -- successfull
    create type tp_tbl_gl_balance as table of tp_gl_balance;
    but i create a function for return some rows from gl_balances, i can't compile it
    create or replace function f_gl_balance(p_period varchar2) return tp_tbl_gl_balance pipelined
    as
    begin
    return
    (select gb.period_name, gb.currency_code, gb.period_type, gb.period_year, gb.begin_balance_dr, gb.begin_balance_cr
    from gl_balances gb
    where gb.period_name = p_period);
    end;
    I also try
    create or replace function f_gl_balance(p_period varchar2) return tp_tbl_gl_balance pipelined
    as
    begin
    select gb.period_name, gb.currency_code, gb.period_type, gb.period_year, gb.begin_balance_dr, gb.begin_balance_cr
    from gl_balances gb
    where gb.period_name = p_period;
    return;
    end;
    Please help me solve this function.
    thanks and best reguard

    hi,
    Use TABLE FUNCTIONS,
    [http://www.oracle-base.com/articles/9i/PipelinedTableFunctions9i.php]
    Regards,
    Danish

  • Sending an Email with a cursor that returns multiple fields.

    I was investigating about sending emails from apex, and I'd like to know if you can help me, I need to send an Email report with multiple fields, I m using this code :
    DECLARE
    CURSOR c1 is
    select id,gk,creation_date,sr_count,issue_notes,sr_impacted,oldest_creation_date
    from gk_report where id = (select max(id) from gk_report);
    reg c1%ROWTYPE;
    begin
    IF (c1%ISOPEN = TRUE) THEN
    CLOSE c1;
    END IF;
    OPEN c1;
    FETCH c1 INTO reg;
    CLOSE c1;
    APEX_MAIL.send(
    p_to => '[email protected]',
    p_from => '[email protected]',
    p_body => 'Hourly GK Log',
    p_body_html =>
    'GK: '||to_char(reg.gk)||'<br>
    CREATION DATE: '||to_char(reg.CREATION_DATE,'DD-MON-YYYY HH24:MI:SS')||'<br>
    SR COUNT: '||to_char(reg.SR_COUNT)||'<br>
    ISSUE NOTES: '||to_char(reg.ISSUE_NOTES)||'<br>
    SRs IMPACTED: '||to_char(reg.SR_IMPACTED)||'<br>
    OLDEST CREATION DATE: '||to_char(reg.OLDEST_CREATION_DATE,'DD-MON-YYYY HH24:MI:SS'),
    p_SUBJ => 'Hourly GK Log: ' || to_char(reg.CREATION_DATE,'DD-MON-YYYY HH24:MI:SS'),
    p_cc => NULL,
    p_bcc => NULL ,
    p_replyto => NULL
    end;
    In this code there is a cursor that returns just one field, But what about if the cursor returns multiple fields, How can I insert a Loop into this code.?
    Thanks,
    Pablo.

    Hi,
    DECLARE
    p_collection_name VARCHAR2(9000) := 'Report_collection';
    begin
      IF (apex_collection.collection_exists(p_collection_name => p_collection_name)) THEN
         apex_collection.delete_collection(p_collection_name => p_collection_name);
      END IF;
    apex_collection.create_collection_from_query(
            p_collection_name => 'Report_collection',
            p_query => 'SELECT DISTINCT AUD_SR AS SR,  C.USER_NAME   AS AUDITOR, F.ERROR_NAM  ,  A.AUD_OBSERV AS AUDIT_OBS,D.FEEDBK_OBSERV AS FEEDBACK_OBS , E.ANALYSIS_OBS ,A.AUD_STATUS
    FROM   AUDIT_PROCESS A, MICC_AT_DATA B, MICC_AT_USER C, FEEDBACK_PROCESS D, MICC_AT_ANALISYS E, MICC_AT_ERROR F
    WHERE   B.DATA_MONTH = :P27_MONTH AND B.DATA_SR  = A.AUD_SR AND C.ID = B.DATA_AUDITOR  AND F.ERROR_ID = A.AUD_ERROR AND A.FEEDBACK_COD = D.FEEDBACK_COD AND  D.FEEDBK_AGREE = 'N' AND E.COD_ANALYSIS =  A.COD_ANALYSIS  ORDER BY AUDITOR');
      APEX_MAIL.send(
      p_to => '[email protected]',
    p_from => '[email protected]',
    p_body => p_collection_name ,
    p_body_html => '',
    p_SUBJ => 'hi',
    p_cc => NULL,
    p_bcc => NULL ,
    p_replyto => NULL
    END;
    Error
    ORA-06550: line 18, column 176:
    PLS-00103: Encountered the symbol " AND E.COD_ANALYSIS = A.COD_ANALYSIS ORDER BY AUDITOR" when expecting one of the following:
    ) , * & = - + < / > at in is mod remainder not rem
    <> or != or ~= >= <= <> and or like like2
    like4 likec between || multiset member submultiset
    The symbol "," was substituted for " AND E.COD_ANALYSIS = A.COD_ANALYSIS ORDER BY AUDITOR" to continue.
    1. DECLARE
    2. p_collection_name VARCHAR2(9000) := 'Report_collection';
    3. begin
    I got out the 'N' quotes of the N :
    DECLARE
    p_collection_name VARCHAR2(9000) := 'Report_collection';
    begin
      IF (apex_collection.collection_exists(p_collection_name => p_collection_name)) THEN
         apex_collection.delete_collection(p_collection_name => p_collection_name);
      END IF;
    apex_collection.create_collection_from_query(
            p_collection_name => 'Report_collection',
            p_query => 'SELECT DISTINCT AUD_SR AS SR,  C.USER_NAME   AS AUDITOR, F.ERROR_NAM  ,  A.AUD_OBSERV AS AUDIT_OBS,D.FEEDBK_OBSERV AS FEEDBACK_OBS , E.ANALYSIS_OBS ,A.AUD_STATUS
    FROM   AUDIT_PROCESS A, MICC_AT_DATA B, MICC_AT_USER C, FEEDBACK_PROCESS D, MICC_AT_ANALISYS E, MICC_AT_ERROR F
    WHERE   B.DATA_MONTH = :P27_MONTH AND B.DATA_SR  = A.AUD_SR AND C.ID = B.DATA_AUDITOR  AND F.ERROR_ID = A.AUD_ERROR AND A.FEEDBACK_COD = D.FEEDBACK_COD AND  D.FEEDBK_AGREE = N AND E.COD_ANALYSIS =  A.COD_ANALYSIS  ORDER BY AUDITOR');
      APEX_MAIL.send(
      p_to => '[email protected]',
    p_from => '[email protected]',
    p_body => p_collection_name ,
    p_body_html => '',
    p_SUBJ => 'hi',
    p_cc => NULL,
    p_bcc => NULL ,
    p_replyto => NULL
    END;
    Error : ORA-20104: create_collection_from_query Error:ORA-20104: create_collection_from_query ParseErr:ORA-00904: "N": invalid identifier
    If you can help me would be great, and if you see another mistake please let me know i have not may reach out the solution about it.
    Thanks,
    Pablo.

  • Return both user name and password

    hi
    I have small code
    public String validateUser(String userId, String password)
    throws SQLException, ClassNotFoundException{
    String returnString = null;
    Connection con=null;
      //get free connection from pool
       con =connectionPool.getConnection();
          Statement       stmt = con.createStatement(
                           ResultSet.TYPE_SCROLL_SENSITIVE,
                           ResultSet.CONCUR_READ_ONLY);
    String sql = "select password from users where Name='"+userId+"' and password='"+password+"'";
    ResultSet rs = stmt.executeQuery(sql);
    if (rs.next())
    returnString = rs.getString("password");
    connectionPool.returnConnection(con);
    stmt.close();
    con.close();
    return returnString;
    }if I want to return both User Id and Password, How should I modify the code.
    Thank you!

    Hi TMary,
    I think you should make wrapper class that contains userID and Password because as we are programmer knowledge, we cant return 2 objects! So maybe you should make wrapper class like
    class User
    public userName;
    public password;
    you can also make private and make public get and set method
    I hope that can help you!
    From wizz

  • How do I create a filter that bypasses the in page and goes directly to spam rather to delete?

    How do I create a filter that bypasses the in page and goes directly to spam rather than to delete?

    From your question I'm going to guess you are talking about Mac Mail.
    If you are talking about a RULE then the "Perform the following actions:" would be to select "Move Message" to mailbox "Junk" instead of "Delete Message."
    If you are talking about something else then please give more information.

  • How to create bdc for fbs1 using both call transaction and session

    Hi Friends,
    i have one problem with tcode FBS1, i need to create a bdc program for both call transaction and session method using subroutine.
    first call transaction needs to execute if there is an error sesion has to execute. if u have code please forward.
    thanks in advance.
    chandramouli pothugunta

    where as in call transaction we can do error handling explictly.those errors  are stored in one file .this file will send to the error log(session method),i.e session log.
    in the above case we use both call transaction n session method at time in one program.sample code is below ,go through it .
    data : begin of itxk01 occurs 0,
    end of itxk01.
    data : bdcdata like itbdcdata occurs 0 with header line.
    data : itbdcmsgcoll like itbdcmsgcoll occurs 0 with header line,
             itxk01 like itxk01-dup occurs 0 with header line.
    call gui-upload.
    loop at itxk01.
    refresh itxk01.
    perform bdc-dynpr0 using 'prg' 'scr'
    perform bdc-dynfld using fnam fval
    call transaction 'xk01' using bdcdata mode 'a' update 's' messages into itbdcmsgcoll.
    if sy-subrc ne 0.
    append itxk01 into  itxk01-dup.
    endif.
    endloop.
    if not itxk01-dup[] is initial.
    refresh itck01.
    call bdc_open_group
    itxk01 = itxk01-dup.
    loop at itxk01.
    refresh itxk01.
    perform bdc-dynpr0 using 'prg' 'scr'
    perform bdc-dynfld using fnam fval
    call bdc-insert.
    endloop.
    call bdc-close-group.
    form bdc-dynpr0 using pr sc
    endform .
    form bdc-field  using fnam faval
    endform.
    this will help u.
    reward points for me
    kiran

  • How can I create an icon that when clicked will open and maximize an image file?

    How do I create a icon that when clicked will open and maximize an image file?  I have tried to use the simple image widget with maximize upon tap/click - however I am can only size the image really small and put on the page.  I'd prefer to have a graphic that when clicked it simply opens up the image.  This is for a very simple question/answer book.   The user is suppose to look at a picture and locate something.  I want to put an 'Answer' graphic on the image and then the user can click the 'answer' graphic and it will open up the picture with the answer identified. 
    Is this possible?

    Have yiu tried the PopOver widget?  You can drop an image into it, maximise the image and the widgets window...But, you cannot get it full screen.
    With iBooks Author, you either learn to use what is available within the app, or look online for third party widgets to purchase which suit your project.

  • Need a parked/blocked report that contains both the FI and MM number for ea

    Hi Guys,
    Business need a report which contains the translation of 'MM' numbers (typically beginning with '51') assigned for parked PO invoices vs. the 'FI' document number that comes out in the parked report. 
    Ideally, business need a parked/blocked report that contains both the FI and MM number for each record.
    Can someone help me pull this report from MM
    Thanks and Regards,
    Habeeb

    Hello Habeeb,
    Check out the report MR43 which gives information about Parked invoice. Also you can have a look on MIR6 with check box Parked Innvoice.
    The main table for parking invoice is VBKPF and other relevent tables are as follow:
    VBKPF                          Document Header for Document Parking
    VBSEC                          Document Parking One-Time Data Document Segment
    VBSEGA                         Document Segment for Assets Document Parking
    VBSEGD                         Document Segment for Customer Document Parking
    VBSEGK                         Document Segment for Vendor Document Parking
    VBSEGS                         Document Segment for G/L Accounts Document Parking
    VBSET                          Document Segment for Taxes Document Parking
    Hope this helps.
    Regards
    Arif Mansuri

  • IPad case that carries both the iPad and the apple wireless keyboard?

    Has anyone found an iPad case that carries both the iPad and the apple wireless keyboard?

    Michael ..
    See if this might work for you >  Incase Origami Workstation - Apple Store

  • My macbook pro has a virus/trojan that is resetting the EFI via apci and it is getting root access privileges. It seems to be creating multiple aliases that bundle with rogue apps and preferences so it is very difficult to control or fix. Please help..

    My macbook pro has a virus/trojan that is resetting the EFI via apci and it is getting root access privileges. It seems to be creating multiple aliases that bundle with rogue apps and preferences so it is very difficult to control or fix. Please help..It all stems from the "about donwloads" PDF which kicks off the restructuring of the OS..

    Well given the fact that it is not just myself who is infected and also that this is my 3rd macbook in 1 year because the other 2 efi's were compromised to the point where they were unusable, and also that I must've been to the mac store no less than 100 times in a year for these issues, I beg to differ. Here is what I can show you. This has been ongoing for over a year now.
    I will try and show you as much as I can.
    1) Here is what I see when I run mount from terminal:
    /dev/disk0s2 on / (hfs, local, journaled)
    devfs on /dev (devfs, local, nobrowse)
    map -hosts on /net (autofs, nosuid, automounted, nobrowse)
    map auto_home on /home (autofs, automounted, nobrowse)
    localhost:/4zOta2Q9FMiMnRjTROIbhU on /Volumes/MobileBackups (mtmfs, nosuid, read-only, nobrowse)
    Why on earth is /Volumes/MobildBackups my localhost is beyond me. I don't use iCloud and Mobile me is obsolete.
    2) Here is what I show when I run ls -al /*/*/*/*.efi from root
    -rw-r--r--  1 root  wheel  994464 May  1 00:33 /System/Library/CoreServices/boot.efi
    -rw-r--r--  1 root  wheel  994464 Oct  2  2012 /usr/standalone/i386/boot.efi
    -rwxr-xr-x  1 root  wheel  115716 Dec 13 14:08 /usr/standalone/i386/tmbootpicker.efi
    As far as I know my boot.efi should not change everytime I boot my machine.
    3) Here is something very interesting. When I run cd /dev followed by ls -al look what I have;
    total 9
    dr-xr-xr-x   3 root  wheel         4597 May  6 08:48 .
    drwxrwxr-t  32 root  admin         1156 May  6 01:20 ..
    crw-------   1 root  wheel      14,   1 May  6 08:48 afsc_type5
    crw-------   1 root  wheel       8,   0 May  6 08:48 auditpipe
    crw-r--r--   1 root  wheel       7,   1 May  6 08:48 auditsessions
    crw-------   1 root  wheel      18,   0 May  6 08:48 autofs
    crw-------   1 root  wheel      31,   0 May  6 08:48 autofs_control
    crw-rw-rw-   1 root  wheel      22,   0 May  6 08:48 autofs_homedirmounter
    crw-rw-rw-   1 root  wheel      21,   0 May  6 08:48 autofs_notrigger
    crw-rw-rw-   1 root  wheel      19,  13 May  6 08:48 autofs_nowait
    crw-------   1 root  wheel      23,   0 May  6 08:48 bpf0
    crw-------   1 root  wheel      23,   1 May  7 13:16 bpf1
    crw-------   1 root  wheel      23,   2 May  7 13:16 bpf2
    crw-------   1 root  wheel      23,   3 May  6 08:48 bpf3
    crw-------   1 MP    staff       0,   0 May  7 13:16 console
    crw-rw-rw-   1 root  wheel      33,   1 May  6 08:49 cu.Bluetooth-Modem
    crw-rw-rw-   1 root  wheel      33,   3 May  6 08:49 cu.SerialPort
    brw-r-----   1 root  operator    1,   0 May  6 08:48 disk0
    brw-r-----   1 root  operator    1,   2 May  6 08:48 disk0s1
    brw-r-----   1 root  operator    1,   1 May  6 08:48 disk0s2
    brw-r-----   1 root  operator    1,   3 May  6 08:48 disk0s3
    crw-rw-rw-   1 root  wheel      24,   2 May  6 08:48 dtrace
    crw-rw-rw-   1 root  wheel      25,   0 May  6 08:48 dtracehelper
    crw-rw-rw-   1 root  wheel       0,   0 May  6 08:48 fbt
    dr-xr-xr-x   1 root  wheel            0 May  6 08:48 fd
    crw-r--r--   1 root  wheel      11,   0 May  6 08:48 fsevents
    crw-rw-rw-   1 root  wheel      17,   7 May  7 13:16 io8log
    cr--r--r--   1 root  wheel      17,   2 May  6 08:48 io8logmt
    crw-------   1 root  wheel       6,   0 May  6 08:48 klog
    crw-rw-rw-   1 root  wheel       0,   0 May  6 08:48 lockstat
    crw-rw-rw-   1 root  wheel       0,   0 May  6 08:48 machtrace
    crw-rw-rw-   1 root  wheel       3,   2 May  7 13:16 null
    crw-------   1 root  wheel       9,   0 May  6 08:48 pf
    crw-------   1 root  wheel       9,   1 May  6 08:48 pfm
    crw-------   1 root  operator   20,   0 May  6 08:48 pmCPU
    crw-rw-rw-   1 root  wheel       0,   0 May  6 08:48 profile
    crw-rw-rw-   1 root  tty        15,   3 May  7 13:35 ptmx
    crw-rw-rw-   1 root  wheel       5,   0 May  6 08:48 ptyp0
    crw-rw-rw-   1 root  wheel       5,   1 May  6 08:48 ptyp1
    crw-rw-rw-   1 root  wheel       5,   2 May  6 08:48 ptyp2
    crw-rw-rw-   1 root  wheel       5,   3 May  6 08:48 ptyp3
    crw-rw-rw-   1 root  wheel       5,   4 May  6 08:48 ptyp4
    crw-rw-rw-   1 root  wheel       5,   5 May  6 08:48 ptyp5
    crw-rw-rw-   1 root  wheel       5,   6 May  6 08:48 ptyp6
    crw-rw-rw-   1 root  wheel       5,   7 May  6 08:48 ptyp7
    crw-rw-rw-   1 root  wheel       5,   8 May  6 08:48 ptyp8
    crw-rw-rw-   1 root  wheel       5,   9 May  6 08:48 ptyp9
    crw-rw-rw-   1 root  wheel       5,  10 May  6 08:48 ptypa
    crw-rw-rw-   1 root  wheel       5,  11 May  6 08:48 ptypb
    crw-rw-rw-   1 root  wheel       5,  12 May  6 08:48 ptypc
    crw-rw-rw-   1 root  wheel       5,  13 May  6 08:48 ptypd
    crw-rw-rw-   1 root  wheel       5,  14 May  6 08:48 ptype
    crw-rw-rw-   1 root  wheel       5,  15 May  6 08:48 ptypf
    crw-rw-rw-   1 root  wheel       5,  16 May  6 08:48 ptyq0
    crw-rw-rw-   1 root  wheel       5,  17 May  6 08:48 ptyq1
    crw-rw-rw-   1 root  wheel       5,  18 May  6 08:48 ptyq2
    crw-rw-rw-   1 root  wheel       5,  19 May  6 08:48 ptyq3
    crw-rw-rw-   1 root  wheel       5,  20 May  6 08:48 ptyq4
    crw-rw-rw-   1 root  wheel       5,  21 May  6 08:48 ptyq5
    crw-rw-rw-   1 root  wheel       5,  22 May  6 08:48 ptyq6
    crw-rw-rw-   1 root  wheel       5,  23 May  6 08:48 ptyq7
    crw-rw-rw-   1 root  wheel       5,  24 May  6 08:48 ptyq8
    crw-rw-rw-   1 root  wheel       5,  25 May  6 08:48 ptyq9
    crw-rw-rw-   1 root  wheel       5,  26 May  6 08:48 ptyqa
    crw-rw-rw-   1 root  wheel       5,  27 May  6 08:48 ptyqb
    crw-rw-rw-   1 root  wheel       5,  28 May  6 08:48 ptyqc
    crw-rw-rw-   1 root  wheel       5,  29 May  6 08:48 ptyqd
    crw-rw-rw-   1 root  wheel       5,  30 May  6 08:48 ptyqe
    crw-rw-rw-   1 root  wheel       5,  31 May  6 08:48 ptyqf
    crw-rw-rw-   1 root  wheel       5,  32 May  6 08:48 ptyr0
    crw-rw-rw-   1 root  wheel       5,  33 May  6 08:48 ptyr1
    crw-rw-rw-   1 root  wheel       5,  34 May  6 08:48 ptyr2
    crw-rw-rw-   1 root  wheel       5,  35 May  6 08:48 ptyr3
    crw-rw-rw-   1 root  wheel       5,  36 May  6 08:48 ptyr4
    crw-rw-rw-   1 root  wheel       5,  37 May  6 08:48 ptyr5
    crw-rw-rw-   1 root  wheel       5,  38 May  6 08:48 ptyr6
    crw-rw-rw-   1 root  wheel       5,  39 May  6 08:48 ptyr7
    crw-rw-rw-   1 root  wheel       5,  40 May  6 08:48 ptyr8
    crw-rw-rw-   1 root  wheel       5,  41 May  6 08:48 ptyr9
    crw-rw-rw-   1 root  wheel       5,  42 May  6 08:48 ptyra
    crw-rw-rw-   1 root  wheel       5,  43 May  6 08:48 ptyrb
    crw-rw-rw-   1 root  wheel       5,  44 May  6 08:48 ptyrc
    crw-rw-rw-   1 root  wheel       5,  45 May  6 08:48 ptyrd
    crw-rw-rw-   1 root  wheel       5,  46 May  6 08:48 ptyre
    crw-rw-rw-   1 root  wheel       5,  47 May  6 08:48 ptyrf
    crw-rw-rw-   1 root  wheel       5,  48 May  6 08:48 ptys0
    crw-rw-rw-   1 root  wheel       5,  49 May  6 08:48 ptys1
    crw-rw-rw-   1 root  wheel       5,  50 May  6 08:48 ptys2
    crw-rw-rw-   1 root  wheel       5,  51 May  6 08:48 ptys3
    crw-rw-rw-   1 root  wheel       5,  52 May  6 08:48 ptys4
    crw-rw-rw-   1 root  wheel       5,  53 May  6 08:48 ptys5
    crw-rw-rw-   1 root  wheel       5,  54 May  6 08:48 ptys6
    crw-rw-rw-   1 root  wheel       5,  55 May  6 08:48 ptys7
    crw-rw-rw-   1 root  wheel       5,  56 May  6 08:48 ptys8
    crw-rw-rw-   1 root  wheel       5,  57 May  6 08:48 ptys9
    crw-rw-rw-   1 root  wheel       5,  58 May  6 08:48 ptysa
    crw-rw-rw-   1 root  wheel       5,  59 May  6 08:48 ptysb
    crw-rw-rw-   1 root  wheel       5,  60 May  6 08:48 ptysc
    crw-rw-rw-   1 root  wheel       5,  61 May  6 08:48 ptysd
    crw-rw-rw-   1 root  wheel       5,  62 May  6 08:48 ptyse
    crw-rw-rw-   1 root  wheel       5,  63 May  6 08:48 ptysf
    crw-rw-rw-   1 root  wheel       5,  64 May  6 08:48 ptyt0
    crw-rw-rw-   1 root  wheel       5,  65 May  6 08:48 ptyt1
    crw-rw-rw-   1 root  wheel       5,  66 May  6 08:48 ptyt2
    crw-rw-rw-   1 root  wheel       5,  67 May  6 08:48 ptyt3
    crw-rw-rw-   1 root  wheel       5,  68 May  6 08:48 ptyt4
    crw-rw-rw-   1 root  wheel       5,  69 May  6 08:48 ptyt5
    crw-rw-rw-   1 root  wheel       5,  70 May  6 08:48 ptyt6
    crw-rw-rw-   1 root  wheel       5,  71 May  6 08:48 ptyt7
    crw-rw-rw-   1 root  wheel       5,  72 May  6 08:48 ptyt8
    crw-rw-rw-   1 root  wheel       5,  73 May  6 08:48 ptyt9
    crw-rw-rw-   1 root  wheel       5,  74 May  6 08:48 ptyta
    crw-rw-rw-   1 root  wheel       5,  75 May  6 08:48 ptytb
    crw-rw-rw-   1 root  wheel       5,  76 May  6 08:48 ptytc
    crw-rw-rw-   1 root  wheel       5,  77 May  6 08:48 ptytd
    crw-rw-rw-   1 root  wheel       5,  78 May  6 08:48 ptyte
    crw-rw-rw-   1 root  wheel       5,  79 May  6 08:48 ptytf
    crw-rw-rw-   1 root  wheel       5,  80 May  6 08:48 ptyu0
    crw-rw-rw-   1 root  wheel       5,  81 May  6 08:48 ptyu1
    crw-rw-rw-   1 root  wheel       5,  82 May  6 08:48 ptyu2
    crw-rw-rw-   1 root  wheel       5,  83 May  6 08:48 ptyu3
    crw-rw-rw-   1 root  wheel       5,  84 May  6 08:48 ptyu4
    crw-rw-rw-   1 root  wheel       5,  85 May  6 08:48 ptyu5
    crw-rw-rw-   1 root  wheel       5,  86 May  6 08:48 ptyu6
    crw-rw-rw-   1 root  wheel       5,  87 May  6 08:48 ptyu7
    crw-rw-rw-   1 root  wheel       5,  88 May  6 08:48 ptyu8
    crw-rw-rw-   1 root  wheel       5,  89 May  6 08:48 ptyu9
    crw-rw-rw-   1 root  wheel       5,  90 May  6 08:48 ptyua
    crw-rw-rw-   1 root  wheel       5,  91 May  6 08:48 ptyub
    crw-rw-rw-   1 root  wheel       5,  92 May  6 08:48 ptyuc
    crw-rw-rw-   1 root  wheel       5,  93 May  6 08:48 ptyud
    crw-rw-rw-   1 root  wheel       5,  94 May  6 08:48 ptyue
    crw-rw-rw-   1 root  wheel       5,  95 May  6 08:48 ptyuf
    crw-rw-rw-   1 root  wheel       5,  96 May  6 08:48 ptyv0
    crw-rw-rw-   1 root  wheel       5,  97 May  6 08:48 ptyv1
    crw-rw-rw-   1 root  wheel       5,  98 May  6 08:48 ptyv2
    crw-rw-rw-   1 root  wheel       5,  99 May  6 08:48 ptyv3
    crw-rw-rw-   1 root  wheel       5, 100 May  6 08:48 ptyv4
    crw-rw-rw-   1 root  wheel       5, 101 May  6 08:48 ptyv5
    crw-rw-rw-   1 root  wheel       5, 102 May  6 08:48 ptyv6
    crw-rw-rw-   1 root  wheel       5, 103 May  6 08:48 ptyv7
    crw-rw-rw-   1 root  wheel       5, 104 May  6 08:48 ptyv8
    crw-rw-rw-   1 root  wheel       5, 105 May  6 08:48 ptyv9
    crw-rw-rw-   1 root  wheel       5, 106 May  6 08:48 ptyva
    crw-rw-rw-   1 root  wheel       5, 107 May  6 08:48 ptyvb
    crw-rw-rw-   1 root  wheel       5, 108 May  6 08:48 ptyvc
    crw-rw-rw-   1 root  wheel       5, 109 May  6 08:48 ptyvd
    crw-rw-rw-   1 root  wheel       5, 110 May  6 08:48 ptyve
    crw-rw-rw-   1 root  wheel       5, 111 May  6 08:48 ptyvf
    crw-rw-rw-   1 root  wheel       5, 112 May  6 08:48 ptyw0
    crw-rw-rw-   1 root  wheel       5, 113 May  6 08:48 ptyw1
    crw-rw-rw-   1 root  wheel       5, 114 May  6 08:48 ptyw2
    crw-rw-rw-   1 root  wheel       5, 115 May  6 08:48 ptyw3
    crw-rw-rw-   1 root  wheel       5, 116 May  6 08:48 ptyw4
    crw-rw-rw-   1 root  wheel       5, 117 May  6 08:48 ptyw5
    crw-rw-rw-   1 root  wheel       5, 118 May  6 08:48 ptyw6
    crw-rw-rw-   1 root  wheel       5, 119 May  6 08:48 ptyw7
    crw-rw-rw-   1 root  wheel       5, 120 May  6 08:48 ptyw8
    crw-rw-rw-   1 root  wheel       5, 121 May  6 08:48 ptyw9
    crw-rw-rw-   1 root  wheel       5, 122 May  6 08:48 ptywa
    crw-rw-rw-   1 root  wheel       5, 123 May  6 08:48 ptywb
    crw-rw-rw-   1 root  wheel       5, 124 May  6 08:48 ptywc
    crw-rw-rw-   1 root  wheel       5, 125 May  6 08:48 ptywd
    crw-rw-rw-   1 root  wheel       5, 126 May  6 08:48 ptywe
    crw-rw-rw-   1 root  wheel       5, 127 May  6 08:48 ptywf
    crw-rw-rw-   1 root  wheel      13,   0 May  7 13:26 random
    crw-r-----   1 root  operator    1,   0 May  6 08:48 rdisk0
    crw-r-----   1 root  operator    1,   2 May  6 08:48 rdisk0s1
    crw-r-----   1 root  operator    1,   1 May  6 08:48 rdisk0s2
    crw-r-----   1 root  operator    1,   3 May  6 08:48 rdisk0s3
    crw-rw-rw-   1 root  wheel       0,   0 May  6 08:48 sdt
    lr-xr-xr-x   1 root  wheel            0 May  6 08:48 stderr -> fd/2
    lr-xr-xr-x   1 root  wheel            0 May  6 08:48 stdin -> fd/0
    lr-xr-xr-x   1 root  wheel            0 May  6 08:48 stdout -> fd/1
    crw-rw-rw-   1 root  wheel       0,   0 May  6 08:48 systrace
    crw-rw----   1 root  wheel      34,   0 May  7 06:18 tap0
    crw-rw----   1 root  wheel      34,   1 May  7 06:18 tap1
    crw-rw----   1 root  wheel      34,  10 May  7 06:18 tap10
    crw-rw----   1 root  wheel      34,  11 May  7 06:18 tap11
    crw-rw----   1 root  wheel      34,  12 May  7 06:18 tap12
    crw-rw----   1 root  wheel      34,  13 May  7 06:18 tap13
    crw-rw----   1 root  wheel      34,  14 May  7 06:18 tap14
    crw-rw----   1 root  wheel      34,  15 May  7 06:18 tap15
    crw-rw----   1 root  wheel      34,   2 May  7 06:18 tap2
    crw-rw----   1 root  wheel      34,   3 May  7 06:18 tap3
    crw-rw----   1 root  wheel      34,   4 May  7 06:18 tap4
    crw-rw----   1 root  wheel      34,   5 May  7 06:18 tap5
    crw-rw----   1 root  wheel      34,   6 May  7 06:18 tap6
    crw-rw----   1 root  wheel      34,   7 May  7 06:18 tap7
    crw-rw----   1 root  wheel      34,   8 May  7 06:18 tap8
    crw-rw----   1 root  wheel      34,   9 May  7 06:18 tap9
    crw-rw-rw-   1 root  wheel       2,   0 May  6 08:48 tty
    crw-rw-rw-   1 root  wheel      33,   0 May  6 08:49 tty.Bluetooth-Modem
    crw-rw-rw-   1 root  wheel      33,   2 May  6 08:49 tty.SerialPort
    crw-rw-rw-   1 root  wheel       4,   0 May  6 08:48 ttyp0
    crw-rw-rw-   1 root  wheel       4,   1 May  6 08:48 ttyp1
    crw-rw-rw-   1 root  wheel       4,   2 May  6 08:48 ttyp2
    crw-rw-rw-   1 root  wheel       4,   3 May  6 08:48 ttyp3
    crw-rw-rw-   1 root  wheel       4,   4 May  6 08:48 ttyp4
    crw-rw-rw-   1 root  wheel       4,   5 May  6 08:48 ttyp5
    crw-rw-rw-   1 root  wheel       4,   6 May  6 08:48 ttyp6
    crw-rw-rw-   1 root  wheel       4,   7 May  6 08:48 ttyp7
    crw-rw-rw-   1 root  wheel       4,   8 May  6 08:48 ttyp8
    crw-rw-rw-   1 root  wheel       4,   9 May  6 08:48 ttyp9
    crw-rw-rw-   1 root  wheel       4,  10 May  6 08:48 ttypa
    crw-rw-rw-   1 root  wheel       4,  11 May  6 08:48 ttypb
    crw-rw-rw-   1 root  wheel       4,  12 May  6 08:48 ttypc
    crw-rw-rw-   1 root  wheel       4,  13 May  6 08:48 ttypd
    crw-rw-rw-   1 root  wheel       4,  14 May  6 08:48 ttype
    crw-rw-rw-   1 root  wheel       4,  15 May  6 08:48 ttypf
    crw-rw-rw-   1 root  wheel       4,  16 May  6 08:48 ttyq0
    crw-rw-rw-   1 root  wheel       4,  17 May  6 08:48 ttyq1
    crw-rw-rw-   1 root  wheel       4,  18 May  6 08:48 ttyq2
    crw-rw-rw-   1 root  wheel       4,  19 May  6 08:48 ttyq3
    crw-rw-rw-   1 root  wheel       4,  20 May  6 08:48 ttyq4
    crw-rw-rw-   1 root  wheel       4,  21 May  6 08:48 ttyq5
    crw-rw-rw-   1 root  wheel       4,  22 May  6 08:48 ttyq6
    crw-rw-rw-   1 root  wheel       4,  23 May  6 08:48 ttyq7
    crw-rw-rw-   1 root  wheel       4,  24 May  6 08:48 ttyq8
    crw-rw-rw-   1 root  wheel       4,  25 May  6 08:48 ttyq9
    crw-rw-rw-   1 root  wheel       4,  26 May  6 08:48 ttyqa
    crw-rw-rw-   1 root  wheel       4,  27 May  6 08:48 ttyqb
    crw-rw-rw-   1 root  wheel       4,  28 May  6 08:48 ttyqc
    crw-rw-rw-   1 root  wheel       4,  29 May  6 08:48 ttyqd
    crw-rw-rw-   1 root  wheel       4,  30 May  6 08:48 ttyqe
    crw-rw-rw-   1 root  wheel       4,  31 May  6 08:48 ttyqf
    crw-rw-rw-   1 root  wheel       4,  32 May  6 08:48 ttyr0
    crw-rw-rw-   1 root  wheel       4,  33 May  6 08:48 ttyr1
    crw-rw-rw-   1 root  wheel       4,  34 May  6 08:48 ttyr2
    crw-rw-rw-   1 root  wheel       4,  35 May  6 08:48 ttyr3
    crw-rw-rw-   1 root  wheel       4,  36 May  6 08:48 ttyr4
    crw-rw-rw-   1 root  wheel       4,  37 May  6 08:48 ttyr5
    crw-rw-rw-   1 root  wheel       4,  38 May  6 08:48 ttyr6
    crw-rw-rw-   1 root  wheel       4,  39 May  6 08:48 ttyr7
    crw-rw-rw-   1 root  wheel       4,  40 May  6 08:48 ttyr8
    crw-rw-rw-   1 root  wheel       4,  41 May  6 08:48 ttyr9
    crw-rw-rw-   1 root  wheel       4,  42 May  6 08:48 ttyra
    crw-rw-rw-   1 root  wheel       4,  43 May  6 08:48 ttyrb
    crw-rw-rw-   1 root  wheel       4,  44 May  6 08:48 ttyrc
    crw-rw-rw-   1 root  wheel       4,  45 May  6 08:48 ttyrd
    crw-rw-rw-   1 root  wheel       4,  46 May  6 08:48 ttyre
    crw-rw-rw-   1 root  wheel       4,  47 May  6 08:48 ttyrf
    crw-rw-rw-   1 root  wheel       4,  48 May  6 08:48 ttys0
    crw--w----   1 MP    tty        16,   0 May  7 13:34 ttys000
    crw--w----   1 MP    tty        16,   1 May  7 13:34 ttys001
    crw--w----   1 MP    tty        16,   2 May  7 13:35 ttys002
    crw-rw-rw-   1 root  wheel       4,  49 May  6 08:48 ttys1
    crw-rw-rw-   1 root  wheel       4,  50 May  6 08:48 ttys2
    crw-rw-rw-   1 root  wheel       4,  51 May  6 08:48 ttys3
    crw-rw-rw-   1 root  wheel       4,  52 May  6 08:48 ttys4
    crw-rw-rw-   1 root  wheel       4,  53 May  6 08:48 ttys5
    crw-rw-rw-   1 root  wheel       4,  54 May  6 08:48 ttys6
    crw-rw-rw-   1 root  wheel       4,  55 May  6 08:48 ttys7
    crw-rw-rw-   1 root  wheel       4,  56 May  6 08:48 ttys8
    crw-rw-rw-   1 root  wheel       4,  57 May  6 08:48 ttys9
    crw-rw-rw-   1 root  wheel       4,  58 May  6 08:48 ttysa
    crw-rw-rw-   1 root  wheel       4,  59 May  6 08:48 ttysb
    crw-rw-rw-   1 root  wheel       4,  60 May  6 08:48 ttysc
    crw-rw-rw-   1 root  wheel       4,  61 May  6 08:48 ttysd
    crw-rw-rw-   1 root  wheel       4,  62 May  6 08:48 ttyse
    crw-rw-rw-   1 root  wheel       4,  63 May  6 08:48 ttysf
    crw-rw-rw-   1 root  wheel       4,  64 May  6 08:48 ttyt0
    crw-rw-rw-   1 root  wheel       4,  65 May  6 08:48 ttyt1
    crw-rw-rw-   1 root  wheel       4,  66 May  6 08:48 ttyt2
    crw-rw-rw-   1 root  wheel       4,  67 May  6 08:48 ttyt3
    crw-rw-rw-   1 root  wheel       4,  68 May  6 08:48 ttyt4
    crw-rw-rw-   1 root  wheel       4,  69 May  6 08:48 ttyt5
    crw-rw-rw-   1 root  wheel       4,  70 May  6 08:48 ttyt6
    crw-rw-rw-   1 root  wheel       4,  71 May  6 08:48 ttyt7
    crw-rw-rw-   1 root  wheel       4,  72 May  6 08:48 ttyt8
    crw-rw-rw-   1 root  wheel       4,  73 May  6 08:48 ttyt9
    crw-rw-rw-   1 root  wheel       4,  74 May  6 08:48 ttyta
    crw-rw-rw-   1 root  wheel       4,  75 May  6 08:48 ttytb
    crw-rw-rw-   1 root  wheel       4,  76 May  6 08:48 ttytc
    crw-rw-rw-   1 root  wheel       4,  77 May  6 08:48 ttytd
    crw-rw-rw-   1 root  wheel       4,  78 May  6 08:48 ttyte
    crw-rw-rw-   1 root  wheel       4,  79 May  6 08:48 ttytf
    crw-rw-rw-   1 root  wheel       4,  80 May  6 08:48 ttyu0
    crw-rw-rw-   1 root  wheel       4,  81 May  6 08:48 ttyu1
    crw-rw-rw-   1 root  wheel       4,  82 May  6 08:48 ttyu2
    crw-rw-rw-   1 root  wheel       4,  83 May  6 08:48 ttyu3
    crw-rw-rw-   1 root  wheel       4,  84 May  6 08:48 ttyu4
    crw-rw-rw-   1 root  wheel       4,  85 May  6 08:48 ttyu5
    crw-rw-rw-   1 root  wheel       4,  86 May  6 08:48 ttyu6
    crw-rw-rw-   1 root  wheel       4,  87 May  6 08:48 ttyu7
    crw-rw-rw-   1 root  wheel       4,  88 May  6 08:48 ttyu8
    crw-rw-rw-   1 root  wheel       4,  89 May  6 08:48 ttyu9
    crw-rw-rw-   1 root  wheel       4,  90 May  6 08:48 ttyua
    crw-rw-rw-   1 root  wheel       4,  91 May  6 08:48 ttyub
    crw-rw-rw-   1 root  wheel       4,  92 May  6 08:48 ttyuc
    crw-rw-rw-   1 root  wheel       4,  93 May  6 08:48 ttyud
    crw-rw-rw-   1 root  wheel       4,  94 May  6 08:48 ttyue
    crw-rw-rw-   1 root  wheel       4,  95 May  6 08:48 ttyuf
    crw-rw-rw-   1 root  wheel       4,  96 May  6 08:48 ttyv0
    crw-rw-rw-   1 root  wheel       4,  97 May  6 08:48 ttyv1
    crw-rw-rw-   1 root  wheel       4,  98 May  6 08:48 ttyv2
    crw-rw-rw-   1 root  wheel       4,  99 May  6 08:48 ttyv3
    crw-rw-rw-   1 root  wheel       4, 100 May  6 08:48 ttyv4
    crw-rw-rw-   1 root  wheel       4, 101 May  6 08:48 ttyv5
    crw-rw-rw-   1 root  wheel       4, 102 May  6 08:48 ttyv6
    crw-rw-rw-   1 root  wheel       4, 103 May  6 08:48 ttyv7
    crw-rw-rw-   1 root  wheel       4, 104 May  6 08:48 ttyv8
    crw-rw-rw-   1 root  wheel       4, 105 May  6 08:48 ttyv9
    crw-rw-rw-   1 root  wheel       4, 106 May  6 08:48 ttyva
    crw-rw-rw-   1 root  wheel       4, 107 May  6 08:48 ttyvb
    crw-rw-rw-   1 root  wheel       4, 108 May  6 08:48 ttyvc
    crw-rw-rw-   1 root  wheel       4, 109 May  6 08:48 ttyvd
    crw-rw-rw-   1 root  wheel       4, 110 May  6 08:48 ttyve
    crw-rw-rw-   1 root  wheel       4, 111 May  6 08:48 ttyvf
    crw-rw-rw-   1 root  wheel       4, 112 May  6 08:48 ttyw0
    crw-rw-rw-   1 root  wheel       4, 113 May  6 08:48 ttyw1
    crw-rw-rw-   1 root  wheel       4, 114 May  6 08:48 ttyw2
    crw-rw-rw-   1 root  wheel       4, 115 May  6 08:48 ttyw3
    crw-rw-rw-   1 root  wheel       4, 116 May  6 08:48 ttyw4
    crw-rw-rw-   1 root  wheel       4, 117 May  6 08:48 ttyw5
    crw-rw-rw-   1 root  wheel       4, 118 May  6 08:48 ttyw6
    crw-rw-rw-   1 root  wheel       4, 119 May  6 08:48 ttyw7
    crw-rw-rw-   1 root  wheel       4, 120 May  6 08:48 ttyw8
    crw-rw-rw-   1 root  wheel       4, 121 May  6 08:48 ttyw9
    crw-rw-rw-   1 root  wheel       4, 122 May  6 08:48 ttywa
    crw-rw-rw-   1 root  wheel       4, 123 May  6 08:48 ttywb
    crw-rw-rw-   1 root  wheel       4, 124 May  6 08:48 ttywc
    crw-rw-rw-   1 root  wheel       4, 125 May  6 08:48 ttywd
    crw-rw-rw-   1 root  wheel       4, 126 May  6 08:48 ttywe
    crw-rw-rw-   1 root  wheel       4, 127 May  6 08:48 ttywf
    crw-rw----   1 root  wheel      35,   0 May  7 13:35 tun0
    crw-rw----   1 root  wheel      35,   1 May  7 06:18 tun1
    crw-rw----   1 root  wheel      35,  10 May  7 06:18 tun10
    crw-rw----   1 root  wheel      35,  11 May  7 06:18 tun11
    crw-rw----   1 root  wheel      35,  12 May  7 06:18 tun12
    crw-rw----   1 root  wheel      35,  13 May  7 06:18 tun13
    crw-rw----   1 root  wheel      35,  14 May  7 06:18 tun14
    crw-rw----   1 root  wheel      35,  15 May  7 06:18 tun15
    crw-rw----   1 root  wheel      35,   2 May  7 06:18 tun2
    crw-rw----   1 root  wheel      35,   3 May  7 06:18 tun3
    crw-rw----   1 root  wheel      35,   4 May  7 06:18 tun4
    crw-rw----   1 root  wheel      35,   5 May  7 06:18 tun5
    crw-rw----   1 root  wheel      35,   6 May  7 06:18 tun6
    crw-rw----   1 root  wheel      35,   7 May  7 06:18 tun7
    crw-rw----   1 root  wheel      35,   8 May  7 06:18 tun8
    crw-rw----   1 root  wheel      35,   9 May  7 06:18 tun9
    crw-rw-rw-   1 root  wheel      13,   1 May  6 08:48 urandom
    brw-------   1 root  operator    2,   0 May  6 08:48 vn0
    brw-------   1 root  operator    2,   1 May  6 08:48 vn1
    brw-------   1 root  operator    2,   2 May  6 08:48 vn2
    brw-------   1 root  operator    2,   3 May  6 08:48 vn3
    crw-rw-rw-   1 root  wheel       3,   3 May  6 08:48 zero
    4) ioreg -w 120
    Please take note of everything that is unregistered (!registered)
    +-o Root  <class IORegistryEntry, id 0x100000100, retain 12>
      +-o MacBookPro9,1  <class IOPlatformExpertDevice, id 0x100000110, registered, matched, active, busy 0 (16654 ms), ret$
        +-o AppleACPIPlatformExpert  <class AppleACPIPlatformExpert, id 0x100000111, registered, matched, active, busy 0 (5$
        | +-o IOPMrootDomain  <class IOPMrootDomain, id 0x100000114, registered, matched, active, busy 0 (14 ms), retain 47$
        | | +-o IORootParent  <class IORootParent, id 0x100000115, !registered, !matched, active, busy 0, retain 7>
        | | +-o RootDomainUserClient  <class RootDomainUserClient, id 0x1000002e3, !registered, !matched, active, busy 0, r$
        | | +-o RootDomainUserClient  <class RootDomainUserClient, id 0x1000002e4, !registered, !matched, active, busy 0, r$
        | | +-o RootDomainUserClient  <class RootDomainUserClient, id 0x1000002e5, !registered, !matched, active, busy 0, r$
        | | +-o RootDomainUserClient  <class RootDomainUserClient, id 0x1000002e6, !registered, !matched, active, busy 0, r$
        | | +-o RootDomainUserClient  <class RootDomainUserClient, id 0x1000002e8, !registered, !matched, active, busy 0, r$
        | | +-o RootDomainUserClient  <class RootDomainUserClient, id 0x1000002eb, !registered, !matched, active, busy 0, r$
        | | +-o RootDomainUserClient  <class RootDomainUserClient, id 0x1000002ee, !registered, !matched, active, busy 0, r$
        | | +-o RootDomainUserClient  <class RootDomainUserClient, id 0x1000002f2, !registered, !matched, active, busy 0, r$
        | | +-o RootDomainUserClient  <class RootDomainUserClient, id 0x1000003df, !registered, !matched, active, busy 0, r$
        | | +-o RootDomainUserClient  <class RootDomainUserClient, id 0x100000428, !registered, !matched, active, busy 0, r$
        | | +-o RootDomainUserClient  <class RootDomainUserClient, id 0x100000448, !registered, !matched, active, busy 0, r$
        | | +-o RootDomainUserClient  <class RootDomainUserClient, id 0x10000058f, !registered, !matched, active, busy 0, r$
        | | +-o RootDomainUserClient  <class RootDomainUserClient, id 0x100002cef, !registered, !matched, active, busy 0, r$
        | | +-o RootDomainUserClient  <class RootDomainUserClient, id 0x100002cf7, !registered, !matched, active, busy 0, r$
        | | +-o RootDomainUserClient  <class RootDomainUserClient, id 0x100002d1d, !registered, !matched, active, busy 0, r$
        | | +-o RootDomainUserClient  <class RootDomainUserClient, id 0x100002d1e, !registered, !matched, active, busy 0, r$
        | | +-o RootDomainUserClient  <class RootDomainUserClient, id 0x100002d24, !registered, !matched, active, busy 0, r$
        | | +-o RootDomainUserClient  <class RootDomainUserClient, id 0x100002d25, !registered, !matched, active, busy 0, r$
        | | +-o RootDomainUserClient  <class RootDomainUserClient, id 0x100002d26, !registered, !matched, active, busy 0, r$
        | | +-o RootDomainUserClient  <class RootDomainUserClient, id 0x100002d29, !registered, !matched, active, busy 0, r$
        | | +-o RootDomainUserClient  <class RootDomainUserClient, id 0x100002d2a, !registered, !matched, active, busy 0, r$
        | | +-o RootDomainUserClient  <class RootDomainUserClient, id 0x100002d2b, !registered, !matched, active, busy 0, r$
        | | +-o RootDomainUserClient  <class RootDomainUserClient, id 0x100002d2d, !registered, !matched, active, busy 0, r$
        | | +-o RootDomainUserClient  <class RootDomainUserClient, id 0x100002d2f, !registered, !matched, active, busy 0, r$
        | | +-o RootDomainUserClient  <class RootDomainUserClient, id 0x100002d39, !registered, !matched, active, busy 0, r$
        | | +-o RootDomainUserClient  <class RootDomainUserClient, id 0x100002d3a, !registered, !matched, active, busy 0, r$
        | | +-o RootDomainUserClient  <class RootDomainUserClient, id 0x100002d42, !registered, !matched, active, busy 0, r$
        | | +-o RootDomainUserClient  <class RootDomainUserClient, id 0x100002d59, !registered, !matched, active, busy 0, r$
        | | +-o RootDomainUserClient  <class RootDomainUserClient, id 0x100002d5b, !registered, !matched, active, busy 0, r$
        | +-o cpus  <class IOPlatformDevice, id 0x100000117, registered, matched, active, busy 0 (0 ms), retain 14>
        | +-o CPU0@0  <class IOACPIPlatformDevice, id 0x100000118, registered, matched, active, busy 0 (412 ms), retain 8>
        | | +-o AppleACPICPU  <class AppleACPICPU, id 0x100000125, registered, matched, active, busy 0 (406 ms), retain 8>
        | |   +-o AppleACPICPUInterruptController  <class AppleACPICPUInterruptController, id 0x10000012d, registered, matc$
        | |   +-o X86PlatformPlugin  <class X86PlatformPlugin, id 0x100000301, registered, matched, active, busy 0 (309 ms)$
        | |     +-o IOPlatformEnabler  <class IOPlatformPluginDevice, id 0x10000036f, registered, matched, active, busy 0 ($
        | |     +-o AGPMEnabler  <class IOPlatformPluginDevice, id 0x100000370, registered, matched, active, busy 0 (8 ms),$
        | |     | +-o AGPMController  <class AGPMController, id 0x100000373, !registered, !matched, active, busy 0, retain $
        | |     +-o X86PlatformShim  <class X86PlatformShim, id 0x100000371, !registered, !matched, active, busy 0, retain $
        | +-o CPU1@2  <class IOACPIPlatformDevice, id 0x100000119, registered, matched, active, busy 0 (6 ms), retain 8>
        | | +-o AppleACPICPU  <class AppleACPICPU, id 0x100000126, registered, matched, active, busy 0 (0 ms), retain 6>
        | +-o CPU2@4  <class IOACPIPlatformDevice, id 0x10000011a, registered, matched, active, busy 0 (7 ms), retain 8>
        | | +-o AppleACPICPU  <class AppleACPICPU, id 0x100000127, registered, matched, active, busy 0 (0 ms), retain 6>
        | +-o CPU3@6  <class IOACPIPlatformDevice, id 0x10000011b, registered, matched, active, busy 0 (8 ms), retain 8>
        | | +-o AppleACPICPU  <class AppleACPICPU, id 0x100000128, registered, matched, active, busy 0 (0 ms), retain 6>
        | +-o CPU4@1  <class IOACPIPlatformDevice, id 0x10000011c, registered, matched, active, busy 0 (9 ms), retain 8>
        | | +-o AppleACPICPU  <class AppleACPICPU, id 0x100000129, registered, matched, active, busy 0 (0 ms), retain 6>
        | +-o CPU5@3  <class IOACPIPlatformDevice, id 0x10000011d, registered, matched, active, busy 0 (10 ms), retain 8>
        | | +-o AppleACPICPU  <class AppleACPICPU, id 0x10000012a, registered, matched, active, busy 0 (0 ms), retain 6>
        | +-o CPU6@5  <class IOACPIPlatformDevice, id 0x10000011e, registered, matched, active, busy 0 (11 ms), retain 8>
        | | +-o AppleACPICPU  <class AppleACPICPU, id 0x10000012b, registered, matched, active, busy 0 (0 ms), retain 6>
        | +-o CPU7@7  <class IOACPIPlatformDevice, id 0x10000011f, registered, matched, active, busy 0 (12 ms), retain 8>
        | | +-o AppleACPICPU  <class AppleACPICPU, id 0x10000012c, registered, matched, active, busy 0 (0 ms), retain 6>
        | +-o io-apic@fec00000  <class IOACPIPlatformDevice, id 0x100000120, registered, matched, active, busy 0 (0 ms), re$
        | | +-o AppleAPICInterruptController  <class AppleAPICInterruptController, id 0x10000012f, registered, matched, act$
        | +-o AppleACPIEventController  <class AppleACPIEventController, id 0x100000130, !registered, !matched, active, bus$
        | +-o boot-ec  <class IOACPIPlatformDevice, id 0x100000131, registered, matched, active, busy 0 (1 ms), retain 7>
        | | +-o AppleACPIEC  <class AppleACPIEC, id 0x100000132, !registered, !matched, active, busy 0, retain 5>
        | +-o bios  <class IOPlatformDevice, id 0x100000133, registered, matched, active, busy 0 (0 ms), retain 6>
        | | +-o AppleSMBIOS  <class AppleSMBIOS, id 0x100000134, registered, matched, active, busy 0 (0 ms), retain 5>
        | +-o PCI0@0  <class IOACPIPlatformDevice, id 0x100000138, registered, matched, active, busy 0 (5300 ms), retain 43$
        | | +-o AppleACPIPCI  <class AppleACPIPCI, id 0x1000001d5, registered, matched, active, busy 0 (5288 ms), retain 37$
        | | | +-o MCHC@0  <class IOPCIDevice, id 0x100000196, registered, matched, active, busy 0 (215 ms), retain 10>
        | | | | +-o AppleSMCPDRC  <class AppleSMCPDRC, id 0x100000306, registered, matched, active, busy 0 (0 ms), retain 5$
        | | | +-o P0P2@1  <class IOPCIDevice, id 0x100000197, registered, matched, active, busy 0 (203 ms), retain 13>
        | | | | +-o IOPCI2PCIBridge  <class IOPCI2PCIBridge, id 0x1000001f5, registered, matched, active, busy 0 (198 ms), $
        | | | |   +-o GFX0@0  <class IOPCIDevice, id 0x100000198, registered, matched, active, busy 0 (109 ms), retain 27>
        | | | |   | +-o NVDAHal  <class IOService, id 0x10000032b, registered, matched, active, busy 0 (4 ms), retain 6>
        | | | |   | +-o NVDAgl  <class IOService, id 0x10000032c, registered, matched, active, busy 0 (4 ms), retain 6>
        | | | |   | +-o NVDA,Display-A@0  <class IONDRVDevice, id 0x10000032f, registered, matched, active, busy 0 (47 ms),$
        | | | |   | | +-o NVDA  <class NVDA, id 0x10000033d, registered, matched, active, busy 0 (40 ms), retain 16>
        | | | |   | |   +-o AppleMCCSControlModule  <class AppleMCCSControlModule, id 0x100000341, registered, matched, act$
        | | | |   | |   | +-o AppleMCCSParameterHandler  <class AppleMCCSParameterHandler, id 0x100000343, registered, matc$
        | | | |   | |   +-o AppleUpstreamUserClientDriver  <class AppleUpstreamUserClientDriver, id 0x100000342, registered$
        | | | |   | |   +-o AGPM  <class AGPM, id 0x100000375, registered, matched, active, busy 0 (2 ms), retain 8>
        | | | |   | |   +-o AppleGraphicsControlBacklightNub  <class AppleGraphicsControlBacklightNub, id 0x10000038b, !reg$
        | | | |   | |   +-o gpu-sensor  <class IOService, id 0x1000003b3, registered, matched, active, busy 0 (23 ms), reta$
        | | | |   | |   +-o IOFramebufferI2CInterface  <class IOFramebufferI2CInterface, id 0x1000003b6, registered, matche$
        | | | |   | |   +-o IOFramebufferSharedUserClient  <class IOFramebufferSharedUserClient, id 0x1000003eb, !registere$
        | | | |   | |   +-o IOFramebufferUserClient  <class IOFramebufferUserClient, id 0x100002ce4, !registered, !matched,$
        | | | |   | +-o NVKernel  <class NVKernel, id 0x100000336, registered, matched, active, busy 0 (0 ms), retain 19>
        | | | |   | | +-o NV2DContextTesla  <class NV2DContextTesla, id 0x100002ce9, !registered, !matched, active, busy 0,$
        | | | |   | | +-o NV2DContextTesla  <class NV2DContextTesla, id 0x100002cea, !registered, !matched, active, busy 0,$
        | | | |   | | +-o NV2DContextTesla  <class NV2DContextTesla, id 0x100002ceb, !registered, !matched, active, busy 0,$
        | | | |   | | +-o NV2DContextTesla  <class NV2DContextTesla, id 0x100002cec, !registered, !matched, active, busy 0,$
        | | | |   | | +-o nvDeviceTesla  <class nvDeviceTesla, id 0x100002cf2, !registered, !matched, active, busy 0, retai$
        | | | |   | | +-o nvFermiGLContextTesla  <class nvFermiGLContextTesla, id 0x100002cf4, !registered, !matched, activ$
        | | | |   | | +-o nvDeviceTesla  <class nvDeviceTesla, id 0x100002d47, !registered, !matched, active, busy 0, retai$
        | | | |   | | +-o nvFermiGLContextTesla  <class nvFermiGLContextTesla, id 0x100002d49, !registered, !matched, activ$
        | | | |   | | +-o nvFermiGLContextTesla  <class nvFermiGLContextTesla, id 0x100002d4b, !registered, !matched, activ$
        | | | |   | | +-o nvDeviceTesla  <class nvDeviceTesla, id 0x100002d60, !registered, !matched, active, busy 0, retai$
        | | | |   | | +-o nvFermiGLContextTesla  <class nvFermiGLContextTesla, id 0x100002d62, !registered, !matched, activ$
        | | | |   | | +-o nvFermiGLContextTesla  <class nvFermiGLContextTesla, id 0x100002d64, !registered, !matched, activ$
        | | | |   | | +-o nvFermiGLContextTesla  <class nvFermiGLContextTesla, id 0x100002d6c, !registered, !matched, activ$
        | | | |   | | +-o nvFermiGLContextTesla  <class nvFermiGLContextTesla, id 0x100002d6f, !registered, !matched, activ$
        | | | |   | +-o NVDA,Display-B@1  <class IONDRVDevice, id 0x100000330, registered, matched, active, busy 0 (1 ms), $
        | | | |   | | +-o NVDA  <class NVDA, id 0x100000345, registered, matched, active, busy 0 (1 ms), retain 12>
        | | | |   | |   +-o AppleMCCSControlModule  <class AppleMCCSControlModule, id 0x100000349, registered, matched, act$
        | | | |   | |   | +-o AppleMCCSParameterHandler  <class AppleMCCSParameterHandler, id 0x10000034c, registered, matc$
        | | | |   | |   +-o AppleUpstreamUserClientDriver  <class AppleUpstreamUserClientDriver, id 0x10000034a, registered$
        | | | |   | |   +-o IOFramebufferI2CInterface  <class IOFramebufferI2CInterface, id 0x1000003bb, registered, matche$
        | | | |   | |   +-o IOFramebufferUserClient  <class IOFramebufferUserClient, id 0x100002ce5, !registered, !matched,$
        | | | |   | +-o NVDA,Display-C@2  <class IONDRVDevice, id 0x100000331, registered, matched, active, busy 0 (6 ms), $
        | | | |   | | +-o NVDA  <class NVDA, id 0x10000034e, registered, matched, active, busy 0 (1 ms), retain 12>
        | | | |   | |   +-o AppleMCCSControlModule  <class AppleMCCSControlModule, id 0x100000351, registered, matched, act$
        | | | |   | |   | +-o AppleMCCSParameterHandler  <class AppleMCCSParameterHandler, id 0x100000354, registered, matc$
        | | | |   | |   +-o AppleUpstreamUserClientDriver  <class AppleUpstreamUserClientDriver, id 0x100000352, registered$
        | | | |   | |   +-o IOFramebufferI2CInterface  <class IOFramebufferI2CInterface, id 0x1000003bd, registered, matche$
        | | | |   | |   +-o IOFramebufferUserClient  <class IOFramebufferUserClient, id 0x100002ce6, !registered, !matched,$
        | | | |   | +-o NVDA,Display-D@3  <class IONDRVDevice, id 0x100000332, registered, matched, active, busy 0 (2 ms), $
        | | | |   | | +-o NVDA  <class NVDA, id 0x100000356, registered, matched, active, busy 0 (0 ms), retain 12>
        | | | |   | |   +-o AppleMCCSControlModule  <class AppleMCCSControlModule, id 0x100000359, registered, matched, act$
        | | | |   | |   | +-o AppleMCCSParameterHandler  <class AppleMCCSParameterHandler, id 0x10000035b, registered, matc$
        | | | |   | |   +-o AppleUpstreamUserClientDriver  <class AppleUpstreamUserClientDriver, id 0x10000035a, registered$
        | | | |   | |   +-o IOFramebufferI2CInterface  <class IOFramebufferI2CInterface, id 0x1000003be, registered, matche$
        | | | |   | |   +-o IOFramebufferUserClient  <class IOFramebufferUserClient, id 0x100002ce7, !registered, !matched,$
        | | | |   | +-o NVDAinitgl  <class IOService, id 0x1000003b4, registered, matched, active, busy 0 (0 ms), retain 6>
        | | | |   +-o HDAU@0,1  <class IOPCIDevice, id 0x10000019a, registered, matched, active, busy 0 (159 ms), retain 12$
        | | | |     +-o AppleHDAController@0,1  <class AppleHDAController, id 0x100000307, registered, matched, active, bus$
        | | | |       +-o IOHDACodecDevice@0,1,0  <class IOHDACodecDevice, id 0x100000366, registered, matched, active, bus$
        | | | |         +-o IOHDACodecDriver  <class IOHDACodecDriver, id 0x100000368, !registered, !matched, active, busy $
        | | | |           +-o IOHDACodecFunction@0,1,0,1  <class IOHDACodecFunction, id 0x100000369, registered, matched, a$
        | | | |             +-o AppleHDACodecGeneric  <class AppleHDACodecGeneric, id 0x10000036a, registered, matched, act$
        | | | |               +-o AppleHDADriver  <class AppleHDADriver, id 0x10000036e, registered, matched, active, busy $
        | | | +-o PEG1@1,1  <class IOPCIDevice, id 0x10000019b, registered, matched, active, busy 0 (1133 ms), retain 12>
        | | | | +-o IOPCI2PCIBridge  <class IOPCI2PCIBridge, id 0x1000001f2, registered, matched, active, busy 0 (1129 ms),$
        | | | |   +-o UPSB@0  <class IOPCIDevice, id 0x10000019c, registered, matched, active, busy 0 (1129 ms), retain 16>
        | | | |     +-o IOPCI2PCIBridge  <class IOPCI2PCIBridge, id 0x100000205, registered, matched, active, busy 0 (1122 $
        | | | |       +-o DSB0@0  <class IOPCIDevice, id 0x10000019d, registered, matched, active, busy 0 (1122 ms), retain$
        | | | |       | +-o IOPCI2PCIBridge  <class IOPCI2PCIBridge, id 0x10000022b, registered, matched, active, busy 0 (1$
        | | | |       |   +-o NHI0@0  <class IOPCIDevice, id 0x10000019e, registered, matched, active, busy 0 (1111 ms), re$
        | | | |       |     +-o AppleThunderboltHAL  <class AppleThunderboltHAL, id 0x100000241, registered, matched, activ$
        | | | |       |       +-o AppleThunderboltNHIType1  <class AppleThunderboltNHIType1, id 0x10000024e, registered, ma$
        | | | |       |         +-o IOThunderboltController  <class IOThunderboltController, id 0x10000024f, registered, ma$
        | | | |       |           +-o IOThunderboltLocalNode  <class IOThunderboltLocalNode, id 0x100000252, registered, ma$
        | | | |       |           +-o IOThunderboltPort@6  <class IOThunderboltPort, id 0x100000255, registered, matched, a$
        | | | |       |             +-o IOThunderboltSwitchType1  <class IOThunderboltSwitchType1, id 0x100000257, register$
        | | | |       |               +-o IOThunderboltPort@1  <class IOThunderboltPort, id 0x10000029a, registered, matche$
        | | | |       |               +-o IOThunderboltPort@2  <class IOThunderboltPort, id 0x10000029b, registered, matche$
        | | | |       |               +-o IOThunderboltPort@7  <class IOThunderboltPort, id 0x10000029c, registered, matche$
        | | | |       |               | +-o AppleThunderboltPCIDownAdapter  <class AppleThunderboltPCIDownAdapter, id 0x100$
        | | | |       |               +-o IOThunderboltPort@8  <class IOThunderboltPort, id 0x10000029d, registered, matche$
        | | | |       |               | +-o AppleThunderboltPCIDownAdapter  <class AppleThunderboltPCIDownAdapter, id 0x100$
        | | | |       |               +-o IOThunderboltPort@9  <class IOThunderboltPort, id 0x10000029e, registered, matche$
        | | | |       |               | +-o AppleThunderboltPCIDownAdapter  <class AppleThunderboltPCIDownAdapter, id 0x100$
        | | | |       |               +-o IOThunderboltPort@A  <class IOThunderboltPort, id 0x10000029f, registered, matche$
        | | | |       |               | +-o AppleThunderboltPCIDownAdapter  <class AppleThunderboltPCIDownAdapter, id 0x100$
        | | | |       |               +-o IOThunderboltPort@C  <class IOThunderboltPort, id 0x1000002a0, registered, matche$
        | | | |       |               | +-o AppleThunderboltDPInAdapter  <class AppleThunderboltDPInAdapter, id 0x1000002aa$
        | | | |       |               +-o IOThunderboltPort@D  <class IOThunderboltPort, id 0x1000002a1, registered, matche$
        | | | |       |                 +-o AppleThunderboltDPInAdapter  <class AppleThunderboltDPInAdapter, id 0x1000002ab$
        | | | |       +-o DSB1@3  <class IOPCIDevice, id 0x10000019f, registered, matched, active, busy 0 (10 ms), retain 1$
        | | | |       | +-o IOPCI2PCIBridge  <class IOPCI2PCIBridge, id 0x100000236, registered, matched, active, busy 0 (0$
        | | | |       +-o DSB2@4  <class IOPCIDevice, id 0x1000001a0, registered, matched, active, busy 0 (8 ms), retain 12$
        | | | |       | +-o IOPCI2PCIBridge  <class IOPCI2PCIBridge, id 0x100000228, registered, matched, active, busy 0 (0$
        | | | |       +-o DSB3@5  <class IOPCIDevice, id 0x1000001a2, registered, matched, active, busy 0 (8 ms), retain 12$
        | | | |       | +-o IOPCI2PCIBridge  <class IOPCI2PCIBridge, id 0x100000231, registered, matched, active, busy 0 (0$
        | | | |       +-o DSB4@6  <class IOPCIDevice, id 0x1000001a4, registered, matched, active, busy 0 (7 ms), retain 11$
        | | | |         +-o IOPCI2PCIBridge  <class IOPCI2PCIBridge, id 0x10000022f, registered, matched, active, busy 0 (0$
        | | | +-o IGPU@2  <class IOPCIDevice, id 0x1000001a5, registered, matched, active, busy 0 (1903 ms), retain 22>
        | | | | +-o AppleIntelCapriController  <class AppleIntelCapriController, id 0x100000326, registered, matched, activ$
        | | | | | +-o AppleMEClientController  <class AppleMEClientController, id 0x100000339, registered, matched, active,$
        | | | | +-o AppleIntelFramebuffer@0  <class AppleIntelFramebuffer, id 0x100000334, registered, matched, active, bus$
        | | | | | +-o AppleMCCSControlModule  <class AppleMCCSControlModule, id 0x10000033b, registered, matched, active, b$
        | | | | | | +-o AppleMCCSParameterHandler  <class AppleMCCSParameterHandler, id 0x10000033f, registered, matched, a$
        | | | | | +-o AppleUpstreamUserClientDriver  <class AppleUpstreamUserClientDriver, id 0x10000033c, registered, matc$
        | | | | | +-o AGPM  <class AGPM, id 0x100000374, registered, matched, active, busy 0 (1339 ms), retain 8>
        | | | | | +-o AppleGraphicsControlBacklightNub  <class AppleGraphicsControlBacklightNub, id 0x10000038c, !registere$
        | | | | | +-o IOFramebufferI2CInterface  <class IOFramebufferI2CInterface, id 0x1000003ae, registered, matched, act$
        | | | | | +-o IOFramebufferSharedUserClient  <class IOFramebufferSharedUserClient, id 0x1000003ec, !registered, !ma$
        | | | | | +-o display0  <class IODisplayConnect, id 0x100002774, registered, matched, active, busy 0 (0 ms), retain$
        | | | | | | +-o AppleBacklightDisplay  <class AppleBacklightDisplay, id 0x100002775, registered, matched, active, b$
        | | | | | +-o IOFramebufferUserClient  <class IOFramebufferUserClient, id 0x100002ce3, !registered, !matched, activ$
        | | | | +-o IntelAccelerator  <class IntelAccelerator, id 0x100000328, registered, matched, active, busy 0 (0 ms), $
        | | | |   +-o IGAccel2DContext  <class IGAccel2DContext, id 0x100002ce8, !registered, !matched, active, busy 0, ret$
        | | | |   +-o IGAccelDevice  <class IGAccelDevice, id 0x100002cf1, !registered, !matched, active, busy 0, retain 6>
        | | | |   +-o IOAccelSharedUserClient  <class IOAccelSharedUserClient, id 0x100002cf3, !registered, !matched, activ$
        | | | |   +-o IGAccelGLContext  <class IGAccelGLContext, id 0x100002cf5, !registered, !matched, active, busy 0, ret$
        | | | |   +-o IGAccelSurface  <class IGAccelSurface, id 0x100002d00, !registered, !matched, active, busy 0, retain $
        | | | |   +-o IGAccelSurface  <class IGAccelSurface, id 0x100002d01, !registered, !matched, active, busy 0, retain $
        | | | |   +-o IGAccelDevice  <class IGAccelDevice, id 0x100002d16, !registered, !matched, active, busy 0, retain 6>
        | | | |   +-o IGAccelSurface  <class IGAccelSurface, id 0x100002d2e, !registered, !matched, active, busy 0, retain $
        | | | |   +-o IGAccelSurface  <class IGAccelSurface, id 0x100002d41, !registered, !matched, active, busy 0, retain $
        | | | |   +-o IGAccelDevice  <class IGAccelDevice, id 0x100002d45, !registered, !matched, active, busy 0, retain 6>
        | | | |   +-o IOAccelSharedUserClient  <class IOAccelSharedUserClient, id 0x100002d46, !registered, !matched, activ$
        | | | |   +-o IGAccelGLContext  <class IGAccelGLContext, id 0x100002d48, !registered, !matched, active, busy 0, ret$
        | | | |   +-o IGAccelGLContext  <class IGAccelGLContext, id 0x100002d4a, !registered, !matched, active, busy 0, ret$
        | | | |   +-o IGAccelSurface  <class IGAccelSurface, id 0x100002d4d, !registered, !matched, active, busy 0, retain $
        | | | |   +-o IGAccelDevice  <class IGAccelDevice, id 0x100002d5e, !registered, !matched, active, busy 0, retain 6>
        | | | |   +-o IOAccelSharedUserClient  <class IOAccelSharedUserClient, id 0x100002d5f, !registered, !matched, activ$
        | | | |   +-o IGAccelGLContext  <class IGAccelGLContext, id 0x100002d61, !registered, !matched, active, busy 0, ret$
        | | | |   +-o IGAccelGLContext  <class IGAccelGLContext, id 0x100002d63, !registered, !matched, active, busy 0, ret$
        | | | |   +-o IGAccelSurface  <class IGAccelSurface, id 0x100002d65, !registered, !matched, active, busy 0, retain $
        | | | |   +-o IGAccelGLContext  <class IGAccelGLContext, id 0x100002d6d, !registered, !matched, active, busy 0, ret$
        | | | |   +-o IGAccelGLContext  <class IGAccelGLContext, id 0x100002d70, !registered, !matched, active, busy 0, ret$
        | | | +-o XHC1@14  <class IOPCIDevice, id 0x1000001cf, registered, matched, active, busy 0 (29 ms), retain 12>
        | | | | +-o AppleUSBXHCI  <class AppleUSBXHCI, id 0x100000200, registered, matched, active, busy 0 (21 ms), retain $
        | | | |   +-o XHCI Root Hub SS Simulation@14  <class IOUSBRootHubDevice, id 0x100000204, registered, matched, activ$
        | | | |   | +-o AppleUSBHub  <class AppleUSBHub, id 0x10000023e, registered, matched, active, busy 0 (0 ms), retain$
        | | | |   | +-o IOUSBInterface@0  <class IOUSBInterface, id 0x100000240, !registered, !matched, active, busy 0, ret$
        | | | |   +-o XHCI Root Hub USB 2.0 Simulation@14  <class IOUSBRootHubDevice, id 0x100000243, registered, matched, $
        | | | |     +-o AppleUSBHub  <class AppleUSBHub, id 0x10000025a, registered, matched, active, busy 0 (0 ms), retain$
        | | | |     +-o IOUSBInterface@0  <class IOUSBInterface, id 0x10000025c, !registered, !matched, active, busy 0, ret$
        | | | +-o pci8086,1e3a@16  <class IOPCIDevice, id 0x1000001e6, registered, matched, active, busy 0 (27 ms), retain $
        | | | | +-o AppleIntelMEIDriver  <class AppleIntelMEIDriver, id 0x100000304, registered, matched, active, busy 0 (0$
        | | | +-o EHC2@1A  <class IOPCIDevice, id 0x1000001c9, registered, matched, active, busy 0 (121 ms), retain 12>
        | | | | +-o AppleUSBEHCI  <class AppleUSBEHCI, id 0x100000202, registered, matched, active, busy 0 (106 ms), retain$
        | | | |   +-o EHCI Root Hub Simulation@1A  <class IOUSBRootHubDevice, id 0x100000220, registered, matched, active, $
        | | | |   | +-o AppleUSBHub  <class AppleUSBHub, id 0x100000245, registered, matched, active, busy 0 (0 ms), retain$
        | | | |   | +-o IOUSBInterface@0  <class IOUSBInterface, id 0x100000247, !registered, !matched, active, busy 0, ret$
        | | | |   +-o HubDevice@1a100000  <class IOUSBHubDevice, id 0x100000271, registered, matched, active, busy 0 (4 ms)$
        | | | |   | +-o AppleUSBHub  <class AppleUSBHub, id 0x100000273, registered, matched, active, busy 0 (0 ms), retain$
        | | | |   | +-o IOUSBInterface@0  <class IOUSBInterface, id 0x100000275, !registered, !matched, active, busy 0, ret$
        | | | |   +-o FaceTime HD Camera (Built-in)@1a110000  <class IOUSBDevice, id 0x10000028b, registered, matched, acti$
        | | | |     +-o IOUSBCompositeDriver  <class IOUSBCompositeDriver, id 0x10000028e, !registered, !matched, active, b$
        | | | |     +-o FaceTime HD Camera (Built-in)@0  <class IOUSBInterface, id 0x10000028f, registered, matched, active$
        | | | |     +-o IOUSBInterface@1  <class IOUSBInterface, id 0x100000290, registered, matched, active, busy 0 (16 ms$
        | | | |     +-o IOUSBInterface@2  <class IOUSBInterface, id 0x100000291, registered, matched, active, busy 0 (6 ms)$
        | | | +-o HDEF@1B  <class IOPCIDevice, id 0x1000001b7, registered, matched, active, busy 0 (300 ms), retain 12>
        | | | | +-o AppleHDAController@1B  <class AppleHDAController, id 0x100000314, registered, matched, active, busy 0 ($
        | | | |   +-o IOHDACodecDevice@1B,0  <class IOHDACodecDevice, id 0x10000033a, registered, matched, active, busy 0 ($
        | | | |     +-o IOHDACodecDriver  <class IOHDACodecDriver, id 0x100000348, !registered, !matched, active, busy 0 (2$
        | | | |       +-o IOHDACodecFunction@1B,0,1  <class IOHDACodecFunction, id 0x10000034b, registered, matched, active$
        | | | |         +-o AppleHDACodecGeneric  <class AppleHDACodecGeneric, id 0x10000034d, registered, matched, active,$
        | | | |           +-o AppleHDADriver  <class AppleHDADriver, id 0x10000035e, registered, matched, active, busy 0 (2$
        | | | |             +-o AppleHDAEngineInput@1B,0,1,0  <class AppleHDAEngineInput, id 0x100000381, registered, match$
        | | | |             | +-o AppleHDAStream  <class AppleHDAStream, id 0x100000382, registered, matched, active, busy $
        | | | |             | +-o IOAudioSelectorControl  <class IOAudioSelectorControl, id 0x100000383, !registered, !matc$
        | | | |             | | +-o IOAudioControlUserClient  <class IOAudioControlUserClient, id 0x10000043b, !registered,$
        | | | |             | +-o IOAudioLevelControl  <class IOAudioLevelControl, id 0x100000384, !registered, !matched, a$
        | | | |             | | +-o IOAudioControlUserClient  <class IOAudioControlUserClient, id 0x10000043c, !registered,$
        | | | |             | +-o IOAudioToggleControl  <class IOAudioToggleControl, id 0x100000385, !registered, !matched,$
        | | | |             | | +-o IOAudioControlUserClient  <class IOAudioControlUserClient, id 0x10000043d, !registered,$
        | | | |             | +-o IOAudioToggleControl  <class IOAudioToggleControl, id 0x100000386, !registered, !matched,$
        | | | |             | | +-o IOAudioControlUserClient  <class IOAudioControlUserClient, id 0x10000043e, !registered,$
        | | | |             | +-o IOAudioEngineUserClient  <class IOAudioEngineUserClient, id 0x100000439, !registered, !ma$
        | | | |             | +-o IOAudioEngineUserClient  <class IOAudioEngineUserClient, id 0x100000444, !registered, !ma$
        | | | |             | +-o IOAudioEngineUserClient  <class IOAudioEngineUserClient, id 0x100002d22, !registered, !ma$
        | | | |             | +-o IOAudioEngineUserClient  <class IOAudioEngineUserClient, id 0x100002d35, !registered, !ma$
        | | | |             | +-o IOAudioEngineUserClient  <class IOAudioEngineUserClient, id 0x100002d6a, !registered, !ma$
        | | | |             | +-o IOAudioToggleControl  <class IOAudioToggleControl, id 0x100002def, !registered, !matched,$
        | | | |             |   +-o IOAudioControlUserClient  <class IOAudioControlUserClient, id 0x100002df0, !registered,$
        | | | |             |   +-o IOAudioControlUserClient  <class IOAudioControlUserClient, id 0x100002df1, !registered,$
        | | | |             |   +-o IOAudioControlUserClient  <class IOAudioControlUserClient, id 0x100002df2, !registered,$
        | | | |             |   +-o IOAudioControlUserClient  <class IOAudioControlUserClient, id 0x100002df3, !registered,$
        | | | |             |   +-o IOAudioControlUserClient  <class IOAudioControlUserClient, id 0x100002df4, !registered,$
        | | | |             +-o AppleHDAEngineInput@1B,0,1,1  <class AppleHDAEngineInput, id 0x100000387, registered, match$
        | | | |             | +-o AppleHDAStream  <class AppleHDAStream, id 0x100000389, registered, matched, active, busy $
        | | | |             | +-o IOAudioSelectorControl  <class IOAudioSelectorControl, id 0x100000393, !registered, !matc$
        | | | |             | | +-o IOAudioControlUserClient  <class IOAudioControlUserClient, id 0x100000431, !registered,$
        | | | |             | +-o IOAudioLevelControl  <class IOAudioLevelControl, id 0x100000394, !registered, !matched, a$
        | | | |             | | +-o IOAudioControlUserClient  <class IOAudioControlUserClient, id 0x100000432, !registered,$
        | | | |             | +-o IOAudioLevelControl  <class IOAudioLevelControl, id 0x100000395, !registered, !matched, a$
        | | | |             | | +-o IOAudioControlUserClient  <class IOAudioControlUserClient, id 0x100000433, !registered,$
        | | | |             | +-o IOAudioToggleControl  <class IOAudioToggleControl, id 0x100000396, !registered, !matched,$
        | | | |             | | +-o IOAudioControlUserClient  <class IOAudioControlUserClient, id 0x100000434, !registered,$
        | | | |             | +-o IOAudioToggleControl  <class IOAudioToggleControl, id 0x100000397, !registered, !matched,$
        | | | |             | | +-o IOAudioControlUserClient  <class IOAudioControlUserClient, id 0x100000435, !registered,$
        | | | |             | +-o IOAudioToggleControl  <class IOAudioToggleControl, id 0x100000398, !registered, !matched,$
        | | | |             | | +-o IOAudioControlUserClient  <class IOAudioControlUserClient, id 0x100000436, !registered,$
        | | | |             | +-o IOAudioSelectorControl  <class IOAudioSelectorControl, id 0x100000399, !registered, !matc$
        | | | |             | | +-o IOAudioControlUserClient  <class IOAudioControlUserClient, id 0x100000437, !registered,$
        | | | |             | | +-o IOAudioControlUserClient  <class IOAudioControlUserClient, id 0x100002df5, !registered,$
        | | | |             | | +-o IOAudioControlUserClient  <class IOAudioControlUserClient, id 0x100002df6, !registered,$
        | | | |             | | +-o IOAudioControlUserClient  <class IOAudioControlUserClient, id 0x100002df7, !registered,$
        | | | |             | | +-o IOAudioControlUserClient  <class IOAudioControlUserClient, id 0x100002df8, !registered,$
        | | | |             | +-o IOAudioToggleControl  <class IOAudioToggleControl, id 0x10000039b, !registered, !matched,$
        | | | |             | | +-o IOAudioControlUserClient  <class IOAudioControlUserClient, id 0x100000438, !registered,$
        | | | |             | +-

  • Do we have a General Ledger report that combines both cost centers and WBS?

    Do we have a General Ledger report that combines both cost centers and WBS?

    Have you tried FAGLL03

  • Trying to create an abstract service that supports both DataService(LCDS) and RemoteObject

    I am trying to create a generic service processor in ActionScript that would be able to use a DataService(from LCDS) or a RemoteObject, depending on a property setting. The intent is to be able to change a setting during installation to control whether DataServices would be used, or RemoteObjects. I understand that the server side logic would need to be written differently for each of the implementations.
    The challenge is that accessing a DataService is synchronous, but a RemoteObject access is asynchronous.
    For the synchronous access, I can just call a service and return the result directly to an object which can be passed back to the client.
    For the asynchronous support, extra code must be written on the client side to listen for the return of a requested result (for example, the results of a database quesy). This code must be placed outside of the service itself, thus making the generic service non-generic.
    Are there any examples available that accomplish what I am trying to do?

    Hi. As far as I know both DataService and RemoteObject are asynchronous APIs. If you call a DataService method such as fill() or call a method on your RemoteObject, code in your Flex application will continue to execute and the result from the RemoteObject or DataService request will be received asynchrounously. I don't believe there is any way currently to make synchronous or blocking calls in Flex because of the Flash Player's execution model.
    How are you planning on using the DataService and RemoteObject in your application? Is it to do something like populate a DataGrid? Do you plan on updating the data retrieved from the DataService or RemoteObject such as adding, updating or deleting records?
    The DataService API is much more powerful than the RemoteObject API, in that if you bind an ArrayCollection that is populated from a DataService to your DataGrid, when you update data in the DataGrid, the data on the server is updated and all other clients that have the same view of the data will also get the updates. You don't currently get this functionality with RemoteObjects.
    My point here is that if you wanted to write an abstract service that supports both DataService and RemoteObject and you need to be able to add, update or delete records you are going to need to write a lot of custom code to listen for collection change events when data on the client is modified and translate these change events into RemoteObject requests. Even if you did do that, other clients would not get these updates.
    If all you want to do is something simple like populate a DataGrid with data from the DataService or RemoteObject, then sure, writing an abstraction layer on the client that supports both of these wouldn't be hard.  
    -Alex

  • Can we create a cursor that can hold records of any table

    DECLARE
         CURSOR cr_tablenames IS
              SELECT tname
              FROM tab;
         v_tablename tab.tname%TYPE;
    BEGIN
         OPEN cr_tablenames;
         LOOP
              FETCH cr_tablenames INTO v_tablename;
              EXIT WHEN cr_tablenames%NOTFOUND;
              DBMS_OUTPUT.PUT_LINE('Table: '||v_tablename);
              -- HERE, I WANT TO PERFORM SELECT * OPERATION ON
              -- EACH TABLE WHOSE NAME COMES INTO v_tablename
              -- AND DISPLAY THE RECORDS
         END LOOP;
    END;
    I want to perform SELECT * operation on each table whose name comes into the variable and display the records. How to achieve it? I am clueless.
    Can this be achieved by something like... using cursors which can be defined dynamically and which can hold records of any table?
    Or, do I need to have some different approach to this problem?
    Edited by: kartins on Nov 5, 2009 11:41 PM

    something like
    SQL> create or replace
      2  function getContent (p_tn in varchar2)
      3     return sys_refcursor
      4  is
      5     retval sys_refcursor;
      6  begin
      7     open retval for
      8       'select * from '||p_tn;
      9     return retval;
    10  end;
    11  /
    Function created.
    SQL>
    SQL> var rc refcursor
    SQL>
    SQL> begin
      2     :rc := getContent ('emp');
      3  end;
      4  /
    PL/SQL procedure successfully completed.
    SQL>
    SQL> print rc
         EMPNO ENAME      JOB              MGR HIREDATE         SAL       COMM     DEPTNO
          7369 SMITH      CLERK           7902 17-DEC-80        900                    20
          7499 ALLEN      SALESMAN        7698 20-FEB-81       1700        300         30
          7521 WARD       SALESMAN        7698 22-FEB-81       1350        500         30
          7566 JONES      MANAGER         7839 02-APR-81       3075                    20
          7654 MARTIN     SALESMAN        7698 28-SEP-81       1350       1400         30
          7698 BLAKE      MANAGER         7839 01-MAY-81       2950                    30
          7782 CLARK      MANAGER         7934 09-JUN-81       2551                    10
          7788 SCOTT      ANALYST         7566 19-APR-87       3100                    20
          7839 KING       PRESIDENT            17-NOV-81       5100                    10
          7844 TURNER     SALESMAN        7698 08-SEP-81       1600          0         30
          7876 ADAMS      CLERK           7788 23-MAY-87       1200                    20
         EMPNO ENAME      JOB              MGR HIREDATE         SAL       COMM     DEPTNO
          7900 JAMES      CLERK           7698 03-DEC-81       1050                    30
          7902 FORD       ANALYST         7566 03-DEC-81       3100                    20
          7934 MILLER     CLERK           7782 23-JAN-82       1400                    10
    14 rows selected.
    SQL>
    SQL> begin
      2     :rc := getContent ('dual');
      3  end;
      4  /
    PL/SQL procedure successfully completed.
    SQL>
    SQL> print rc
    D
    X

  • Howto create 'select statement' that returns first row? (simple table)

    quick question that drives me crazy:
    Say I have the following table:
    ID....car_model....point_A....total
    1........333.............NY..........54
    2........333.............NJ..........42
    3........333.............NH...........63
    4........555.............NJ...........34
    5........555.............PA...........55
    I would like to create a select statement that return car_model which the starting point is NJ - in this example it's only 555.
    thanks for any tips

    fair enough.
    the problem is this: given the table below, I need to create a report that reflects car rentals from specific location. you can rent a car from different locations; a car has a starting point (like a flight itinerary) so consider this:
    Mark rent a car with the following itinerary:
    NY--> NJ
    NJ--> PA
    PA-->FL
    FL-->LA
    the end user would like to see all car that were rented between X and Y and start point was NJ, so in the example above, the starting point is NY so it doesn't match the end users' criteria.
    The table is organized in the following manner: ID....car_model....point_A....total
    * I don't know whey the someone choose point_A as a column description as it just suppose to be 'location'
    so, back to my first example:
    ID....car_model....point_A....total
    1........333.............NY..........54
    2........333.............NJ..........42
    3........333.............NH...........63
    4........555.............NJ...........34
    5........555.............PA...........55
    if I do this:
    Select car_model from myTable where point_A='NJ'
    the return result will be 333 and 555 but that is in correct because 333 starting point is NY.
    I hope I provided enough information, thanks

Maybe you are looking for