Help needed in Identifying dependent objects

Hi all,
Basically I need to identify the object related to Integration which is not there in one of our software product under development as compare to other(existing) already developed so that we can apply them in the product being developed.
I need to find these below from few of the packages given to me
     dependent packages/functions to read and update data
1)     Tables
2)     Packages
3)     Triggers
4)     Views
5) Jobs
I would request you to help me in carrying out this faster, I have plsql Developer tool, how to start with so that i m not mess up with and complete it faster.
Regards,
Asif.

Thankx Pierre Forstmann.
Dear All,
Can any one help me in identifying all dependent objects for one object.
Will this works for me I found from the above link provided,
as for the time being I do not have the dba priviliges...
If I am able to get the dba prviliges will this code works for me to get the
required information....
Regards,
AAK.
SQL>
create or replace type myScalarType as object
( lvl number,
rname varchar2(30),
rowner varchar2(30),
rtype varchar2(30)
Type created.
SQL> create or replace type myTableType as table of
myScalarType
Type created.
SQL>
SQL> create or replace
function depends( p_name in varchar2,
p_type in varchar2,
p_owner in varchar2 default USER,
p_lvl in number default 1 ) return myTableType
AUTHID CURRENT_USER
as
l_data myTableType := myTableType();
procedure recurse( p_name in varchar2,
p_type in varchar2,
p_owner in varchar2,
p_lvl in number )
is
begin
if ( l_data.count > 1000 )
then
raise_application_error( -20001, 'probable connect by loop,
aborting' );
end if;
for x in ( select /*+ first_rows */ referenced_name,
referenced_owner,
referenced_type
from dba_dependencies
where owner = p_owner
and type = p_type
and name = p_name )
loop
l_data.extend;
l_data(l_data.count) :=
myScalarType( p_lvl, x.referenced_name,
x.referenced_owner, x.referenced_type );
recurse( x.referenced_name, x.referenced_type,
x.referenced_owner, p_lvl+1);
end loop;
end;
begin
l_data.extend;
l_data(l_data.count) := myScalarType( 1, p_name, p_owner, p_type );
recurse( p_name, p_type, p_owner, 2 );
return l_data;
end;
Function created.
SQL>
SQL> set timing on
SQL>
SQL> select * from table(
cast(depends('DBA_VIEWS','VIEW','SYS') as myTableType ) );
---select * from table(cast('USER_VIEWS') as myTableType ) );
LVL     RNAME          ROWNER          RTYPE
1     DBA_VIEWS     SYS               VIEW
2     TYPED_VIEW$ SYS               TABLE
2     USER$          SYS               TABLE
2     VIEW$          SYS               TABLE
2     OBJ$          SYS               TABLE
2     SUPEROBJ$ SYS               TABLE
2     STANDARD SYS               PACKAGE
7 rows selected.
Elapsed: 00:00:00.42
SQL>
SQL>
SQL> drop table t;
Table dropped.
Elapsed: 00:00:00.13
SQL> create table t ( x int );
Table created.
Elapsed: 00:00:00.03
SQL> create or replace view v1 as select * from t;
View created.
Elapsed: 00:00:00.06
SQL> create or replace view v2 as select t.x xx, v1.x yy from
v1, t;
View created.
Elapsed: 00:00:00.06
SQL> create or replace view v3 as select v2.*, t.x xxx, v1.x
yyy from v2, v1, t;
View created.
Elapsed: 00:00:00.07
SQL>
SQL>
SQL> select lpad(' ',lvl*2,' ') || rowner || '.' || rname ||
'(' || rtype || ')' hierarchy
2 from table( cast(depends('V3','VIEW') as myTableType ) );
HIERARCHY
OPS$TKYTE.V3(VIEW)
OPS$TKYTE.T(TABLE)
OPS$TKYTE.V1(VIEW)
OPS$TKYTE.T(TABLE)
OPS$TKYTE.V2(VIEW)
OPS$TKYTE.T(TABLE)
OPS$TKYTE.V1(VIEW)
OPS$TKYTE.T(TABLE)
8 rows selected.
Message was edited by:
460425

Similar Messages

  • Help needed with identifying cause of Google Chrome crashes from a crash report

    Hello,
    I am trying to isolate a problem which is causing Google Chrome to crash. This is happening far too frequently - sometimes on opening, sometimes on web page loads and sometimes when viewing the preferences page.
    I'm using a 2012 Mac Mini running OS X 10.8.4.
    After many hours of trawling around the Internet and trying various suggestions, I am close to admitting defeat. Hopefully somebody here can save my sanity and point me towards a possible cause.
    To date, these are some of the things that I have tried:
    Replacing the 16GB of Crucial Ram with the stock Ram.
    Logging in as a Guest user and opening Chrome.
    Disabling all Chrome extensions (there are only 3 that I use anyway).
    Uninstalling Chrome and all associated files that I could find, then reinstalling.
    Booting into Safe Mode and loading Chrome.
    None of these have made a difference. There have also been a couple of times when Firefox has crashed, too. Safari has been rock solid. Yes, I could just use Safari, but there are personal reasons why I need to use Chrome. I also need to locate this problem in case it is something that might effect other applications … or possibly even be a hardware problem.
    Below is my most recent crash report. Frankly, it's contents are way outside of my comfort zone, so I am hoping that somebody will be able to help point me towards the relevant parts that might help me resolve this problem:
    Process:    
    Google Chrome [953]
    Path:       
    /Applications/Google Chrome.app/Contents/MacOS/Google Chrome
    Identifier: 
    com.google.Chrome
    Version:    
    28.0.1500.95 (1500.95)
    Code Type:  
    X86 (Native)
    Parent Process:  launchd [155]
    User ID:    
    501
    Date/Time:  
    2013-07-31 17:02:20.022 +0100
    OS Version: 
    Mac OS X 10.8.4 (12E55)
    Report Version:  10
    Interval Since Last Report:     
    74480 sec
    Crashes Since Last Report:      
    32
    Per-App Interval Since Last Report:  34565 sec
    Per-App Crashes Since Last Report:   6
    Anonymous UUID:                 
    0FD820CB-AFE5-4E19-0C1C-7DC211A950EE
    Crashed Thread:  0  CrBrowserMain  Dispatch queue: com.apple.main-thread
    Exception Type:  EXC_BREAKPOINT (SIGTRAP)
    Exception Codes: 0x0000000000000002, 0x0000000000000000
    Thread 0 Crashed:: CrBrowserMain  Dispatch queue: com.apple.main-thread
    0   com.google.Chrome.framework  
    0x00711447 0x45000 + 7128135
    1   com.google.Chrome.framework  
    0x02a8056e 0x45000 + 44283246
    2   com.google.Chrome.framework  
    0x02a807d4 0x45000 + 44283860
    3   com.google.Chrome.framework  
    0x02bd6116 0x45000 + 45682966
    4   com.google.Chrome.framework  
    0x02bbc1ba 0x45000 + 45576634
    5   com.google.Chrome.framework  
    0x02bb8628 0x45000 + 45561384
    6   com.google.Chrome.framework  
    0x02bbc2fb 0x45000 + 45576955
    7   com.google.Chrome.framework  
    0x02bb0498 0x45000 + 45528216
    8   com.google.Chrome.framework  
    0x02bb0aeb 0x45000 + 45529835
    9   com.google.Chrome.framework  
    0x00c4e86c 0x45000 + 12621932
    10  com.google.Chrome.framework  
    0x00c50129 0x45000 + 12628265
    11  com.google.Chrome.framework  
    0x00731d28 0x45000 + 7261480
    12  com.google.Chrome.framework  
    0x0073216d 0x45000 + 7262573
    13  com.google.Chrome.framework  
    0x006fd205 0x45000 + 7045637
    14  com.apple.CoreFoundation 
    0x90c5304f __CFRUNLOOP_IS_CALLING_OUT_TO_A_SOURCE0_PERFORM_FUNCTION__ + 15
    15  com.apple.CoreFoundation 
    0x90c52a79 __CFRunLoopDoSources0 + 233
    16  com.apple.CoreFoundation 
    0x90c78826 __CFRunLoopRun + 934
    17  com.apple.CoreFoundation 
    0x90c7801a CFRunLoopRunSpecific + 378
    18  com.apple.CoreFoundation 
    0x90c77e8b CFRunLoopRunInMode + 123
    19  com.apple.HIToolbox      
    0x9794af5a RunCurrentEventLoopInMode + 242
    20  com.apple.HIToolbox      
    0x9794acc9 ReceiveNextEventCommon + 374
    21  com.apple.HIToolbox      
    0x9794ab44 BlockUntilNextEventMatchingListInMode + 88
    22  com.apple.AppKit         
    0x9627f93a _DPSNextEvent + 724
    23  com.apple.AppKit         
    0x9627f16c -[NSApplication nextEventMatchingMask:untilDate:inMode:dequeue:] + 119
    24  com.apple.AppKit         
    0x962755cc -[NSApplication run] + 855
    25  com.google.Chrome.framework  
    0x006fd5c1 0x45000 + 7046593
    26  com.google.Chrome.framework  
    0x006fd0fc 0x45000 + 7045372
    27  com.google.Chrome.framework  
    0x007317b0 0x45000 + 7260080
    28  com.google.Chrome.framework  
    0x007470d1 0x45000 + 7348433
    29  com.google.Chrome.framework  
    0x001c0691 0x45000 + 1554065
    30  com.google.Chrome.framework  
    0x02a893b0 0x45000 + 44319664
    31  com.google.Chrome.framework  
    0x02a89ec3 0x45000 + 44322499
    32  com.google.Chrome.framework  
    0x02a86ef1 0x45000 + 44310257
    33  com.google.Chrome.framework  
    0x0061723b 0x45000 + 6103611
    34  com.google.Chrome.framework  
    0x00616600 0x45000 + 6100480
    35  com.google.Chrome.framework  
    0x00047449 ChromeMain + 41
    36  com.google.Chrome        
    0x0003ef78 main + 24
    37  com.google.Chrome        
    0x0003ef55 0x3e000 + 3925
    Thread 1:: Dispatch queue: com.apple.libdispatch-manager
    0   libsystem_kernel.dylib   
    0x961169ae kevent + 10
    1   libdispatch.dylib        
    0x97d1cc71 _dispatch_mgr_invoke + 993
    2   libdispatch.dylib        
    0x97d1c7a9 _dispatch_mgr_thread + 53
    Thread 2:: NetworkConfigWatcher
    0   libsystem_kernel.dylib   
    0x961137d2 mach_msg_trap + 10
    1   libsystem_kernel.dylib   
    0x96112cb0 mach_msg + 68
    2   com.apple.CoreFoundation 
    0x90c72f79 __CFRunLoopServiceMachPort + 185
    3   com.apple.CoreFoundation 
    0x90c7895f __CFRunLoopRun + 1247
    4   com.apple.CoreFoundation 
    0x90c7801a CFRunLoopRunSpecific + 378
    5   com.apple.CoreFoundation 
    0x90c77e8b CFRunLoopRunInMode + 123
    6   com.apple.Foundation     
    0x9090fbb6 -[NSRunLoop(NSRunLoop) runMode:beforeDate:] + 278
    7   com.google.Chrome.framework  
    0x006fd42f 0x45000 + 7046191
    8   com.google.Chrome.framework  
    0x006fd0fc 0x45000 + 7045372
    9   com.google.Chrome.framework  
    0x007317b0 0x45000 + 7260080
    10  com.google.Chrome.framework  
    0x007470d1 0x45000 + 7348433
    11  com.google.Chrome.framework  
    0x0073152a 0x45000 + 7259434
    12  com.google.Chrome.framework  
    0x0075b071 0x45000 + 7430257
    13  com.google.Chrome.framework  
    0x0075b10d 0x45000 + 7430413
    14  com.google.Chrome.framework  
    0x007574e5 0x45000 + 7415013
    15  libsystem_c.dylib        
    0x9512b5b7 _pthread_start + 344
    16  libsystem_c.dylib        
    0x95115d4e thread_start + 34
    Thread 3:: DnsConfigService
    0   libsystem_kernel.dylib   
    0x961169ae kevent + 10
    1   com.google.Chrome.framework  
    0x0076a8c6 0x45000 + 7493830
    2   com.google.Chrome.framework  
    0x00768549 0x45000 + 7484745
    3   com.google.Chrome.framework  
    0x006fc662 0x45000 + 7042658
    4   com.google.Chrome.framework  
    0x007317b0 0x45000 + 7260080
    5   com.google.Chrome.framework  
    0x007470d1 0x45000 + 7348433
    6   com.google.Chrome.framework  
    0x0073152a 0x45000 + 7259434
    7   com.google.Chrome.framework  
    0x0075b071 0x45000 + 7430257
    8   com.google.Chrome.framework  
    0x0075b10d 0x45000 + 7430413
    9   com.google.Chrome.framework  
    0x007574e5 0x45000 + 7415013
    10  libsystem_c.dylib        
    0x9512b5b7 _pthread_start + 344
    11  libsystem_c.dylib        
    0x95115d4e thread_start + 34
    Thread 4:: AudioThread
    0   libsystem_kernel.dylib   
    0x961137d2 mach_msg_trap + 10
    1   libsystem_kernel.dylib   
    0x96112cb0 mach_msg + 68
    2   com.apple.CoreFoundation 
    0x90c72f79 __CFRunLoopServiceMachPort + 185
    3   com.apple.CoreFoundation 
    0x90c7895f __CFRunLoopRun + 1247
    4   com.apple.CoreFoundation 
    0x90c7801a CFRunLoopRunSpecific + 378
    5   com.apple.CoreFoundation 
    0x90c77e8b CFRunLoopRunInMode + 123
    6   com.apple.Foundation     
    0x9090fbb6 -[NSRunLoop(NSRunLoop) runMode:beforeDate:] + 278
    7   com.google.Chrome.framework  
    0x006fd42f 0x45000 + 7046191
    8   com.google.Chrome.framework  
    0x006fd0fc 0x45000 + 7045372
    9   com.google.Chrome.framework  
    0x007317b0 0x45000 + 7260080
    10  com.google.Chrome.framework  
    0x007470d1 0x45000 + 7348433
    11  com.google.Chrome.framework  
    0x0073152a 0x45000 + 7259434
    12  com.google.Chrome.framework  
    0x0075b071 0x45000 + 7430257
    13  com.google.Chrome.framework  
    0x0075b10d 0x45000 + 7430413
    14  com.google.Chrome.framework  
    0x007574e5 0x45000 + 7415013
    15  libsystem_c.dylib        
    0x9512b5b7 _pthread_start + 344
    16  libsystem_c.dylib        
    0x95115d4e thread_start + 34
    Thread 5:: CrShutdownDetector
    0   libsystem_kernel.dylib   
    0x96116dba __read + 10
    1   com.google.Chrome.framework  
    0x001c1fa6 0x45000 + 1560486
    2   com.google.Chrome.framework  
    0x007574e5 0x45000 + 7415013
    3   libsystem_c.dylib        
    0x9512b5b7 _pthread_start + 344
    4   libsystem_c.dylib        
    0x95115d4e thread_start + 34
    Thread 6:: Chrome_DBThread
    0   libsystem_kernel.dylib   
    0x961158e2 __psynch_cvwait + 10
    1   libsystem_c.dylib        
    0x95130280 _pthread_cond_wait + 833
    2   libsystem_c.dylib        
    0x951b6095 pthread_cond_wait$UNIX2003 + 71
    3   com.google.Chrome.framework  
    0x00753548 0x45000 + 7398728
    4   com.google.Chrome.framework  
    0x00753a7b 0x45000 + 7400059
    5   com.google.Chrome.framework  
    0x00753916 0x45000 + 7399702
    6   com.google.Chrome.framework  
    0x007346b1 0x45000 + 7272113
    7   com.google.Chrome.framework  
    0x007317b0 0x45000 + 7260080
    8   com.google.Chrome.framework  
    0x007470d1 0x45000 + 7348433
    9   com.google.Chrome.framework  
    0x0073152a 0x45000 + 7259434
    10  com.google.Chrome.framework  
    0x0075b071 0x45000 + 7430257
    11  com.google.Chrome.framework  
    0x02a9391f 0x45000 + 44362015
    12  com.google.Chrome.framework  
    0x02a93aa3 0x45000 + 44362403
    13  com.google.Chrome.framework  
    0x0075b10d 0x45000 + 7430413
    14  com.google.Chrome.framework  
    0x007574e5 0x45000 + 7415013
    15  libsystem_c.dylib        
    0x9512b5b7 _pthread_start + 344
    16  libsystem_c.dylib        
    0x95115d4e thread_start + 34
    Thread 7:: Chrome_WebKitThread
    0   libsystem_kernel.dylib   
    0x961158e2 __psynch_cvwait + 10
    1   libsystem_c.dylib        
    0x95130280 _pthread_cond_wait + 833
    2   libsystem_c.dylib        
    0x951b6095 pthread_cond_wait$UNIX2003 + 71
    3   com.google.Chrome.framework  
    0x00753548 0x45000 + 7398728
    4   com.google.Chrome.framework  
    0x00753a7b 0x45000 + 7400059
    5   com.google.Chrome.framework  
    0x00753916 0x45000 + 7399702
    6   com.google.Chrome.framework  
    0x007346b1 0x45000 + 7272113
    7   com.google.Chrome.framework  
    0x007317b0 0x45000 + 7260080
    8   com.google.Chrome.framework  
    0x007470d1 0x45000 + 7348433
    9   com.google.Chrome.framework  
    0x0073152a 0x45000 + 7259434
    10  com.google.Chrome.framework  
    0x0075b071 0x45000 + 7430257
    11  com.google.Chrome.framework  
    0x02a9394f 0x45000 + 44362063
    12  com.google.Chrome.framework  
    0x02a93ab1 0x45000 + 44362417
    13  com.google.Chrome.framework  
    0x0075b10d 0x45000 + 7430413
    14  com.google.Chrome.framework  
    0x007574e5 0x45000 + 7415013
    15  libsystem_c.dylib        
    0x9512b5b7 _pthread_start + 344
    16  libsystem_c.dylib        
    0x95115d4e thread_start + 34
    Thread 8:: Chrome_FileThread
    0   libsystem_kernel.dylib   
    0x961169ae kevent + 10
    1   com.google.Chrome.framework  
    0x0076a8c6 0x45000 + 7493830
    2   com.google.Chrome.framework  
    0x00768549 0x45000 + 7484745
    3   com.google.Chrome.framework  
    0x006fc741 0x45000 + 7042881
    4   com.google.Chrome.framework  
    0x007317b0 0x45000 + 7260080
    5   com.google.Chrome.framework  
    0x007470d1 0x45000 + 7348433
    6   com.google.Chrome.framework  
    0x0073152a 0x45000 + 7259434
    7   com.google.Chrome.framework  
    0x0075b071 0x45000 + 7430257
    8   com.google.Chrome.framework  
    0x02a9397f 0x45000 + 44362111
    9   com.google.Chrome.framework  
    0x02a93abf 0x45000 + 44362431
    10  com.google.Chrome.framework  
    0x0075b10d 0x45000 + 7430413
    11  com.google.Chrome.framework  
    0x007574e5 0x45000 + 7415013
    12  libsystem_c.dylib        
    0x9512b5b7 _pthread_start + 344
    13  libsystem_c.dylib        
    0x95115d4e thread_start + 34
    Thread 9:: Chrome_FileUserBlockingThread
    0   libsystem_kernel.dylib   
    0x961158e2 __psynch_cvwait + 10
    1   libsystem_c.dylib        
    0x95130280 _pthread_cond_wait + 833
    2   libsystem_c.dylib        
    0x951b6095 pthread_cond_wait$UNIX2003 + 71
    3   com.google.Chrome.framework  
    0x00753548 0x45000 + 7398728
    4   com.google.Chrome.framework  
    0x00753a7b 0x45000 + 7400059
    5   com.google.Chrome.framework  
    0x00753916 0x45000 + 7399702
    6   com.google.Chrome.framework  
    0x007346b1 0x45000 + 7272113
    7   com.google.Chrome.framework  
    0x007317b0 0x45000 + 7260080
    8   com.google.Chrome.framework  
    0x007470d1 0x45000 + 7348433
    9   com.google.Chrome.framework  
    0x0073152a 0x45000 + 7259434
    10  com.google.Chrome.framework  
    0x0075b071 0x45000 + 7430257
    11  com.google.Chrome.framework  
    0x02a939af 0x45000 + 44362159
    12  com.google.Chrome.framework  
    0x02a93acd 0x45000 + 44362445
    13  com.google.Chrome.framework  
    0x0075b10d 0x45000 + 7430413
    14  com.google.Chrome.framework  
    0x007574e5 0x45000 + 7415013
    15  libsystem_c.dylib        
    0x9512b5b7 _pthread_start + 344
    16  libsystem_c.dylib        
    0x95115d4e thread_start + 34
    Thread 10:: Chrome_ProcessLauncherThread
    0   libsystem_kernel.dylib   
    0x961158e2 __psynch_cvwait + 10
    1   libsystem_c.dylib        
    0x95130280 _pthread_cond_wait + 833
    2   libsystem_c.dylib        
    0x951b6095 pthread_cond_wait$UNIX2003 + 71
    3   com.google.Chrome.framework  
    0x00753548 0x45000 + 7398728
    4   com.google.Chrome.framework  
    0x00753a7b 0x45000 + 7400059
    5   com.google.Chrome.framework  
    0x00753916 0x45000 + 7399702
    6   com.google.Chrome.framework  
    0x007346b1 0x45000 + 7272113
    7   com.google.Chrome.framework  
    0x007317b0 0x45000 + 7260080
    8   com.google.Chrome.framework  
    0x007470d1 0x45000 + 7348433
    9   com.google.Chrome.framework  
    0x0073152a 0x45000 + 7259434
    10  com.google.Chrome.framework  
    0x0075b071 0x45000 + 7430257
    11  com.google.Chrome.framework  
    0x02a939df 0x45000 + 44362207
    12  com.google.Chrome.framework  
    0x02a93adb 0x45000 + 44362459
    13  com.google.Chrome.framework  
    0x0075b10d 0x45000 + 7430413
    14  com.google.Chrome.framework  
    0x007574e5 0x45000 + 7415013
    15  libsystem_c.dylib        
    0x9512b5b7 _pthread_start + 344
    16  libsystem_c.dylib        
    0x95115d4e thread_start + 34
    Thread 11:: Chrome_CacheThread
    0   libsystem_kernel.dylib   
    0x961169ae kevent + 10
    1   com.google.Chrome.framework  
    0x0076a8c6 0x45000 + 7493830
    2   com.google.Chrome.framework  
    0x00768549 0x45000 + 7484745
    3   com.google.Chrome.framework  
    0x006fc741 0x45000 + 7042881
    4   com.google.Chrome.framework  
    0x007317b0 0x45000 + 7260080
    5   com.google.Chrome.framework  
    0x007470d1 0x45000 + 7348433
    6   com.google.Chrome.framework  
    0x0073152a 0x45000 + 7259434
    7   com.google.Chrome.framework  
    0x0075b071 0x45000 + 7430257
    8   com.google.Chrome.framework  
    0x02a93a0f 0x45000 + 44362255
    9   com.google.Chrome.framework  
    0x02a93ae9 0x45000 + 44362473
    10  com.google.Chrome.framework  
    0x0075b10d 0x45000 + 7430413
    11  com.google.Chrome.framework  
    0x007574e5 0x45000 + 7415013
    12  libsystem_c.dylib        
    0x9512b5b7 _pthread_start + 344
    13  libsystem_c.dylib        
    0x95115d4e thread_start + 34
    Thread 12:: Chrome_IOThread
    0   libsystem_kernel.dylib   
    0x961169ae kevent + 10
    1   com.google.Chrome.framework  
    0x0076a8c6 0x45000 + 7493830
    2   com.google.Chrome.framework  
    0x00768549 0x45000 + 7484745
    3   com.google.Chrome.framework  
    0x006fc741 0x45000 + 7042881
    4   com.google.Chrome.framework  
    0x007317b0 0x45000 + 7260080
    5   com.google.Chrome.framework  
    0x007470d1 0x45000 + 7348433
    6   com.google.Chrome.framework  
    0x0073152a 0x45000 + 7259434
    7   com.google.Chrome.framework  
    0x0075b071 0x45000 + 7430257
    8   com.google.Chrome.framework  
    0x02a93a3f 0x45000 + 44362303
    9   com.google.Chrome.framework  
    0x02a93af7 0x45000 + 44362487
    10  com.google.Chrome.framework  
    0x0075b10d 0x45000 + 7430413
    11  com.google.Chrome.framework  
    0x007574e5 0x45000 + 7415013
    12  libsystem_c.dylib        
    0x9512b5b7 _pthread_start + 344
    13  libsystem_c.dylib        
    0x95115d4e thread_start + 34
    Thread 13:: NetworkConfigWatcher
    0   libsystem_kernel.dylib   
    0x961137d2 mach_msg_trap + 10
    1   libsystem_kernel.dylib   
    0x96112cb0 mach_msg + 68
    2   com.apple.CoreFoundation 
    0x90c72f79 __CFRunLoopServiceMachPort + 185
    3   com.apple.CoreFoundation 
    0x90c7895f __CFRunLoopRun + 1247
    4   com.apple.CoreFoundation 
    0x90c7801a CFRunLoopRunSpecific + 378
    5   com.apple.CoreFoundation 
    0x90c77e8b CFRunLoopRunInMode + 123
    6   com.apple.Foundation     
    0x9090fbb6 -[NSRunLoop(NSRunLoop) runMode:beforeDate:] + 278
    7   com.google.Chrome.framework  
    0x006fd42f 0x45000 + 7046191
    8   com.google.Chrome.framework  
    0x006fd0fc 0x45000 + 7045372
    9   com.google.Chrome.framework  
    0x007317b0 0x45000 + 7260080
    10  com.google.Chrome.framework  
    0x007470d1 0x45000 + 7348433
    11  com.google.Chrome.framework  
    0x0073152a 0x45000 + 7259434
    12  com.google.Chrome.framework  
    0x0075b071 0x45000 + 7430257
    13  com.google.Chrome.framework  
    0x0075b10d 0x45000 + 7430413
    14  com.google.Chrome.framework  
    0x007574e5 0x45000 + 7415013
    15  libsystem_c.dylib        
    0x9512b5b7 _pthread_start + 344
    16  libsystem_c.dylib        
    0x95115d4e thread_start + 34
    Thread 14:: Proxy resolver
    0   libsystem_kernel.dylib   
    0x961158e2 __psynch_cvwait + 10
    1   libsystem_c.dylib        
    0x95130280 _pthread_cond_wait + 833
    2   libsystem_c.dylib        
    0x951b6095 pthread_cond_wait$UNIX2003 + 71
    3   com.google.Chrome.framework  
    0x00753548 0x45000 + 7398728
    4   com.google.Chrome.framework  
    0x00753a7b 0x45000 + 7400059
    5   com.google.Chrome.framework  
    0x00753916 0x45000 + 7399702
    6   com.google.Chrome.framework  
    0x007346b1 0x45000 + 7272113
    7   com.google.Chrome.framework  
    0x007317b0 0x45000 + 7260080
    8   com.google.Chrome.framework  
    0x007470d1 0x45000 + 7348433
    9   com.google.Chrome.framework  
    0x0073152a 0x45000 + 7259434
    10  com.google.Chrome.framework  
    0x0075b071 0x45000 + 7430257
    11  com.google.Chrome.framework  
    0x0075b10d 0x45000 + 7430413
    12  com.google.Chrome.framework  
    0x007574e5 0x45000 + 7415013
    13  libsystem_c.dylib        
    0x9512b5b7 _pthread_start + 344
    14  libsystem_c.dylib        
    0x95115d4e thread_start + 34
    Thread 15:: MediaStreamDeviceThread
    0   libsystem_kernel.dylib   
    0x961158e2 __psynch_cvwait + 10
    1   libsystem_c.dylib        
    0x95130280 _pthread_cond_wait + 833
    2   libsystem_c.dylib        
    0x951b6095 pthread_cond_wait$UNIX2003 + 71
    3   com.google.Chrome.framework  
    0x00753548 0x45000 + 7398728
    4   com.google.Chrome.framework  
    0x00753a7b 0x45000 + 7400059
    5   com.google.Chrome.framework  
    0x00753916 0x45000 + 7399702
    6   com.google.Chrome.framework  
    0x007346b1 0x45000 + 7272113
    7   com.google.Chrome.framework  
    0x007317b0 0x45000 + 7260080
    8   com.google.Chrome.framework  
    0x007470d1 0x45000 + 7348433
    9   com.google.Chrome.framework  
    0x0073152a 0x45000 + 7259434
    10  com.google.Chrome.framework  
    0x0075b071 0x45000 + 7430257
    11  com.google.Chrome.framework  
    0x0075b10d 0x45000 + 7430413
    12  com.google.Chrome.framework  
    0x007574e5 0x45000 + 7415013
    13  libsystem_c.dylib        
    0x9512b5b7 _pthread_start + 344
    14  libsystem_c.dylib        
    0x95115d4e thread_start + 34
    Thread 16:: BrowserWatchdog
    0   libsystem_kernel.dylib   
    0x961158e2 __psynch_cvwait + 10
    1   libsystem_c.dylib        
    0x95130280 _pthread_cond_wait + 833
    2   libsystem_c.dylib        
    0x951b60e0 pthread_cond_timedwait$UNIX2003 + 70
    3   com.google.Chrome.framework  
    0x00753627 0x45000 + 7398951
    4   com.google.Chrome.framework  
    0x00753a54 0x45000 + 7400020
    5   com.google.Chrome.framework  
    0x007346eb 0x45000 + 7272171
    6   com.google.Chrome.framework  
    0x007317b0 0x45000 + 7260080
    7   com.google.Chrome.framework  
    0x007470d1 0x45000 + 7348433
    8   com.google.Chrome.framework  
    0x0073152a 0x45000 + 7259434
    9   com.google.Chrome.framework  
    0x0075b071 0x45000 + 7430257
    10  com.google.Chrome.framework  
    0x0075b10d 0x45000 + 7430413
    11  com.google.Chrome.framework  
    0x007574e5 0x45000 + 7415013
    12  libsystem_c.dylib        
    0x9512b5b7 _pthread_start + 344
    13  libsystem_c.dylib        
    0x95115d4e thread_start + 34
    Thread 17:
    0   libsystem_kernel.dylib   
    0x961137d2 mach_msg_trap + 10
    1   libsystem_kernel.dylib   
    0x96112cb0 mach_msg + 68
    2   com.google.Chrome.framework  
    0x02b4d31a 0x45000 + 45122330
    3   com.google.Chrome.framework  
    0x007574e5 0x45000 + 7415013
    4   libsystem_c.dylib        
    0x9512b5b7 _pthread_start + 344
    5   libsystem_c.dylib        
    0x95115d4e thread_start + 34
    Thread 18:: BrowserBlockingWorker1/54019
    0   libsystem_kernel.dylib   
    0x961158e2 __psynch_cvwait + 10
    1   libsystem_c.dylib        
    0x95130280 _pthread_cond_wait + 833
    2   libsystem_c.dylib        
    0x951b60e0 pthread_cond_timedwait$UNIX2003 + 70
    3   com.google.Chrome.framework  
    0x00753627 0x45000 + 7398951
    4   com.google.Chrome.framework  
    0x007584a9 0x45000 + 7419049
    5   com.google.Chrome.framework  
    0x00757a3d 0x45000 + 7416381
    6   com.google.Chrome.framework  
    0x0075a8ca 0x45000 + 7428298
    7   com.google.Chrome.framework  
    0x007574e5 0x45000 + 7415013
    8   libsystem_c.dylib        
    0x9512b5b7 _pthread_start + 344
    9   libsystem_c.dylib        
    0x95115d4e thread_start + 34
    Thread 19:: NetworkConfigWatcher
    0   libsystem_kernel.dylib   
    0x961137d2 mach_msg_trap + 10
    1   libsystem_kernel.dylib   
    0x96112cb0 mach_msg + 68
    2   com.apple.CoreFoundation 
    0x90c72f79 __CFRunLoopServiceMachPort + 185
    3   com.apple.CoreFoundation 
    0x90c7895f __CFRunLoopRun + 1247
    4   com.apple.CoreFoundation 
    0x90c7801a CFRunLoopRunSpecific + 378
    5   com.apple.CoreFoundation 
    0x90c77e8b CFRunLoopRunInMode + 123
    6   com.apple.Foundation     
    0x9090fbb6 -[NSRunLoop(NSRunLoop) runMode:beforeDate:] + 278
    7   com.google.Chrome.framework  
    0x006fd42f 0x45000 + 7046191
    8   com.google.Chrome.framework  
    0x006fd0fc 0x45000 + 7045372
    9   com.google.Chrome.framework  
    0x007317b0 0x45000 + 7260080
    10  com.google.Chrome.framework  
    0x007470d1 0x45000 + 7348433
    11  com.google.Chrome.framework  
    0x0073152a 0x45000 + 7259434
    12  com.google.Chrome.framework  
    0x0075b071 0x45000 + 7430257
    13  com.google.Chrome.framework  
    0x0075b10d 0x45000 + 7430413
    14  com.google.Chrome.framework  
    0x007574e5 0x45000 + 7415013
    15  libsystem_c.dylib        
    0x9512b5b7 _pthread_start + 344
    16  libsystem_c.dylib        
    0x95115d4e thread_start + 34
    Thread 20:: Proxy resolver
    0   libsystem_kernel.dylib   
    0x961158e2 __psynch_cvwait + 10
    1   libsystem_c.dylib        
    0x95130280 _pthread_cond_wait + 833
    2   libsystem_c.dylib        
    0x951b6095 pthread_cond_wait$UNIX2003 + 71
    3   com.google.Chrome.framework  
    0x00753548 0x45000 + 7398728
    4   com.google.Chrome.framework  
    0x00753a7b 0x45000 + 7400059
    5   com.google.Chrome.framework  
    0x00753916 0x45000 + 7399702
    6   com.google.Chrome.framework  
    0x007346b1 0x45000 + 7272113
    7   com.google.Chrome.framework  
    0x007317b0 0x45000 + 7260080
    8   com.google.Chrome.framework  
    0x007470d1 0x45000 + 7348433
    9   com.google.Chrome.framework  
    0x0073152a 0x45000 + 7259434
    10  com.google.Chrome.framework  
    0x0075b071 0x45000 + 7430257
    11  com.google.Chrome.framework  
    0x0075b10d 0x45000 + 7430413
    12  com.google.Chrome.framework  
    0x007574e5 0x45000 + 7415013
    13  libsystem_c.dylib        
    0x9512b5b7 _pthread_start + 344
    14  libsystem_c.dylib        
    0x95115d4e thread_start + 34
    Thread 21:: Chrome_SafeBrowsingThread
    0   libsystem_kernel.dylib   
    0x961158e2 __psynch_cvwait + 10
    1   libsystem_c.dylib        
    0x95130280 _pthread_cond_wait + 833
    2   libsystem_c.dylib        
    0x951b6095 pthread_cond_wait$UNIX2003 + 71
    3   com.google.Chrome.framework  
    0x00753548 0x45000 + 7398728
    4   com.google.Chrome.framework  
    0x00753a7b 0x45000 + 7400059
    5   com.google.Chrome.framework  
    0x00753916 0x45000 + 7399702
    6   com.google.Chrome.framework  
    0x007346b1 0x45000 + 7272113
    7   com.google.Chrome.framework  
    0x007317b0 0x45000 + 7260080
    8   com.google.Chrome.framework  
    0x007470d1 0x45000 + 7348433
    9   com.google.Chrome.framework  
    0x0073152a 0x45000 + 7259434
    10  com.google.Chrome.framework  
    0x0075b071 0x45000 + 7430257
    11  com.google.Chrome.framework  
    0x0075b10d 0x45000 + 7430413
    12  com.google.Chrome.framework  
    0x007574e5 0x45000 + 7415013
    13  libsystem_c.dylib        
    0x9512b5b7 _pthread_start + 344
    14  libsystem_c.dylib        
    0x95115d4e thread_start + 34
    Thread 22:: BrowserBlockingWorker2/57859
    0   libsystem_kernel.dylib   
    0x961158e2 __psynch_cvwait + 10
    1   libsystem_c.dylib        
    0x95130280 _pthread_cond_wait + 833
    2   libsystem_c.dylib        
    0x951b60e0 pthread_cond_timedwait$UNIX2003 + 70
    3   com.google.Chrome.framework  
    0x00753627 0x45000 + 7398951
    4   com.google.Chrome.framework  
    0x007584a9 0x45000 + 7419049
    5   com.google.Chrome.framework  
    0x00757a3d 0x45000 + 7416381
    6   com.google.Chrome.framework  
    0x0075a8ca 0x45000 + 7428298
    7   com.google.Chrome.framework  
    0x007574e5 0x45000 + 7415013
    8   libsystem_c.dylib        
    0x9512b5b7 _pthread_start + 344
    9   libsystem_c.dylib        
    0x95115d4e thread_start + 34
    Thread 23:: Chrome_HistoryThread
    0   libsystem_kernel.dylib   
    0x961158e2 __psynch_cvwait + 10
    1   libsystem_c.dylib        
    0x95130280 _pthread_cond_wait + 833
    2   libsystem_c.dylib        
    0x951b60e0 pthread_cond_timedwait$UNIX2003 + 70
    3   com.google.Chrome.framework  
    0x00753627 0x45000 + 7398951
    4   com.google.Chrome.framework  
    0x00753a54 0x45000 + 7400020
    5   com.google.Chrome.framework  
    0x007346eb 0x45000 + 7272171
    6   com.google.Chrome.framework  
    0x007317b0 0x45000 + 7260080
    7   com.google.Chrome.framework  
    0x007470d1 0x45000 + 7348433
    8   com.google.Chrome.framework  
    0x0073152a 0x45000 + 7259434
    9   com.google.Chrome.framework  
    0x0075b071 0x45000 + 7430257
    10  com.google.Chrome.framework  
    0x0075b10d 0x45000 + 7430413
    11  com.google.Chrome.framework  
    0x007574e5 0x45000 + 7415013
    12  libsystem_c.dylib        
    0x9512b5b7 _pthread_start + 344
    13  libsystem_c.dylib        
    0x95115d4e thread_start + 34
    Thread 24:: Chrome_SyncThread
    0   libsystem_kernel.dylib   
    0x961158e2 __psynch_cvwait + 10
    1   libsystem_c.dylib        
    0x95130280 _pthread_cond_wait + 833
    2   libsystem_c.dylib        
    0x951b60e0 pthread_cond_timedwait$UNIX2003 + 70
    3   com.google.Chrome.framework  
    0x00753627 0x45000 + 7398951
    4   com.google.Chrome.framework  
    0x00753a54 0x45000 + 7400020
    5   com.google.Chrome.framework  
    0x007346eb 0x45000 + 7272171
    6   com.google.Chrome.framework  
    0x007317b0 0x45000 + 7260080
    7   com.google.Chrome.framework  
    0x007470d1 0x45000 + 7348433
    8   com.google.Chrome.framework  
    0x0073152a 0x45000 + 7259434
    9   com.google.Chrome.framework  
    0x0075b071 0x45000 + 7430257
    10  com.google.Chrome.framework  
    0x0075b10d 0x45000 + 7430413
    11  com.google.Chrome.framework  
    0x007574e5 0x45000 + 7415013
    12  libsystem_c.dylib        
    0x9512b5b7 _pthread_start + 344
    13  libsystem_c.dylib        
    0x95115d4e thread_start + 34
    Thread 25:: Chrome_PasswordStore_Thread
    0   libsystem_kernel.dylib   
    0x961158e2 __psynch_cvwait + 10
    1   libsystem_c.dylib        
    0x95130280 _pthread_cond_wait + 833
    2   libsystem_c.dylib        
    0x951b6095 pthread_cond_wait$UNIX2003 + 71
    3   com.google.Chrome.framework  
    0x00753548 0x45000 + 7398728
    4   com.google.Chrome.framework  
    0x00753a7b 0x45000 + 7400059
    5   com.google.Chrome.framework  
    0x00753916 0x45000 + 7399702
    6   com.google.Chrome.framework  
    0x007346b1 0x45000 + 7272113
    7   com.google.Chrome.framework  
    0x007317b0 0x45000 + 7260080
    8   com.google.Chrome.framework  
    0x007470d1 0x45000 + 7348433
    9   com.google.Chrome.framework  
    0x0073152a 0x45000 + 7259434
    10  com.google.Chrome.framework  
    0x0075b071 0x45000 + 7430257
    11  com.google.Chrome.framework  
    0x0075b10d 0x45000 + 7430413
    12  com.google.Chrome.framework  
    0x007574e5 0x45000 + 7415013
    13  libsystem_c.dylib        
    0x9512b5b7 _pthread_start + 344
    14  libsystem_c.dylib        
    0x95115d4e thread_start + 34
    Thread 26:: BrowserBlockingWorker3/78339
    0   libsystem_kernel.dylib   
    0x961158e2 __psynch_cvwait + 10
    1   libsystem_c.dylib        
    0x95130280 _pthread_cond_wait + 833
    2   libsystem_c.dylib        
    0x951b60e0 pthread_cond_timedwait$UNIX2003 + 70
    3   com.google.Chrome.framework  
    0x00753627 0x45000 + 7398951
    4   com.google.Chrome.framework  
    0x007584a9 0x45000 + 7419049
    5   com.google.Chrome.framework  
    0x00757a3d 0x45000 + 7416381
    6   com.google.Chrome.framework  
    0x0075a8ca 0x45000 + 7428298
    7   com.google.Chrome.framework  
    0x007574e5 0x45000 + 7415013
    8   libsystem_c.dylib        
    0x9512b5b7 _pthread_start + 344
    9   libsystem_c.dylib        
    0x95115d4e thread_start + 34
    Thread 27:: WorkerPool/88591
    0   libsystem_kernel.dylib   
    0x961158e2 __psynch_cvwait + 10
    1   libsystem_c.dylib        
    0x95130280 _pthread_cond_wait + 833
    2   libsystem_c.dylib        
    0x951b60e0 pthread_cond_timedwait$UNIX2003 + 70
    3   com.google.Chrome.framework  
    0x00753627 0x45000 + 7398951
    4   com.google.Chrome.framework  
    0x0075d15f 0x45000 + 7438687
    5   com.google.Chrome.framework  
    0x0075d65c 0x45000 + 7439964
    6   com.google.Chrome.framework  
    0x007574e5 0x45000 + 7415013
    7   libsystem_c.dylib        
    0x9512b5b7 _pthread_start + 344
    8   libsystem_c.dylib        
    0x95115d4e thread_start + 34
    Thread 28:
    0   libsystem_kernel.dylib   
    0x961160ee __workq_kernreturn + 10
    1   libsystem_c.dylib        
    0x9512e0ac _pthread_workq_return + 45
    2   libsystem_c.dylib        
    0x9512de79 _pthread_wqthread + 448
    3   libsystem_c.dylib        
    0x95115d2a start_wqthread + 30
    Thread 29:: CVDisplayLink
    0   libsystem_kernel.dylib   
    0x961158e2 __psynch_cvwait + 10
    1   libsystem_c.dylib        
    0x951302e9 _pthread_cond_wait + 938
    2   libsystem_c.dylib        
    0x95130572 pthread_cond_timedwait_relative_np + 47
    3   com.apple.CoreVideo      
    0x94c98fd7 CVDisplayLink::waitUntil(unsigned long long) + 297
    4   com.apple.CoreVideo      
    0x94c9805c CVDisplayLink::runIOThread() + 658
    5   com.apple.CoreVideo      
    0x94c97db2 startIOThread(void*) + 160
    6   libsystem_c.dylib        
    0x9512b5b7 _pthread_start + 344
    7   libsystem_c.dylib        
    0x95115d4e thread_start + 34
    Thread 0 crashed with X86 Thread State (32-bit):
      eax: 0x00000000  ebx: 0x00000000  ecx: 0x7ce8e400  edx: 0x7ce97cc0
      edi: 0x7e9844e0  esi: 0x00000001  ebp: 0xbffc0688  esp: 0xbffc0680
       ss: 0x00000023  efl: 0x00000282  eip: 0x00711447   cs: 0x0000001b
       ds: 0x00000023   es: 0x00000023   fs: 0x00000000   gs: 0x0000000f
      cr2: 0x09907000
    Logical CPU: 2
    Binary Images:
       0x3e000 -
    0x3eff3 +com.google.Chrome (28.0.1500.95 - 1500.95) <1F14C17E-910C-3A38-B8EA-4D3868359AF3> /Applications/Google Chrome.app/Contents/MacOS/Google Chrome
       0x45000 -  0x40f1f1f +com.google.Chrome.framework (28.0.1500.95 - 1500.95) <AFF7EFEF-A842-3ED5-8795-987BB0D2F0F4> /Applications/Google Chrome.app/Contents/Versions/28.0.1500.95/Google Chrome Framework.framework/Google Chrome Framework
    0x441e000 -  0x44e7ff3  com.apple.Bluetooth (4.1.4 - 4.1.4f2) <09A08285-00DD-3F8A-995B-18E2BF86E14B> /System/Library/Frameworks/IOBluetooth.framework/Versions/A/IOBluetooth
    0x4538000 -  0x4542fff  com.apple.CoreBluetooth (100.6 - 1) <3562A2BD-DDB4-337B-BD98-A89D24109094> /System/Library/Frameworks/IOBluetooth.framework/Versions/A/Frameworks/CoreBlue tooth.framework/Versions/A/CoreBluetooth
    0x58f4000 -  0x5901ff3  com.apple.Librarian (1.1 - 1) <68F8F983-5F16-3BA5-BDA7-1A5451CC02BB> /System/Library/PrivateFrameworks/Librarian.framework/Versions/A/Librarian
    0x5943000 -  0x5952ff7 +com.google.Keystone.Registration (1.1.0 - 1.1.0.3659) <2379CBDF-65AB-246D-D5F4-3A450D457F42> /Applications/Google Chrome.app/Contents/Versions/28.0.1500.95/Google Chrome Framework.framework/Frameworks/KeystoneRegistration.framework/KeystoneRegistrat ion
    0x59a6000 -  0x59abfff  com.apple.audio.AppleHDAHALPlugIn (2.3.7 - 2.3.7fc4) <903097A8-3922-3BF8-8B82-8BD1D831F6E7> /System/Library/Extensions/AppleHDA.kext/Contents/PlugIns/AppleHDAHALPlugIn.bun dle/Contents/MacOS/AppleHDAHALPlugIn
    0x7eed000 -  0x7eedfff +cl_kernels (???) <E37CAD34-CEF6-4542-8D4B-22D7EC0F5AD6> cl_kernels
    0x7f13000 -  0x7f14ff5 +cl_kernels (???) <4E8CD9D8-7F8F-4424-8A2E-EF38A1E6C8AD> cl_kernels
    0x85d4000 -  0x85dcffd  libcldcpuengine.dylib (2.2.16) <0BE2D018-66CC-3F69-B8F1-7A81EEEE09F4> /System/Library/Frameworks/OpenCL.framework/Libraries/libcldcpuengine.dylib
    0x85e3000 -  0x8675fff  unorm8_bgra.dylib (2.2.16) <1298D118-0B14-3F3D-B2CA-348A1C67183E> /System/Library/Frameworks/OpenCL.framework/Libraries/ImageFormats/unorm8_bgra. dylib
    0x97a5000 -  0x97a9fff  com.apple.IOAccelerator (74.5.1 - 74.5.1) <CB7CDE62-DAEC-35AF-8ADB-3271AA2DF921> /System/Library/PrivateFrameworks/IOAccelerator.framework/Versions/A/IOAccelera tor
    0x9bd5000 -  0x9bdffff  libGPUSupportMercury.dylib (8.9.2) <302EC167-66A3-3E12-8416-F03F50CA96D9> /System/Library/PrivateFrameworks/GPUSupport.framework/Versions/A/Libraries/lib GPUSupportMercury.dylib
    0xa4da000 -  0xa66effa  GLEngine (8.9.2) <73F967E8-16C2-3FB2-8C04-293EB038952D> /System/Library/Frameworks/OpenGL.framework/Resources/GLEngine.bundle/GLEngine
    0xa6a5000 -  0xa826fff  libGLProgrammability.dylib (8.9.2) <B7AFCCD1-7FA5-3071-9F11-5161FFA2076C> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLProgramma bility.dylib
    0xa858000 -  0xaca5ff3  com.apple.driver.AppleIntelHD4000GraphicsGLDriver (8.12.47 - 8.1.2) <5B46A344-20F2-3C75-9D42-D13092E6BB81> /System/Library/Extensions/AppleIntelHD4000GraphicsGLDriver.bundle/Contents/Mac OS/AppleIntelHD4000GraphicsGLDriver
    0xb1f7000 -  0xb222ff7  GLRendererFloat (8.9.2) <96FF25EA-1BC3-3FBA-85B6-08CC9F1D2077> /System/Library/Frameworks/OpenGL.framework/Resources/GLRendererFloat.bundle/GL RendererFloat
    0x8fe3d000 - 0x8fe6fe57  dyld (210.2.3) <23516BE4-29BE-350C-91C9-F36E7999F0F1> /usr/lib/dyld
    0x90007000 - 0x9006bff3  libstdc++.6.dylib (56) <79A6B148-08F6-30C6-9B31-6183A6295290> /usr/lib/libstdc++.6.dylib
    0x9006c000 - 0x9006efff  com.apple.securityhi (4.0 - 55002) <15E9B9BC-108F-3416-A0A7-A321A85081F7> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SecurityHI.fr amework/Versions/A/SecurityHI
    0x9006f000 - 0x900deffb  com.apple.Heimdal (3.0 - 2.0) <964D9952-B0F2-34F6-8265-1823C0D5EAB8> /System/Library/PrivateFrameworks/Heimdal.framework/Versions/A/Heimdal
    0x900df000 - 0x90121ffb  com.apple.RemoteViewServices (2.0 - 80.6) <AE962502-4539-3893-A2EB-9D384652AEAC> /System/Library/PrivateFrameworks/RemoteViewServices.framework/Versions/A/Remot eViewServices
    0x90122000 - 0x901b4ffb  libvMisc.dylib (380.6) <6DA3A03F-20BE-300D-A664-B50A7B4E4B1A> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvMisc.dylib
    0x901bd000 - 0x901f8fef  libGLImage.dylib (8.9.2) <9D41F71E-E927-3767-A856-55480E20E9D9> /System/Library/Frameworks/OpenGL.fr

    Here's the report from EtreCheck:
    Hardware Information:
              Mac mini (Late 2012)
              Mac mini - model: Macmini6,1
              1 2.5 GHz Intel Core i5 CPU: 2 cores
              16 GB RAM
    Video Information:
              Intel HD Graphics 4000 - VRAM: 768 MB
    System Software:
              OS X 10.8.4 (12E55) - Uptime: 0 days 0:11:37
    Disk Information:
              APPLE HDD HTS545050A7E362 disk0 : (500.11 GB)
                        disk0s1 (disk0s1) <not mounted>: 209.7 MB
                        Macintosh HD (disk0s2) /: 499.25 GB (213.98 GB free)
                        Recovery HD (disk0s3) <not mounted>: 650 MB
    USB Information:
              Western Digital My Passport 0730 500.07 GB
                        disk2s1 (disk2s1) <not mounted>: 209.7 MB
                        Time Machine Backup (disk2s2) /Volumes/Time Machine Backup: 499.73 GB (52.94 GB free)
              Microsoft Microsoft® Digital Media Pro Keyboard
              Western Digital  External HDD     250.06 GB
                        Backups (disk1s1) /Volumes/Backups: 250.06 GB (60.58 GB free)
              Apple Inc. BRCM20702 Hub
                        Apple Inc. Bluetooth USB Host Controller
              Apple, Inc. IR Receiver
    FireWire Information:
    Thunderbolt Information:
              Apple Inc. thunderbolt_bus
    Kernel Extensions:
              com.microsoft.driver.MicrosoftKeyboard          (8.2)
              com.microsoft.driver.MicrosoftKeyboardUSB          (8.2)
    Problem System Launch Daemons:
    Problem System Launch Agents:
    Launch Daemons:
              [loaded] com.adobe.fpsaud.plist
              [loaded] com.carbonite.launchd.carbonitedaemon.plist
    Launch Agents:
              [loaded] com.carbonite.launchd.carbonitealerts.plist
              [loaded] com.carbonite.launchd.carbonitestatus.plist
    User Launch Agents:
              [loaded] com.google.keystone.agent.plist
              [loaded] com.macupdate.desktop5.scanner.plist
    User Login Items:
              iTunesHelper
              ChronoSyncBackgrounder
              NZBVortex Helper
              TransmitMenu
              Dropbox
              PhotoStream2Folder
              Spark Daemon
              XMenu
              AudioSwitcher
              Alfred 2
              MicrosoftKeyboardHelper
              witchdaemon
              SpeechSynthesisServer
              RightZoom
    3rd Party Preference Panes:
              Carbonite
              Flash Player
              Microsoft Keyboard
              Witch
    Internet Plug-ins:
              Flash Player.plugin
              FlashPlayer-10.6.plugin
              JavaAppletPlugin.plugin
              QuickTime Plugin.plugin
    User Internet Plug-ins:
    Bad Fonts:
              None
    Top Processes by CPU:
                   9%          VoiceOver
                   7%          ChronoSyncBackgrounder
                   2%          WindowServer
                   2%          EtreCheck
                   1%          coreaudiod
                   1%          CarboniteDaemon
                   0%          fontd
                   0%          diskmanagementd
                   0%          Dropbox
                   0%          warmd
    Top Processes by Memory:
              98 MB    mds
              82 MB    Finder
              82 MB    Dropbox
              82 MB    VoiceOver
              49 MB    com.apple.dock.extra
              49 MB    Alfred 2
              49 MB    CalendarAgent
              49 MB    loginwindow
              49 MB    SystemUIServer
              49 MB    PhotoStream2Folder
    Virtual Memory Statistics
              12.40 GB           Free RAM
              1.56 GB  Active RAM
              213 MB   Inactive RAM
              1.83 GB  Wired RAM
              347 MB   Page-ins
              0 B      Page-outs

  • Urgent Flash help needed; Using Movie Clip Objects

    Hello,
    I am currently trying to design a small flash movie.
    I have a "Movie Clip" object (a short animation) that i wish to act like a static object until a certain frame on the main Timeline.
    Then i want it to play out, at it's own pace, just like normal, until it finishes (no looping)...
    What do i need to put into, and where do i put it?
    So in short, frame 30 of the main animation triggers the clip, whilst the main animation still runs...
    I know very, very minimal AS3... so please, can someone help me?
    A lot of solutions suggest a button, but I don't want to use a button, as it's not interactive - just a movie.
    i just want the damn movie clip to play in the damn movie when it reaches frame 30! it shouldn't be that hard..

    There is most likely no need for any code. And most likely no need for a movieclip even.
    It sounds like you would need a graphic symbol. (You can convert it in the library or you can just change the instance you have placed on stage.)
    First select the symbol on its first keyframe and on the properties panel select the looping options and tell it single frame, first 1.
    Then move along your timeline to where you want the animation to start playing. Add a keyframe. Now select Once, first 1.
    Now it will start playing, you will be able to see it play as you scrub the timeline.
    If you use movieclips and code for this, you won't be able to see them play together as you scrub the timeline.

  • Anybody can help me to identify the object???

    Here I have two object, one is the instance of the parent class Class1, another is the instance of child class Class2, how to identify them in my program? Thanks in advance.
    Here I attach the logic in my program:
    public void myfunction(Object obj)
    if (obj instanceof Class1)
    process1();
    if (obj instanceof Class2)
    process2();
    when I invoke myfunction with parameter obj which is the instance of Class2, the process1 was run, and process2 was run too, why it happens? how to identify them?

    That should have been
    public void myfunction(Object obj)
    if (obj instanceof Class1)
    process1();
    else if (obj instanceof Class2)
    process2();
    else
    System.err.println("Unexpected object type: "+obj);
    Since Class1 is the superclass of Class2, every instance of Class2 is an instance of Class1, and process2 will never be executed in the above code.
    You should probably use a callback method. E.g:
    public class MyClass {
        public final void process1() {
            System.out.println("process1 called");
        public final void process2() {
            System.out.println("process2 called");
        public void mymethod(Processable p) {
            p.process(this);
        public static void main(String args[]) {
            MyClass instance = new MyClass();
            instance.mymethod(new Class1());
            instance.mymethod(new Class2());
    interface Processable {
        void process(MyClass processor);
    class Class1 implements Processable {
        public void process(MyClass processor) {
            processor.process1();
    class Class2 extends Class1 {
        public void process(MyClass processor) {
            processor.process2();
    Note that the mymethod method does not need to be updated every time you add a new subclass - you just need to write a process method for the new subclass.

  • Help needed in identifying MSI board

    Hi gurus...
    I recently bought a secondhand Micro-Star motherboard off eBay (yeah, stupid, I know, but you live and learn) in an effort to rectify a problem with my sister's PC - it's only really an email box so I didn't want to spend a fortune on it, but she wants to use floppies, and I suspect that her current FDD controller is faulty.
    Trouble is, the board came with no identification, no driver/install CD or much else. I've tried contacting MSI tech support but the email bounced, so I've come to you guys.
    Board is Micro-ATX form factor, based on a Green PCB, marked 'Micro-Star model 6506'; six mounting holes.
    Serial number label on underside shows: 6853150100 and M65060111279503
    Intel Pentium 4 CPU socket 478.
    Serial number label by CPU socket shows 1800192029
    Power connectors: CONN1, (20-pin) and JPW1 (4-pin)
    Fan connectors CFAN1 and SFAN1;
    Main peripheral connector slots are:
    IDE x 2 (my guess is parallel ATA)
    FDD x 1
    AGP Graphics card slot
    2 x PCI peripheral slots
    1 x CNR modem slot
    2 x DIMM 168-pin RAM slots
    USB 2.0 on-board header.
    Ports/peripheral connectors are:
    PS2 Keyboard and mouse ports
    2 x USB ports
    D-9 COM1 and COM2, with parallel D-25 printer port stacked above;
    D-15 Games/sound port above 3 x 3.5mm mini-jack sound connectors
    Behind this stack are four connectors, three 4-pin labelled JPHN1 (green) JAUX1 (white) and JCD1 (black) and one 3-pin labelled JSP1 (black). All have latching sockets of the standard CD-Audio connector type.
    There appears to be no on-board LAN or video/graphics.
    BIOS chip is labelled 686 AMIBIOS (c)1999 BA44 7151
    The  board came with half-height Video card and LAN card, (with half-height metal mounting plates) suggesting a low-profile case though these cards are not easily identifiable. I doubt that would be much help anyway
    Perusing the MSI support sites produces no useful information - Searching on the board number says it's not recognised. If anyone can at least point me in the direction of the 'marketing' name for this board so that I can identify essentials such as FSB bandwidth, RAM type and speed, AGP speed etc, I may be in with a fighting chance of making something useful out of it.
    Of course, I acquired a P4 CPU with it, so I can at least improve on sis's Celeron, but that still won't get the floppy working....
    Any suggestions gratefully received.
    BarryH - thenudehamster

    Quote from: thenudehamster on 22-February-07, 02:42:57
    Thank you, Bosskiller;
    I have to admit I hadn't considered an OEM possibility. Although my Czech isn't up to translating most of the extras on the site, I was able to retrieve (eventually - not the easiest sites to navigate) the equivalent information and download various drivers from the equivalent UK site.
    All being well, I'll get to the rebuild tomorrow; any more problems and I'll repost here.
    Thanks again
    BarryH - thenudehamster
    you are welcome, let we know if you need further help.

  • Help need in creating DB objects programatically .

    Hi All,
    I have a case where i need to create a table in DB from ADF and need to insert/modify/delete their records in java code.
    Is that possible to create an update-able view object from java code rather going with conventional declarative steps in ADF?
    Regards,
    Suresh kumar.k

    ADF BC runtime doesn't give you any feature out for the box for creating DB objects, you may need to use standard JDBC API+ DDL. (btw, there may be design time API used by JDev for DB synch . however I'm not sure about the feasibility of using the same in your context) Next step may be building programmatic EO/VO. You can refer this blog post for the same - http://jobinesh.blogspot.com/2010/06/model-driven-approach-for-building.html

  • Help needed in playing HTML ' object ' videos with formats mov, avi, wmv...

    Hi,
    Here is where I am at this juncture...
    I have a requirement wherein I need to render an HTML text containing an '<object>' tag which embeds a video, for example:-
    <object width="320" height="240"
               data="javascript/media/ABC.wmv"
               type="application/x-mplayer2">
              <param name="url" value="javascript/media/ABC.wmv" />
    </object>
    Now I need to render this video into my Flex Web Application.
    One way to do it, as I see, is somehow extract the 'data' attribute and put it as a 'source' for spark VideoPlayer.
    Is there any better way to do this?
    Also note that, I require to render all video formats (avi, mov, wmv etc.) and not just flv or f4v. Any pointers for this would be appreciated.
    Thanks

    Not so "easy share" after all is it?
    Still Capture specs read as follows:
    Still capture
    Still format
    JPEG/EXIF v2.21
    Picture size
    12.0 MP (4000 × 3000)—4:3
    10.7 MP (4000 × 2664)—3:2
    9.0 MP (4000 × 2256)—16:9
    6.0 MP (2832 × 2128)—4:3
    3.1 MP (2048 × 1536)—4:3
    2.2 MP (1800 × 1200)—3:2
    2.1 MP (1920 × 1080)—16:9
    1.2 MP (1280 × 960)—4:3
    Compression
    JPEG/EXIF v2.21
    Color modes
    high color, natural color, low color, sepia, black and white
    Sharpness
    high, normal, low
    http://www.kodak.com/eknec/PageQuerier.jhtml?pq-path=11619&pq-locale=en_US
    Question: Are these still images jpeg or Kodak's EXIF? or are you using the camera in HD movie mode where iMovie fails to recognize the file format/s?
    If you read the system requirements for this device it clearly states X.3 or higher. However, I'm wondering if this also includes X.5.1 or not .....
    Message was edited by: SDMacuser

  • Help Needed to identify/use BAPI's in IS-Media

    Hi Friends,
    I am new to IS-Media package and working on identifying appropriate BAPI's to:
    1. Create Business Partners:
    I am able to use BAPIBUSISM007_CREATEFROMDATA to create Business Partners but it supports only 5 roles,  but my requirement is to create other roles using a BAPI like (Media Sales Agent -ISM021). Is there any other BAPI to achieve this or can the above BAPI somehow be used?
    2. Media Issues.
    The BAPI mentioned in the BAPI transaction under Product Master data is BAPI_MATERIAL_SAVEDATA, but this does not have any structures/fields that support IS-Media specific fields. So how do I use this BAPI to create Media Issues.
    Any pointers or help in this regard will be highly appreciated <removed by Moderator>
    Thanks in Advance,
    Praveen.
    Edited by: Suresh Datti on Aug 24, 2009 12:00 PM

    Hi,
    1) For creating/modifying business partners checks BAPI's
          BAPI_BUSINESS_PARTNER_CHANGE
          BAPI_BUSINESS_PARTNER_CREATE
          BAPI_BUSINESS_PARTNER_MODIFY
          BAPI_BUSINESS_PARTN_GET_DETAIL
    2) check these BAPI's if they help
        BAPI_RETAILMATERIAL_CREATE
        BAPI_STANDARDMATERIAL_CREATE
    Regards,
    Amit

  • Help needed to extract Modified objects in CRM 5.0

    Hello,
    We are trying to find out all the modified Standard objects in CRM 5.0 Comparing with CRM 4.0. Is there any standard Function Module/Table/Report Program that can give us the details of the same.
    We have tried SPAU and SPDD. These were giving give us only the modifications which we have done to either a SAP delivered object or any object that we have created.
    It does not give the chages that are made from one release to the other, as in, it does not tell us which objects are modified from CRM 4.0 version to 5.0 version.
    If we cannot get the changes between version directly, is there any table where the version numbers of each SAP object is maintained along with the release.
    Thanks in advance.
    Regards,
    Uday.

    you need to copy this class and make the changes..in the method.
    Assign the new Z class, to the action profile.
    Rgds,
    Arjun

  • Help, need to identify animation

    i need help to identity this animation, its on flash player,
    i saw it on myspace, so i wanted it, but i dont know how to find
    it, please help me, i want to know the link direct to put on
    myspace or the link online, or the name, its like a refrigerator
    magnet message thing, thanks
    click
    here for picture

    Hi Jelina,
    Try this:
    Table name: AGR_HIER
    Filed Name: Unique ID
    In the filed search the table entries by providing the target name like 
    *cube001*
    This would probably work if the qury naming is done with target name in it ( if the target name is there in the query technical name).
    All the best.
    Pratap Sone

  • Help needed to understand String object

    Hi all,
    I want to understand the difference in statements
    new String("") and string declared as "".
    Is this only a shortcut or is there any other difference like re-using the string objects created in the pool?
    what is the value in the String instantiated as new String()
    Thanx

    Hi all,
    I want to understand the difference in statements
    new String("") and string declared as "".
    Is this only a shortcut or is there any other
    difference like re-using the string objects created in
    the pool?
    what is the value in the String instantiated as new
    String()
    ThanxLiteral strings are internalized and reused, whereas new String always creates a new object.
    Thus
    String s = "";
    is better than
    String s = new String("");
    The purpose of the String copy constructor is not made explicit in the API docs, but if you look at Sun's code, you will see that it can serve a purpose:
    Substrings reference the same underlying char array as the String they are a substring of - they just have a different offset into that array, and a different length. The copy constructor however, creates a String with a new underlying char array, that contains only the relevant 'subarray' of the original String' sunderlying char array. So, if your code receives a large String, and then discards that String and passes around a substring of it, you might find you save a great deal of memory by using new String(s.substring(x, y));
    Note however that these comments are based solely on Sun's core API code, and it might not be the case that other vendors implement String the same way, or that Sun will continue to do so into the future.

  • Help needed in identifying the performance bottle neck

    Version: Oracle 11g
    I have application which accesses an Oracle DB. With only one application accessing the DB, the application is quite fast in retrieving the results from the DB or inserting results into the DB.
    But if another application is added accessing the same database but different data from the database, the speed of the application has reduced drastically..
    Can anybody tell me what are the possible reasons for such reductions in the speed of the application..

    Hi,
    Run statspack/AWR for each case for 5 minute and see the diffrencess.

  • Need to get a dependent dependent objects list on a table

    Hi
    I am trying to get the dependent object list on a table like triggers ,indexes,synonyms etc.. through PL/SQL code.
    Example :
    For table per_all_people_f we need to list how many triggers are there.. and what all those... etc.
    Can anyone help on this issue?
    Thanks
    Preeti

    SQL> exec dbms_utility.get_dependency('TABLE', 'SCOTT', 'EMP');
    DEPENDENCIES ON SCOTT.EMP
    *TABLE SCOTT.EMP()
    *   PROCEDURE SCOTT.P1()
    *   PACKAGE SCOTT.PACK_CUR()
    *      PACKAGE BODY SCOTT.PACK_CUR()
    *   VIEW SCOTT.EMP_VIEW()
    *   PACKAGE SCOTT.PACK_CUR1()
    *      PACKAGE BODY SCOTT.PACK_CUR1()
    *   PACKAGE BODY SCOTT.MANAGE_EMPS()
    *   PROCEDURE SCOTT.DP_PR1()
    *   FUNCTION SCOTT.TESTFUN()
    *      PROCEDURE SCOTT.P1()
    *   PROCEDURE SCOTT.CALC_BONUS()
    *   VIEW SCOTT.TESTVEW()
    *   FUNCTION SCOTT.SP_LISTEMP()
    *   VIEW SCOTT.EMP1()
    *   VIEW SCOTT.VW_RR()
    *   TRIGGER SCOTT.TR_EMP_REC()
    PL/SQL procedure successfully completed.

  • Need to find the dependent object details for an object.

    Hi,
    Is there any query to find the dependent object details for any object. Like if mview is built on a table, then i should be able to find the table name with out checking code of the mview. Thanks in-advance for your support. similar way for view and functions or procedures etc...
    Regards
    DBA.

    Hi all,
    Thanks a lot for your inputs. seems i have not given full details in my post. I need to have a SQL Query to find the dependent object details not DDL.
    if i give a metriealized view name, i should get the base table names directly not DDLs...
    if i give index name i should get its corresponding table name(off course i got this already)...
    if i give a function name, i should get all the tables which are being in the function...etc...
    i am looking for a script which will cover all the aspects.....i hope i have given now enough information for this....
    Regards
    DBA.

  • Variant characterstics search help in sales order using object dependency

    Hi Sapients,
    we are trying to configure variant configuration in sales order.
    TDC related details like grade,profile,tdc no, tdc date, tdc customer, hardness, composition will be entered through a ZPROGRAM and the details will be stored in ZTABLE (ZTDC).Now when we create sales order, after entering the material and clicking on variant configuration, the configuration screen comes up where the grade and profile will come from the material master. User will punch the appropriate TDC number, but a search help needs to be generated for TDC no based on the values of grade and profile, which will show the tdc numbers punched for that particular grade and profile from the Ztable.
    Please guide me how to resolve this issue. shall i create dependency based on TDC no. In dependecy what is the code i have to write . Please elaborate in detail as i dont have idea on dependency.
    Is it possible through user exit.
    Thanks

    Hi,
    My thoughts are as follows.
    If for a particular combination of grade and profile, there is unique TDC number, then it is possible to use variant table. However if the number is not unique for a combination of grade and profile, then V.Table will not help. Dependency using V.Table will not give the possible list of values, but will automatically update the value based on grade and profile.
    If the combination is not unique, you can think of using a FUNCTION (CU67). SAP documentation is very good on using functions and function modules related to this. It is not as difficult as we think it is and we are using functions for some of our functionalities.
    So based on this, you can decide on your further actions.

Maybe you are looking for

  • Sync multiple google calendars with iPhone

    You will not find this option on your iPhone calendar settings. You will not find this option on your Google calendar settings. The only way to sync all the calendars you have linked to your google account - not just the primary one - is to go to thi

  • HT5248 My hard drive failed and I lost my 09 iWork programs.

    I can't find my install DVD, but I do have the serial numbers.  How do I get my programs back without having to buy again?

  • Installing Forms 11g 64bit on Windows Server 2008 64bit

    Hi, we are trying to install Forms 11g 64 bit with WebLogic 64bit on windows Server 2008 64bit and followed the short checklist of Jan Carlin : - installed JDK 64bit - installed WLS1032-generic - started installation of Forms/Reports Installation of

  • TC Signal low but location is very close

    I just fired up iStumbler to check my wifi. Signal strength is varying between 40% and 60%. This seems very low since the TC is only about 20 feet away from my iMac. My settings: 802.11n only Channel 3 (no other networks in my area use channel 3) WPA

  • Counting Requirement (Counting PO line items wrt PO No)

    Hi All, We have a requirement here . Suppose there are 2 Purchase orders Y & Z . "Y" purchase order has  5 line items as 10,20,30,40,50 . "Z" purchase order has 7 line items as 10,20,30,40,50,60,70 . now i want to count the number of purchase orders