-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathotp_load.log
1660 lines (1650 loc) · 98.8 KB
/
otp_load.log
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
(refactorerl@localhost)3> f(OTP_ROOT).
ok
(refactorerl@localhost)4> OTP_ROOT = "/Users/olahgabor/Documents/git/refactorerl/otp_src_R12B-5/".
"/Users/olahgabor/Documents/git/refactorerl/otp_src_R12B-5/"
(refactorerl@localhost)5> ri:addenv(appbase, OTP_ROOT ++ "lib").
ok
(refactorerl@localhost)6> ri:addenv(def, {'COMPILER_VSN',42}).
ok
(refactorerl@localhost)7> ri:addenv(def, {'COMPILERVSN',42}).
ok
(refactorerl@localhost)8> ri:addenv(def, {'VSN',42}).
ok
(refactorerl@localhost)9> ri:addenv(def, {'vsn',42}).
ok
(refactorerl@localhost)10> ri:addenv(def, {'ORBVSN',42}).
ok
(refactorerl@localhost)11> ri:addenv(def, {'version',42}).
ok
(refactorerl@localhost)12> ri:addenv(def, {'default_verbosity', 42}).
ok
(refactorerl@localhost)13> ri:addenv(def, {'erlang_daemon_port',42}).
ok
(refactorerl@localhost)14> ri:addenv(def, {'epmd_dist_low',42}).
ok
(refactorerl@localhost)15> ri:addenv(def, {'epmd_dist_high',42}).
ok
(refactorerl@localhost)16> ri:addenv(def, {'HIPE_SYSTEM_CRC', 42}).
ok
(refactorerl@localhost)17> ri:addenv(def, {'ARM_NR_ARG_REGS', 42}).
ok
(refactorerl@localhost)18> ri:addenv(include, OTP_ROOT ++ "erts/include").
ok
(refactorerl@localhost)19> ri:addenv(include, OTP_ROOT ++ "lib/common_test/include").
ok
(refactorerl@localhost)20> ri:addenv(include, OTP_ROOT ++ "lib/cosEvent/include").
ok
(refactorerl@localhost)21> ri:addenv(include, OTP_ROOT ++ "lib/cosEventDomain/include").
ok
(refactorerl@localhost)22> ri:addenv(include, OTP_ROOT ++ "lib/cosFileTransfer/include").
ok
(refactorerl@localhost)23> ri:addenv(include, OTP_ROOT ++ "lib/cosNotification/include").
ok
(refactorerl@localhost)24> ri:addenv(include, OTP_ROOT ++ "lib/cosProperty/include").
ok
(refactorerl@localhost)25> ri:addenv(include, OTP_ROOT ++ "lib/cosTime/include").
ok
(refactorerl@localhost)26> ri:addenv(include, OTP_ROOT ++ "lib/cosTransactions/include").
ok
(refactorerl@localhost)27> ri:addenv(include, OTP_ROOT ++ "lib/cosTransactions/src").
ok
(refactorerl@localhost)28> ri:addenv(include, OTP_ROOT ++ "lib/dialyzer/src").
ok
(refactorerl@localhost)29> ri:addenv(include, OTP_ROOT ++ "lib/edoc/include").
ok
(refactorerl@localhost)30> ri:addenv(include, OTP_ROOT ++ "lib/erl_interface/include").
ok
(refactorerl@localhost)31> ri:addenv(include, OTP_ROOT ++ "lib/et/include").
ok
(refactorerl@localhost)32> ri:addenv(include, OTP_ROOT ++ "lib/eunit/include").
ok
(refactorerl@localhost)33> ri:addenv(include, OTP_ROOT ++ "lib/hipe/arm").
ok
(refactorerl@localhost)34> ri:addenv(include, OTP_ROOT ++ "lib/hipe/cerl").
ok
(refactorerl@localhost)35> ri:addenv(include, OTP_ROOT ++ "lib/hipe/flow").
ok
(refactorerl@localhost)36> ri:addenv(include, OTP_ROOT ++ "lib/hipe/icode").
ok
(refactorerl@localhost)37> ri:addenv(include, OTP_ROOT ++ "lib/hipe/main").
ok
(refactorerl@localhost)38> ri:addenv(include, OTP_ROOT ++ "lib/hipe/misc").
ok
(refactorerl@localhost)39> ri:addenv(include, OTP_ROOT ++ "lib/hipe/ppc").
ok
(refactorerl@localhost)40> ri:addenv(include, OTP_ROOT ++ "lib/hipe/rtl").
ok
(refactorerl@localhost)41> ri:addenv(include, OTP_ROOT ++ "lib/hipe/sparc").
ok
(refactorerl@localhost)42> ri:addenv(include, OTP_ROOT ++ "lib/hipe/util").
ok
(refactorerl@localhost)43> ri:addenv(include, OTP_ROOT ++ "lib/hipe/x86").
ok
(refactorerl@localhost)44> ri:addenv(include, OTP_ROOT ++ "lib/ic/include").
ok
(refactorerl@localhost)45> ri:addenv(include, OTP_ROOT ++ "lib/inets/src/inets_app").
ok
(refactorerl@localhost)46> ri:addenv(include, OTP_ROOT ++ "lib/inets/src/http_lib").
ok
(refactorerl@localhost)47> ri:addenv(include, OTP_ROOT ++ "lib/inviso/include").
ok
(refactorerl@localhost)48> ri:addenv(include, OTP_ROOT ++ "lib/kernel/include").
ok
(refactorerl@localhost)49> ri:addenv(include, OTP_ROOT ++ "lib/megaco/include").
ok
(refactorerl@localhost)50> ri:addenv(include, OTP_ROOT ++ "lib/mnesia/include").
ok
(refactorerl@localhost)51> ri:addenv(include, OTP_ROOT ++ "lib/observer/include").
ok
(refactorerl@localhost)52> ri:addenv(include, OTP_ROOT ++ "lib/odbc/include").
ok
(refactorerl@localhost)53> ri:addenv(include, OTP_ROOT ++ "lib/orber/include").
ok
(refactorerl@localhost)54> ri:addenv(include, OTP_ROOT ++ "lib/os_mon/include").
ok
(refactorerl@localhost)55> ri:addenv(include, OTP_ROOT ++ "lib/otp_mibs/include").
ok
(refactorerl@localhost)56> ri:addenv(include, OTP_ROOT ++ "lib/parsetools/include").
ok
(refactorerl@localhost)57> ri:addenv(include, OTP_ROOT ++ "lib/percept/include").
ok
(refactorerl@localhost)58> ri:addenv(include, OTP_ROOT ++ "lib/public_key/include").
ok
(refactorerl@localhost)59> ri:addenv(include, OTP_ROOT ++ "lib/runtime_tools/include").
ok
(refactorerl@localhost)60> ri:addenv(include, OTP_ROOT ++ "lib/sasl/include").
ok
(refactorerl@localhost)61> ri:addenv(include, OTP_ROOT ++ "lib/snmp/include").
ok
(refactorerl@localhost)62> ri:addenv(include, OTP_ROOT ++ "lib/snmp/src/misc").
ok
(refactorerl@localhost)63> ri:addenv(include, OTP_ROOT ++ "lib/snmp/src/compile").
ok
(refactorerl@localhost)64> ri:addenv(include, OTP_ROOT ++ "lib/ssl/include").
ok
(refactorerl@localhost)65> ri:addenv(include, OTP_ROOT ++ "lib/stdlib/include").
ok
(refactorerl@localhost)66> ri:addenv(include, OTP_ROOT ++ "lib/test_server/include").
ok
(refactorerl@localhost)67> ri:addenv(include, OTP_ROOT ++ "lib/xmerl/include").
ok
(refactorerl@localhost)68>
(refactorerl@localhost)68>
(refactorerl@localhost)68>
(refactorerl@localhost)68>
(refactorerl@localhost)68> [ri:add(otp, Lib) || Lib <- OTP_LIBS].
Adding: /Users/olahgabor/Documents/git/refactorerl/otp_src_R12B-5/lib/asn1/src
| 4.39 kB/s >>>>>>>>>>>>>>>>>>>| [ 24/ 24] asn1_db.erl
| 5.28 kB/s >>>>>>>>>>>>>>>>>>>| [ 182/ 182] asn1ct.erl
| 4.71 kB/s >>>>>>>>>>>>>>>>>>>| [ 399/ 399] asn1ct_check.erl
| 4.24 kB/s >>>>>>>>>>>>>>>>>>>| [ 78/ 78] asn1ct_constructed_ber.erl
| 3.73 kB/s >>>>>>>>>>>>>>>>>>>| [ 61/ 61] asn1ct_constructed_ber_bin_v2.erl
| 3.78 kB/s >>>>>>>>>>>>>>>>>>>| [ 67/ 67] asn1ct_constructed_per.erl
| 3.89 kB/s >>>>>>>>>>>>>>>>>>>| [ 113/ 113] asn1ct_gen.erl
| 4.15 kB/s >>>>>>>>>>>>>>>>>>>| [ 83/ 83] asn1ct_gen_ber.erl
| 3.57 kB/s >>>>>>>>>>>>>>>>>>>| [ 90/ 90] asn1ct_gen_ber_bin_v2.erl
| 3.72 kB/s >>>>>>>>>>>>>>>>>>>| [ 59/ 59] asn1ct_gen_per.erl
| 3.53 kB/s >>>>>>>>>>>>>>>>>>>| [ 86/ 86] asn1ct_gen_per_rt2ct.erl
| 2.47 kB/s >>>>>>>>>>>>>>>>>>>| [ 30/ 30] asn1ct_name.erl
| 3.70 kB/s >>>>>>>>>>>>>>>>>>>| [ 201/ 201] asn1ct_parser2.erl
| 3.10 kB/s >>>>>>>>>>>>>>>>>>>| [ 18/ 18] asn1ct_pretty_format.erl
| 3.61 kB/s >>>>>>>>>>>>>>>>>>>| [ 19/ 19] asn1ct_tok.erl
| 3.24 kB/s >>>>>>>>>>>>>>>>>>>| [ 26/ 26] asn1ct_value.erl
| 2.96 kB/s >>>>>>>>>>>>>>>>>>>| [ 22/ 22] asn1rt.erl
| 3.80 kB/s >>>>>>>>>>>>>>>>>>>| [ 215/ 215] asn1rt_ber_bin.erl
| 3.44 kB/s >>>>>>>>>>>>>>>>>>>| [ 198/ 198] asn1rt_ber_bin_v2.erl
| 3.17 kB/s >>>>>>>>>>>>>>>>>>>| [ 32/ 32] asn1rt_check.erl
| 2.36 kB/s >>>>>>>>>>>>>>>>>>>| [ 10/ 10] asn1rt_driver_handler.erl
| 3.02 kB/s >>>>>>>>>>>>>>>>>>>| [ 163/ 163] asn1rt_per_bin.erl
| 3.28 kB/s >>>>>>>>>>>>>>>>>>>| [ 144/ 144] asn1rt_per_bin_rt2ct.erl
| 3.16 kB/s >>>>>>>>>>>>>>>>>>>| [ 134/ 134] asn1rt_per_bin_v2.erl
| 3.04 kB/s >>>>>>>>>>>>>>>>>>>| [ 157/ 157] asn1rt_per_v1.erl
| 2.94 kB/s >>>>>>>>>>>>>>>>>>>| [ 151/ 151] asn1rt_uper_bin.erl
Adding: /Users/olahgabor/Documents/git/refactorerl/otp_src_R12B-5/lib/common_test/src
| 1.91 kB/s >>>>>>>>>>>>>>>>>>>| [ 42/ 42] ct.erl
| 2.92 kB/s >>>>>>>>>>>>>>>>>>>| [ 17/ 17] ct_cover.erl
| 1.88 kB/s >>>>>>>>>>>>>>>>>>>| [ 24/ 24] ct_event.erl
| 3.07 kB/s >>>>>>>>>>>>>>>>>>>| [ 32/ 32] ct_framework.erl
| 2.39 kB/s >>>>>>>>>>>>>>>>>>>| [ 30/ 30] ct_ftp.erl
| 2.53 kB/s >>>>>>>>>>>>>>>>>>>| [ 24/ 24] ct_gen_conn.erl
| 3.91 kB/s >>>>>>>>>>>>>>>>>>>| [ 13/ 13] ct_line.erl
| 3.02 kB/s >>>>>>>>>>>>>>>>>>>| [ 120/ 120] ct_logs.erl
| 2.99 kB/s >>>>>>>>>>>>>>>>>>>| [ 43/ 43] ct_master.erl
| 2.16 kB/s >>>>>>>>>>>>>>>>>>>| [ 22/ 22] ct_master_event.erl
| 2.78 kB/s >>>>>>>>>>>>>>>>>>>| [ 51/ 51] ct_master_logs.erl
| 2.15 kB/s >>>>>>>>>>>>>>>>>>>| [ 13/ 13] ct_master_status.erl
| 2.96 kB/s >>>>>>>>>>>>>>>>>>>| [ 14/ 14] ct_repeat.erl
| 2.67 kB/s >>>>>>>>>>>>>>>>>>>| [ 11/ 11] ct_rpc.erl
| 3.05 kB/s >>>>>>>>>>>>>>>>>>>| [ 73/ 73] ct_run.erl
| 2.76 kB/s >>>>>>>>>>>>>>>>>>>| [ 52/ 52] ct_snmp.erl
| 3.31 kB/s >>>>>>>>>>>>>>>>>>>| [ 86/ 86] ct_telnet.erl
| 2.93 kB/s >>>>>>>>>>>>>>>>>>>| [ 43/ 43] ct_telnet_client.erl
| 3.18 kB/s >>>>>>>>>>>>>>>>>>>| [ 46/ 46] ct_testspec.erl
| 2.81 kB/s >>>>>>>>>>>>>>>>>>>| [ 92/ 92] ct_util.erl
| 1.83 kB/s >>>>>>>>>>>>>>>>>>>| [ 16/ 16] rx.erl
| 3.99 kB/s >>>>>>>>>>>>>>>>>>>| [ 11/ 11] unix_telnet.erl
| 2.93 kB/s >>>>>>>>>>>>>>>>>>>| [ 119/ 119] vts.erl
Adding: /Users/olahgabor/Documents/git/refactorerl/otp_src_R12B-5/lib/compiler/src
| 2.61 kB/s >>>>>>>>>>>>>>>>>>>| [ 33/ 33] beam_asm.erl
| 2.33 kB/s >>>>>>>>>>>>>>>>>>>| [ 70/ 70] beam_block.erl
| 2.27 kB/s >>>>>>>>>>>>>>>>>>>| [ 61/ 61] beam_bool.erl
| 3.10 kB/s >>>>>>>>>>>>>>>>>>>| [ 49/ 49] beam_bsm.erl
| 2.73 kB/s >>>>>>>>>>>>>>>>>>>| [ 30/ 30] beam_clean.erl
| 2.63 kB/s >>>>>>>>>>>>>>>>>>>| [ 38/ 38] beam_dead.erl
| 3.37 kB/s >>>>>>>>>>>>>>>>>>>| [ 43/ 43] beam_dict.erl
| 3.15 kB/s >>>>>>>>>>>>>>>>>>>| [ 80/ 80] beam_disasm.erl
| 2.82 kB/s >>>>>>>>>>>>>>>>>>>| [ 20/ 20] beam_flatten.erl
| 2.84 kB/s >>>>>>>>>>>>>>>>>>>| [ 32/ 32] beam_jump.erl
| 2.14 kB/s >>>>>>>>>>>>>>>>>>>| [ 12/ 12] beam_listing.erl
| 4.99 kB/s >>>>>>>>>>>>>>>>>>>| [ 9/ 9] beam_opcodes.erl
| 2.75 kB/s >>>>>>>>>>>>>>>>>>>| [ 25/ 25] beam_trim.erl
| 2.52 kB/s >>>>>>>>>>>>>>>>>>>| [ 57/ 57] beam_type.erl
| 3.24 kB/s >>>>>>>>>>>>>>>>>>>| [ 23/ 23] beam_utils.erl
| 2.98 kB/s >>>>>>>>>>>>>>>>>>>| [ 143/ 143] beam_validator.erl
| 1.89 kB/s >>>>>>>>>>>>>>>>>>>| [ 321/ 321] cerl.erl
| 2.17 kB/s >>>>>>>>>>>>>>>>>>>| [ 16/ 16] cerl_clauses.erl
| 1.84 kB/s >>>>>>>>>>>>>>>>>>>| [ 181/ 181] cerl_inline.erl
| 2.33 kB/s >>>>>>>>>>>>>>>>>>>| [ 36/ 36] cerl_trees.erl
| 2.52 kB/s >>>>>>>>>>>>>>>>>>>| [ 117/ 117] compile.erl
| 2.83 kB/s >>>>>>>>>>>>>>>>>>>| [ 56/ 56] core_lib.erl
| 2.66 kB/s >>>>>>>>>>>>>>>>>>>| [ 50/ 50] core_lint.erl
| 2.54 kB/s >>>>>>>>>>>>>>>>>>>| [ 714/ 714] core_parse.erl
| 2.64 kB/s >>>>>>>>>>>>>>>>>>>| [ 38/ 38] core_pp.erl
| 2.88 kB/s >>>>>>>>>>>>>>>>>>>| [ 37/ 37] core_scan.erl
| 6.02 kB/s >>>>>>>>>>>>>>>>>>>| [ 8/ 8] erl_bifs.erl
| 2.67 kB/s >>>>>>>>>>>>>>>>>>>| [ 56/ 56] rec_env.erl
| 2.90 kB/s >>>>>>>>>>>>>>>>>>>| [ 18/ 18] sys_core_dsetel.erl
| 2.45 kB/s >>>>>>>>>>>>>>>>>>>| [ 167/ 167] sys_core_fold.erl
| 2.14 kB/s >>>>>>>>>>>>>>>>>>>| [ 19/ 19] sys_core_inline.erl
| 2.17 kB/s >>>>>>>>>>>>>>>>>>>| [ 33/ 33] sys_expand_pmod.erl
| 2.95 kB/s >>>>>>>>>>>>>>>>>>>| [ 18/ 18] sys_pre_attributes.erl
| 2.01 kB/s >>>>>>>>>>>>>>>>>>>| [ 59/ 59] sys_pre_expand.erl
| 2.75 kB/s >>>>>>>>>>>>>>>>>>>| [ 169/ 169] v3_codegen.erl
| 2.78 kB/s >>>>>>>>>>>>>>>>>>>| [ 126/ 126] v3_core.erl
| 1.96 kB/s >>>>>>>>>>>>>>>>>>>| [ 146/ 146] v3_kernel.erl
| 2.57 kB/s >>>>>>>>>>>>>>>>>>>| [ 28/ 28] v3_kernel_pp.erl
| 2.15 kB/s >>>>>>>>>>>>>>>>>>>| [ 47/ 47] v3_life.erl
Adding: /Users/olahgabor/Documents/git/refactorerl/otp_src_R12B-5/lib/cosEvent/src
| 1.71 kB/s >>>>>>>>>>>>>>>>>>>| [ 7/ 7] CosEventChannelAdmin_AlreadyConnected.erl
| 1.23 kB/s >>>>>>>>>>>>>>>>>>>| [ 32/ 32] CosEventChannelAdmin_ConsumerAdmin.erl
| 2.43 kB/s >>>>>>>>>>>>>>>>>>>| [ 34/ 34] CosEventChannelAdmin_EventChannel.erl
| 2.52 kB/s >>>>>>>>>>>>>>>>>>>| [ 32/ 32] CosEventChannelAdmin_ProxyPullConsumer.erl
| 2.14 kB/s >>>>>>>>>>>>>>>>>>>| [ 17/ 17] CosEventChannelAdmin_ProxyPullConsumer_impl.erl
| 2.47 kB/s >>>>>>>>>>>>>>>>>>>| [ 37/ 37] CosEventChannelAdmin_ProxyPullSupplier.erl
| 2.52 kB/s >>>>>>>>>>>>>>>>>>>| [ 35/ 35] CosEventChannelAdmin_ProxyPushConsumer.erl
| 2.47 kB/s >>>>>>>>>>>>>>>>>>>| [ 15/ 15] CosEventChannelAdmin_ProxyPushConsumer_impl.erl
| 2.53 kB/s >>>>>>>>>>>>>>>>>>>| [ 32/ 32] CosEventChannelAdmin_ProxyPushSupplier.erl
| 2.50 kB/s >>>>>>>>>>>>>>>>>>>| [ 32/ 32] CosEventChannelAdmin_SupplierAdmin.erl
| 2.47 kB/s >>>>>>>>>>>>>>>>>>>| [ 11/ 11] CosEventChannelAdmin_SupplierAdmin_impl.erl
| 1.60 kB/s >>>>>>>>>>>>>>>>>>>| [ 7/ 7] CosEventChannelAdmin_TypeError.erl
| 1.55 kB/s >>>>>>>>>>>>>>>>>>>| [ 7/ 7] CosEventComm_Disconnected.erl
| 1.88 kB/s >>>>>>>>>>>>>>>>>>>| [ 29/ 29] CosEventComm_PullConsumer.erl
| 1.49 kB/s >>>>>>>>>>>>>>>>>>>| [ 34/ 34] CosEventComm_PullSupplier.erl
| 1.69 kB/s >>>>>>>>>>>>>>>>>>>| [ 32/ 32] CosEventComm_PushConsumer.erl
| 1.92 kB/s >>>>>>>>>>>>>>>>>>>| [ 29/ 29] CosEventComm_PushSupplier.erl
| 1.96 kB/s >>>>>>>>>>>>>>>>>>>| [ 30/ 30] cosEventApp.erl
| 4.99 kB/s >>>>>>>>>>>>>>>>>>>| [ 15/ 15] oe_CosEventChannelAdmin.erl
| 5.25 kB/s >>>>>>>>>>>>>>>>>>>| [ 15/ 15] oe_CosEventComm.erl
| 2.73 kB/s >>>>>>>>>>>>>>>>>>>| [ 38/ 38] oe_CosEventComm_CAdmin.erl
| 3.37 kB/s >>>>>>>>>>>>>>>>>>>| [ 17/ 17] oe_CosEventComm_CAdmin_impl.erl
| 3.10 kB/s >>>>>>>>>>>>>>>>>>>| [ 40/ 40] oe_CosEventComm_Channel.erl
| 3.45 kB/s >>>>>>>>>>>>>>>>>>>| [ 18/ 18] oe_CosEventComm_Channel_impl.erl
| 2.06 kB/s >>>>>>>>>>>>>>>>>>>| [ 32/ 32] oe_CosEventComm_Event.erl
| 2.43 kB/s >>>>>>>>>>>>>>>>>>>| [ 43/ 43] oe_CosEventComm_PullerS.erl
| 2.68 kB/s >>>>>>>>>>>>>>>>>>>| [ 22/ 22] oe_CosEventComm_PullerS_impl.erl
| 2.71 kB/s >>>>>>>>>>>>>>>>>>>| [ 38/ 38] oe_CosEventComm_PusherS.erl
| 4.24 kB/s >>>>>>>>>>>>>>>>>>>| [ 18/ 18] oe_CosEventComm_PusherS_impl.erl
| 4.73 kB/s >>>>>>>>>>>>>>>>>>>| [ 15/ 15] oe_cosEventApp.erl
Adding: /Users/olahgabor/Documents/git/refactorerl/otp_src_R12B-5/lib/cosEventDomain/src
| 1.57 kB/s >>>>>>>>>>>>>>>>>>>| [ 10/ 10] CosEventDomainAdmin.erl
| 1.42 kB/s >>>>>>>>>>>>>>>>>>>| [ 7/ 7] CosEventDomainAdmin_AlreadyExists.erl
| 3.24 kB/s >>>>>>>>>>>>>>>>>>>| [ 7/ 7] CosEventDomainAdmin_Connection.erl
| 1.56 kB/s >>>>>>>>>>>>>>>>>>>| [ 7/ 7] CosEventDomainAdmin_ConnectionIDSeq.erl
| 1.98 kB/s >>>>>>>>>>>>>>>>>>>| [ 7/ 7] CosEventDomainAdmin_ConnectionNotFound.erl
| 2.17 kB/s >>>>>>>>>>>>>>>>>>>| [ 7/ 7] CosEventDomainAdmin_CycleCreationForbidden.erl
| 1.48 kB/s >>>>>>>>>>>>>>>>>>>| [ 7/ 7] CosEventDomainAdmin_CycleSeq.erl
| 2.38 kB/s >>>>>>>>>>>>>>>>>>>| [ 7/ 7] CosEventDomainAdmin_DiamondCreationForbidden.erl
| 1.64 kB/s >>>>>>>>>>>>>>>>>>>| [ 7/ 7] CosEventDomainAdmin_DiamondSeq.erl
| 1.51 kB/s >>>>>>>>>>>>>>>>>>>| [ 7/ 7] CosEventDomainAdmin_DomainIDSeq.erl
| 1.73 kB/s >>>>>>>>>>>>>>>>>>>| [ 7/ 7] CosEventDomainAdmin_DomainNotFound.erl
| 4.84 kB/s >>>>>>>>>>>>>>>>>>>| [ 144/ 144] CosEventDomainAdmin_EventDomain.erl
| 3.26 kB/s >>>>>>>>>>>>>>>>>>>| [ 34/ 34] CosEventDomainAdmin_EventDomainFactory.erl
| 1.95 kB/s >>>>>>>>>>>>>>>>>>>| [ 20/ 20] CosEventDomainAdmin_EventDomainFactory_impl.erl
| 3.18 kB/s >>>>>>>>>>>>>>>>>>>| [ 92/ 92] CosEventDomainAdmin_EventDomain_impl.erl
| 1.52 kB/s >>>>>>>>>>>>>>>>>>>| [ 7/ 7] CosEventDomainAdmin_MemberIDSeq.erl
| 1.55 kB/s >>>>>>>>>>>>>>>>>>>| [ 7/ 7] CosEventDomainAdmin_RouteSeq.erl
| 2.91 kB/s >>>>>>>>>>>>>>>>>>>| [ 40/ 40] cosEventDomainApp.erl
|10.15 kB/s >>>>>>>>>>>>>>>>>>>| [ 15/ 15] oe_CosEventDomainAdmin.erl
Adding: /Users/olahgabor/Documents/git/refactorerl/otp_src_R12B-5/lib/cosFileTransfer/src
| 0.88 kB/s >>>>>>>>>>>>>>>>>>>| [ 12/ 12] CosFileTransfer.erl
| 1.73 kB/s >>>>>>>>>>>>>>>>>>>| [ 7/ 7] CosFileTransfer_AccessLevel.erl
| 2.34 kB/s >>>>>>>>>>>>>>>>>>>| [ 7/ 7] CosFileTransfer_CommandNotImplementedException.erl
| 4.14 kB/s >>>>>>>>>>>>>>>>>>>| [ 92/ 92] CosFileTransfer_Directory.erl
| 1.17 kB/s >>>>>>>>>>>>>>>>>>>| [ 44/ 44] CosFileTransfer_Directory_impl.erl
| 4.08 kB/s >>>>>>>>>>>>>>>>>>>| [ 89/ 89] CosFileTransfer_File.erl
| 2.83 kB/s >>>>>>>>>>>>>>>>>>>| [ 34/ 34] CosFileTransfer_FileIterator.erl
| 1.95 kB/s >>>>>>>>>>>>>>>>>>>| [ 12/ 12] CosFileTransfer_FileIterator_impl.erl
| 2.51 kB/s >>>>>>>>>>>>>>>>>>>| [ 7/ 7] CosFileTransfer_FileList.erl
| 1.46 kB/s >>>>>>>>>>>>>>>>>>>| [ 7/ 7] CosFileTransfer_FileNameList.erl
| 2.02 kB/s >>>>>>>>>>>>>>>>>>>| [ 7/ 7] CosFileTransfer_FileNotFoundException.erl
| 3.77 kB/s >>>>>>>>>>>>>>>>>>>| [ 61/ 61] CosFileTransfer_FileTransferSession.erl
| 3.24 kB/s >>>>>>>>>>>>>>>>>>>| [ 59/ 59] CosFileTransfer_FileTransferSession_impl.erl
| 2.49 kB/s >>>>>>>>>>>>>>>>>>>| [ 7/ 7] CosFileTransfer_FileWrapper.erl
| 2.67 kB/s >>>>>>>>>>>>>>>>>>>| [ 41/ 41] CosFileTransfer_File_impl.erl
| 2.17 kB/s >>>>>>>>>>>>>>>>>>>| [ 7/ 7] CosFileTransfer_IllegalOperationException.erl
| 1.53 kB/s >>>>>>>>>>>>>>>>>>>| [ 7/ 7] CosFileTransfer_ProtocolAddressList.erl
| 2.06 kB/s >>>>>>>>>>>>>>>>>>>| [ 7/ 7] CosFileTransfer_ProtocolSupport.erl
| 2.11 kB/s >>>>>>>>>>>>>>>>>>>| [ 7/ 7] CosFileTransfer_RequestFailureException.erl
| 1.94 kB/s >>>>>>>>>>>>>>>>>>>| [ 7/ 7] CosFileTransfer_SessionException.erl
| 2.35 kB/s >>>>>>>>>>>>>>>>>>>| [ 7/ 7] CosFileTransfer_SupportedProtocolAddresses.erl
| 1.82 kB/s >>>>>>>>>>>>>>>>>>>| [ 7/ 7] CosFileTransfer_TransferException.erl
| 3.00 kB/s >>>>>>>>>>>>>>>>>>>| [ 34/ 34] CosFileTransfer_VirtualFileSystem.erl
| 1.66 kB/s >>>>>>>>>>>>>>>>>>>| [ 7/ 7] CosFileTransfer_VirtualFileSystem_ContentList.erl
| 3.19 kB/s >>>>>>>>>>>>>>>>>>>| [ 29/ 29] CosFileTransfer_VirtualFileSystem_impl.erl
| 2.68 kB/s >>>>>>>>>>>>>>>>>>>| [ 46/ 46] cosFileTransferApp.erl
| 2.05 kB/s >>>>>>>>>>>>>>>>>>>| [ 30/ 30] cosFileTransferNATIVE_file.erl
| 8.73 kB/s >>>>>>>>>>>>>>>>>>>| [ 15/ 15] oe_CosFileTransfer.erl
Adding: /Users/olahgabor/Documents/git/refactorerl/otp_src_R12B-5/lib/cosNotification/src
| 1.25 kB/s >>>>>>>>>>>>>>>>>>>| [ 38/ 38] CosNotification.erl
| 2.55 kB/s >>>>>>>>>>>>>>>>>>>| [ 32/ 32] CosNotification_AdminPropertiesAdmin.erl
| 2.44 kB/s >>>>>>>>>>>>>>>>>>>| [ 62/ 62] CosNotification_Common.erl
| 3.97 kB/s >>>>>>>>>>>>>>>>>>>| [ 7/ 7] CosNotification_EventBatch.erl
| 3.26 kB/s >>>>>>>>>>>>>>>>>>>| [ 7/ 7] CosNotification_EventHeader.erl
| 1.73 kB/s >>>>>>>>>>>>>>>>>>>| [ 7/ 7] CosNotification_EventType.erl
| 1.83 kB/s >>>>>>>>>>>>>>>>>>>| [ 7/ 7] CosNotification_EventTypeSeq.erl
| 2.20 kB/s >>>>>>>>>>>>>>>>>>>| [ 7/ 7] CosNotification_FixedEventHeader.erl
| 2.25 kB/s >>>>>>>>>>>>>>>>>>>| [ 7/ 7] CosNotification_NamedPropertyRange.erl
| 2.49 kB/s >>>>>>>>>>>>>>>>>>>| [ 7/ 7] CosNotification_NamedPropertyRangeSeq.erl
| 1.60 kB/s >>>>>>>>>>>>>>>>>>>| [ 7/ 7] CosNotification_Property.erl
| 3.34 kB/s >>>>>>>>>>>>>>>>>>>| [ 7/ 7] CosNotification_PropertyError.erl
| 3.31 kB/s >>>>>>>>>>>>>>>>>>>| [ 7/ 7] CosNotification_PropertyErrorSeq.erl
| 1.90 kB/s >>>>>>>>>>>>>>>>>>>| [ 7/ 7] CosNotification_PropertyRange.erl
| 1.67 kB/s >>>>>>>>>>>>>>>>>>>| [ 7/ 7] CosNotification_PropertySeq.erl
| 2.80 kB/s >>>>>>>>>>>>>>>>>>>| [ 34/ 34] CosNotification_QoSAdmin.erl
| 4.06 kB/s >>>>>>>>>>>>>>>>>>>| [ 7/ 7] CosNotification_StructuredEvent.erl
| 3.47 kB/s >>>>>>>>>>>>>>>>>>>| [ 7/ 7] CosNotification_UnsupportedAdmin.erl
| 3.53 kB/s >>>>>>>>>>>>>>>>>>>| [ 7/ 7] CosNotification_UnsupportedQoS.erl
| 1.38 kB/s >>>>>>>>>>>>>>>>>>>| [ 7/ 7] CosNotifyChannelAdmin_AdminIDSeq.erl
| 1.85 kB/s >>>>>>>>>>>>>>>>>>>| [ 7/ 7] CosNotifyChannelAdmin_AdminLimit.erl
| 2.57 kB/s >>>>>>>>>>>>>>>>>>>| [ 7/ 7] CosNotifyChannelAdmin_AdminLimitExceeded.erl
| 1.89 kB/s >>>>>>>>>>>>>>>>>>>| [ 7/ 7] CosNotifyChannelAdmin_AdminNotFound.erl
| 1.49 kB/s >>>>>>>>>>>>>>>>>>>| [ 7/ 7] CosNotifyChannelAdmin_ChannelIDSeq.erl
| 1.88 kB/s >>>>>>>>>>>>>>>>>>>| [ 7/ 7] CosNotifyChannelAdmin_ChannelNotFound.erl
| 1.68 kB/s >>>>>>>>>>>>>>>>>>>| [ 7/ 7] CosNotifyChannelAdmin_ConnectionAlreadyActive.erl
| 2.03 kB/s >>>>>>>>>>>>>>>>>>>| [ 7/ 7] CosNotifyChannelAdmin_ConnectionAlreadyInactive.erl
| 3.72 kB/s >>>>>>>>>>>>>>>>>>>| [ 98/ 98] CosNotifyChannelAdmin_ConsumerAdmin.erl
| 3.10 kB/s >>>>>>>>>>>>>>>>>>>| [ 95/ 95] CosNotifyChannelAdmin_ConsumerAdmin_impl.erl
| 3.60 kB/s >>>>>>>>>>>>>>>>>>>| [ 81/ 81] CosNotifyChannelAdmin_EventChannel.erl
| 2.90 kB/s >>>>>>>>>>>>>>>>>>>| [ 34/ 34] CosNotifyChannelAdmin_EventChannelFactory.erl
| 2.04 kB/s >>>>>>>>>>>>>>>>>>>| [ 20/ 20] CosNotifyChannelAdmin_EventChannelFactory_impl.erl
| 3.21 kB/s >>>>>>>>>>>>>>>>>>>| [ 97/ 97] CosNotifyChannelAdmin_EventChannel_impl.erl
| 1.70 kB/s >>>>>>>>>>>>>>>>>>>| [ 7/ 7] CosNotifyChannelAdmin_NotConnected.erl
| 3.30 kB/s >>>>>>>>>>>>>>>>>>>| [ 59/ 59] CosNotifyChannelAdmin_ProxyConsumer.erl
| 1.34 kB/s >>>>>>>>>>>>>>>>>>>| [ 7/ 7] CosNotifyChannelAdmin_ProxyIDSeq.erl
| 1.78 kB/s >>>>>>>>>>>>>>>>>>>| [ 7/ 7] CosNotifyChannelAdmin_ProxyNotFound.erl
| 3.35 kB/s >>>>>>>>>>>>>>>>>>>| [ 76/ 76] CosNotifyChannelAdmin_ProxyPullConsumer.erl
| 3.50 kB/s >>>>>>>>>>>>>>>>>>>| [ 93/ 93] CosNotifyChannelAdmin_ProxyPullSupplier.erl
| 3.50 kB/s >>>>>>>>>>>>>>>>>>>| [ 74/ 74] CosNotifyChannelAdmin_ProxyPushConsumer.erl
| 3.55 kB/s >>>>>>>>>>>>>>>>>>>| [ 93/ 93] CosNotifyChannelAdmin_ProxyPushSupplier.erl
| 3.43 kB/s >>>>>>>>>>>>>>>>>>>| [ 70/ 70] CosNotifyChannelAdmin_ProxySupplier.erl
| 3.37 kB/s >>>>>>>>>>>>>>>>>>>| [ 73/ 73] CosNotifyChannelAdmin_SequenceProxyPullConsumer.erl
| 3.55 kB/s >>>>>>>>>>>>>>>>>>>| [ 90/ 90] CosNotifyChannelAdmin_SequenceProxyPullSupplier.erl
| 3.41 kB/s >>>>>>>>>>>>>>>>>>>| [ 71/ 71] CosNotifyChannelAdmin_SequenceProxyPushConsumer.erl
| 3.41 kB/s >>>>>>>>>>>>>>>>>>>| [ 90/ 90] CosNotifyChannelAdmin_SequenceProxyPushSupplier.erl
| 3.29 kB/s >>>>>>>>>>>>>>>>>>>| [ 73/ 73] CosNotifyChannelAdmin_StructuredProxyPullConsumer.erl
| 3.46 kB/s >>>>>>>>>>>>>>>>>>>| [ 90/ 90] CosNotifyChannelAdmin_StructuredProxyPullSupplier.erl
| 3.32 kB/s >>>>>>>>>>>>>>>>>>>| [ 71/ 71] CosNotifyChannelAdmin_StructuredProxyPushConsumer.erl
| 3.30 kB/s >>>>>>>>>>>>>>>>>>>| [ 90/ 90] CosNotifyChannelAdmin_StructuredProxyPushSupplier.erl
| 3.37 kB/s >>>>>>>>>>>>>>>>>>>| [ 87/ 87] CosNotifyChannelAdmin_SupplierAdmin.erl
| 3.02 kB/s >>>>>>>>>>>>>>>>>>>| [ 82/ 82] CosNotifyChannelAdmin_SupplierAdmin_impl.erl
| 2.12 kB/s >>>>>>>>>>>>>>>>>>>| [ 7/ 7] CosNotifyComm_InvalidEventType.erl
| 2.24 kB/s >>>>>>>>>>>>>>>>>>>| [ 29/ 29] CosNotifyComm_NotifyPublish.erl
| 2.27 kB/s >>>>>>>>>>>>>>>>>>>| [ 29/ 29] CosNotifyComm_NotifySubscribe.erl
| 2.32 kB/s >>>>>>>>>>>>>>>>>>>| [ 32/ 32] CosNotifyComm_PullConsumer.erl
| 2.39 kB/s >>>>>>>>>>>>>>>>>>>| [ 37/ 37] CosNotifyComm_PullSupplier.erl
| 2.29 kB/s >>>>>>>>>>>>>>>>>>>| [ 35/ 35] CosNotifyComm_PushConsumer.erl
| 2.42 kB/s >>>>>>>>>>>>>>>>>>>| [ 32/ 32] CosNotifyComm_PushSupplier.erl
| 2.42 kB/s >>>>>>>>>>>>>>>>>>>| [ 32/ 32] CosNotifyComm_SequencePullConsumer.erl
| 3.46 kB/s >>>>>>>>>>>>>>>>>>>| [ 37/ 37] CosNotifyComm_SequencePullSupplier.erl
| 3.04 kB/s >>>>>>>>>>>>>>>>>>>| [ 35/ 35] CosNotifyComm_SequencePushConsumer.erl
| 2.45 kB/s >>>>>>>>>>>>>>>>>>>| [ 32/ 32] CosNotifyComm_SequencePushSupplier.erl
| 2.48 kB/s >>>>>>>>>>>>>>>>>>>| [ 32/ 32] CosNotifyComm_StructuredPullConsumer.erl
| 3.38 kB/s >>>>>>>>>>>>>>>>>>>| [ 37/ 37] CosNotifyComm_StructuredPullSupplier.erl
| 2.91 kB/s >>>>>>>>>>>>>>>>>>>| [ 35/ 35] CosNotifyComm_StructuredPushConsumer.erl
| 2.45 kB/s >>>>>>>>>>>>>>>>>>>| [ 32/ 32] CosNotifyComm_StructuredPushSupplier.erl
| 1.19 kB/s >>>>>>>>>>>>>>>>>>>| [ 7/ 7] CosNotifyFilter_CallbackIDSeq.erl
| 1.58 kB/s >>>>>>>>>>>>>>>>>>>| [ 7/ 7] CosNotifyFilter_CallbackNotFound.erl
| 2.12 kB/s >>>>>>>>>>>>>>>>>>>| [ 7/ 7] CosNotifyFilter_ConstraintExp.erl
| 2.13 kB/s >>>>>>>>>>>>>>>>>>>| [ 7/ 7] CosNotifyFilter_ConstraintExpSeq.erl
| 1.25 kB/s >>>>>>>>>>>>>>>>>>>| [ 7/ 7] CosNotifyFilter_ConstraintIDSeq.erl
| 2.49 kB/s >>>>>>>>>>>>>>>>>>>| [ 7/ 7] CosNotifyFilter_ConstraintInfo.erl
| 2.54 kB/s >>>>>>>>>>>>>>>>>>>| [ 7/ 7] CosNotifyFilter_ConstraintInfoSeq.erl
| 1.55 kB/s >>>>>>>>>>>>>>>>>>>| [ 7/ 7] CosNotifyFilter_ConstraintNotFound.erl
| 1.63 kB/s >>>>>>>>>>>>>>>>>>>| [ 7/ 7] CosNotifyFilter_DuplicateConstraintID.erl
| 3.30 kB/s >>>>>>>>>>>>>>>>>>>| [ 61/ 61] CosNotifyFilter_Filter.erl
| 2.34 kB/s >>>>>>>>>>>>>>>>>>>| [ 40/ 40] CosNotifyFilter_FilterAdmin.erl
| 2.46 kB/s >>>>>>>>>>>>>>>>>>>| [ 32/ 32] CosNotifyFilter_FilterFactory.erl
| 1.73 kB/s >>>>>>>>>>>>>>>>>>>| [ 18/ 18] CosNotifyFilter_FilterFactory_impl.erl
| 1.16 kB/s >>>>>>>>>>>>>>>>>>>| [ 7/ 7] CosNotifyFilter_FilterIDSeq.erl
| 1.44 kB/s >>>>>>>>>>>>>>>>>>>| [ 7/ 7] CosNotifyFilter_FilterNotFound.erl
| 2.74 kB/s >>>>>>>>>>>>>>>>>>>| [ 75/ 75] CosNotifyFilter_Filter_impl.erl
| 2.52 kB/s >>>>>>>>>>>>>>>>>>>| [ 7/ 7] CosNotifyFilter_InvalidConstraint.erl
| 1.55 kB/s >>>>>>>>>>>>>>>>>>>| [ 7/ 7] CosNotifyFilter_InvalidGrammar.erl
| 2.41 kB/s >>>>>>>>>>>>>>>>>>>| [ 7/ 7] CosNotifyFilter_InvalidValue.erl
| 2.94 kB/s >>>>>>>>>>>>>>>>>>>| [ 7/ 7] CosNotifyFilter_MappingConstraintInfo.erl
| 2.98 kB/s >>>>>>>>>>>>>>>>>>>| [ 7/ 7] CosNotifyFilter_MappingConstraintInfoSeq.erl
| 2.75 kB/s >>>>>>>>>>>>>>>>>>>| [ 7/ 7] CosNotifyFilter_MappingConstraintPair.erl
| 2.82 kB/s >>>>>>>>>>>>>>>>>>>| [ 7/ 7] CosNotifyFilter_MappingConstraintPairSeq.erl
| 3.49 kB/s >>>>>>>>>>>>>>>>>>>| [ 58/ 58] CosNotifyFilter_MappingFilter.erl
| 2.73 kB/s >>>>>>>>>>>>>>>>>>>| [ 70/ 70] CosNotifyFilter_MappingFilter_impl.erl
| 1.67 kB/s >>>>>>>>>>>>>>>>>>>| [ 7/ 7] CosNotifyFilter_UnsupportedFilterableData.erl
| 3.15 kB/s >>>>>>>>>>>>>>>>>>>| [ 123/ 123] PullerConsumer_impl.erl
| 2.61 kB/s >>>>>>>>>>>>>>>>>>>| [ 127/ 127] PullerSupplier_impl.erl
| 3.18 kB/s >>>>>>>>>>>>>>>>>>>| [ 111/ 111] PusherConsumer_impl.erl
| 2.99 kB/s >>>>>>>>>>>>>>>>>>>| [ 132/ 132] PusherSupplier_impl.erl
| 2.14 kB/s >>>>>>>>>>>>>>>>>>>| [ 49/ 49] cosNotificationApp.erl
| 3.05 kB/s >>>>>>>>>>>>>>>>>>>| [ 38/ 38] cosNotification_Filter.erl
| 1.78 kB/s >>>>>>>>>>>>>>>>>>>| [ 291/ 291] cosNotification_Grammar.erl
| 2.16 kB/s >>>>>>>>>>>>>>>>>>>| [ 16/ 16] cosNotification_Scanner.erl
| 2.65 kB/s >>>>>>>>>>>>>>>>>>>| [ 92/ 92] cosNotification_eventDB.erl
| 6.49 kB/s >>>>>>>>>>>>>>>>>>>| [ 15/ 15] oe_CosNotification.erl
| 2.11 kB/s >>>>>>>>>>>>>>>>>>>| [ 32/ 32] oe_CosNotificationComm_Event.erl
| 8.02 kB/s >>>>>>>>>>>>>>>>>>>| [ 15/ 15] oe_CosNotifyChannelAdmin.erl
| 6.08 kB/s >>>>>>>>>>>>>>>>>>>| [ 15/ 15] oe_CosNotifyComm.erl
| 7.05 kB/s >>>>>>>>>>>>>>>>>>>| [ 15/ 15] oe_CosNotifyFilter.erl
| 3.77 kB/s >>>>>>>>>>>>>>>>>>>| [ 15/ 15] oe_cosNotificationAppComm.erl
Adding: /Users/olahgabor/Documents/git/refactorerl/otp_src_R12B-5/lib/cosProperty/src
| 0.86 kB/s >>>>>>>>>>>>>>>>>>>| [ 7/ 7] CosPropertyService_ConflictingProperty.erl
| 1.23 kB/s >>>>>>>>>>>>>>>>>>>| [ 7/ 7] CosPropertyService_ConstraintNotSupported.erl
| 1.19 kB/s >>>>>>>>>>>>>>>>>>>| [ 7/ 7] CosPropertyService_FixedProperty.erl
| 1.36 kB/s >>>>>>>>>>>>>>>>>>>| [ 7/ 7] CosPropertyService_InvalidPropertyName.erl
| 2.64 kB/s >>>>>>>>>>>>>>>>>>>| [ 7/ 7] CosPropertyService_MultipleExceptions.erl
| 1.46 kB/s >>>>>>>>>>>>>>>>>>>| [ 7/ 7] CosPropertyService_Properties.erl
| 1.74 kB/s >>>>>>>>>>>>>>>>>>>| [ 37/ 37] CosPropertyService_PropertiesIterator.erl
| 1.31 kB/s >>>>>>>>>>>>>>>>>>>| [ 27/ 27] CosPropertyService_PropertiesIterator_impl.erl
| 1.28 kB/s >>>>>>>>>>>>>>>>>>>| [ 7/ 7] CosPropertyService_Property.erl
| 1.96 kB/s >>>>>>>>>>>>>>>>>>>| [ 7/ 7] CosPropertyService_PropertyDef.erl
| 1.94 kB/s >>>>>>>>>>>>>>>>>>>| [ 7/ 7] CosPropertyService_PropertyDefs.erl
| 2.43 kB/s >>>>>>>>>>>>>>>>>>>| [ 7/ 7] CosPropertyService_PropertyException.erl
| 2.43 kB/s >>>>>>>>>>>>>>>>>>>| [ 7/ 7] CosPropertyService_PropertyExceptions.erl
| 1.84 kB/s >>>>>>>>>>>>>>>>>>>| [ 7/ 7] CosPropertyService_PropertyMode.erl
| 1.97 kB/s >>>>>>>>>>>>>>>>>>>| [ 7/ 7] CosPropertyService_PropertyModes.erl
| 0.94 kB/s >>>>>>>>>>>>>>>>>>>| [ 7/ 7] CosPropertyService_PropertyNames.erl
| 1.66 kB/s >>>>>>>>>>>>>>>>>>>| [ 37/ 37] CosPropertyService_PropertyNamesIterator.erl
| 1.54 kB/s >>>>>>>>>>>>>>>>>>>| [ 27/ 27] CosPropertyService_PropertyNamesIterator_impl.erl
| 1.24 kB/s >>>>>>>>>>>>>>>>>>>| [ 7/ 7] CosPropertyService_PropertyNotFound.erl
| 2.97 kB/s >>>>>>>>>>>>>>>>>>>| [ 56/ 56] CosPropertyService_PropertySet.erl
| 3.19 kB/s >>>>>>>>>>>>>>>>>>>| [ 78/ 78] CosPropertyService_PropertySetDef.erl
| 2.46 kB/s >>>>>>>>>>>>>>>>>>>| [ 34/ 34] CosPropertyService_PropertySetDefFactory.erl
| 1.68 kB/s >>>>>>>>>>>>>>>>>>>| [ 19/ 19] CosPropertyService_PropertySetDefFactory_impl.erl
| 2.52 kB/s >>>>>>>>>>>>>>>>>>>| [ 71/ 71] CosPropertyService_PropertySetDef_impl.erl
| 2.35 kB/s >>>>>>>>>>>>>>>>>>>| [ 34/ 34] CosPropertyService_PropertySetFactory.erl
| 1.93 kB/s >>>>>>>>>>>>>>>>>>>| [ 19/ 19] CosPropertyService_PropertySetFactory_impl.erl
| 1.06 kB/s >>>>>>>>>>>>>>>>>>>| [ 7/ 7] CosPropertyService_PropertyTypes.erl
| 1.36 kB/s >>>>>>>>>>>>>>>>>>>| [ 7/ 7] CosPropertyService_ReadOnlyProperty.erl
| 1.35 kB/s >>>>>>>>>>>>>>>>>>>| [ 7/ 7] CosPropertyService_UnsupportedMode.erl
| 1.34 kB/s >>>>>>>>>>>>>>>>>>>| [ 7/ 7] CosPropertyService_UnsupportedProperty.erl
| 1.33 kB/s >>>>>>>>>>>>>>>>>>>| [ 7/ 7] CosPropertyService_UnsupportedTypeCode.erl
| 1.66 kB/s >>>>>>>>>>>>>>>>>>>| [ 38/ 38] cosProperty.erl
| 7.29 kB/s >>>>>>>>>>>>>>>>>>>| [ 15/ 15] oe_CosProperty.erl
Adding: /Users/olahgabor/Documents/git/refactorerl/otp_src_R12B-5/lib/cosTime/src
| 1.65 kB/s >>>>>>>>>>>>>>>>>>>| [ 37/ 37] CosTime_TIO.erl
| 1.51 kB/s >>>>>>>>>>>>>>>>>>>| [ 21/ 21] CosTime_TIO_impl.erl
| 2.01 kB/s >>>>>>>>>>>>>>>>>>>| [ 40/ 40] CosTime_TimeService.erl
| 1.64 kB/s >>>>>>>>>>>>>>>>>>>| [ 20/ 20] CosTime_TimeService_impl.erl
| 1.05 kB/s >>>>>>>>>>>>>>>>>>>| [ 7/ 7] CosTime_TimeUnavailable.erl
| 1.99 kB/s >>>>>>>>>>>>>>>>>>>| [ 48/ 48] CosTime_UTO.erl
| 1.81 kB/s >>>>>>>>>>>>>>>>>>>| [ 26/ 26] CosTime_UTO_impl.erl
| 1.72 kB/s >>>>>>>>>>>>>>>>>>>| [ 40/ 40] CosTimerEvent_TimerEventHandler.erl
| 2.48 kB/s >>>>>>>>>>>>>>>>>>>| [ 43/ 43] CosTimerEvent_TimerEventHandler_impl.erl
| 1.87 kB/s >>>>>>>>>>>>>>>>>>>| [ 34/ 34] CosTimerEvent_TimerEventService.erl
| 0.95 kB/s >>>>>>>>>>>>>>>>>>>| [ 15/ 15] CosTimerEvent_TimerEventService_impl.erl
| 1.53 kB/s >>>>>>>>>>>>>>>>>>>| [ 7/ 7] CosTimerEvent_TimerEventT.erl
| 1.19 kB/s >>>>>>>>>>>>>>>>>>>| [ 7/ 7] TimeBase_IntervalT.erl
| 1.12 kB/s >>>>>>>>>>>>>>>>>>>| [ 7/ 7] TimeBase_UtcT.erl
| 1.84 kB/s >>>>>>>>>>>>>>>>>>>| [ 33/ 33] cosTime.erl
| 4.62 kB/s >>>>>>>>>>>>>>>>>>>| [ 15/ 15] oe_CosTime.erl
| 4.27 kB/s >>>>>>>>>>>>>>>>>>>| [ 15/ 15] oe_CosTimerEvent.erl
| 2.56 kB/s >>>>>>>>>>>>>>>>>>>| [ 15/ 15] oe_TimeBase.erl
Adding: /Users/olahgabor/Documents/git/refactorerl/otp_src_R12B-5/lib/crypto/src
| 1.55 kB/s >>>>>>>>>>>>>>>>>>>| [ 143/ 143] crypto.erl
| 0.60 kB/s >>>>>>>>>>>>>>>>>>>| [ 5/ 5] crypto_app.erl
| 1.07 kB/s >>>>>>>>>>>>>>>>>>>| [ 16/ 16] crypto_server.erl
| 2.26 kB/s >>>>>>>>>>>>>>>>>>>| [ 5/ 5] crypto_sup.erl
Adding: /Users/olahgabor/Documents/git/refactorerl/otp_src_R12B-5/lib/debugger/src
| 1.42 kB/s >>>>>>>>>>>>>>>>>>>| [ 8/ 8] dbg_debugged.erl
| 1.49 kB/s >>>>>>>>>>>>>>>>>>>| [ 39/ 39] dbg_icmd.erl
| 1.26 kB/s >>>>>>>>>>>>>>>>>>>| [ 5/ 5] dbg_idb.erl
| 1.77 kB/s >>>>>>>>>>>>>>>>>>>| [ 91/ 91] dbg_ieval.erl
| 2.13 kB/s >>>>>>>>>>>>>>>>>>>| [ 41/ 41] dbg_iload.erl
| 2.16 kB/s >>>>>>>>>>>>>>>>>>>| [ 31/ 31] dbg_iserver.erl
| 1.28 kB/s >>>>>>>>>>>>>>>>>>>| [ 9/ 9] dbg_ui_break.erl
| 2.39 kB/s >>>>>>>>>>>>>>>>>>>| [ 9/ 9] dbg_ui_break_win.erl
| 0.98 kB/s >>>>>>>>>>>>>>>>>>>| [ 8/ 8] dbg_ui_edit.erl
| 4.34 kB/s >>>>>>>>>>>>>>>>>>>| [ 6/ 6] dbg_ui_edit_win.erl
| 2.30 kB/s >>>>>>>>>>>>>>>>>>>| [ 21/ 21] dbg_ui_filedialog_win.erl
| 1.47 kB/s >>>>>>>>>>>>>>>>>>>| [ 11/ 11] dbg_ui_interpret.erl
| 1.88 kB/s >>>>>>>>>>>>>>>>>>>| [ 26/ 26] dbg_ui_mon.erl
| 2.21 kB/s >>>>>>>>>>>>>>>>>>>| [ 38/ 38] dbg_ui_mon_win.erl
| 2.09 kB/s >>>>>>>>>>>>>>>>>>>| [ 10/ 10] dbg_ui_settings.erl
| 2.23 kB/s >>>>>>>>>>>>>>>>>>>| [ 28/ 28] dbg_ui_trace.erl
| 1.97 kB/s >>>>>>>>>>>>>>>>>>>| [ 94/ 94] dbg_ui_trace_win.erl
| 2.43 kB/s >>>>>>>>>>>>>>>>>>>| [ 13/ 13] dbg_ui_view.erl
| 1.75 kB/s >>>>>>>>>>>>>>>>>>>| [ 19/ 19] dbg_ui_win.erl
| 1.58 kB/s >>>>>>>>>>>>>>>>>>>| [ 23/ 23] dbg_ui_winman.erl
| 0.77 kB/s >>>>>>>>>>>>>>>>>>>| [ 7/ 7] debugger.erl
| 1.27 kB/s >>>>>>>>>>>>>>>>>>>| [ 44/ 44] i.erl
| 1.46 kB/s >>>>>>>>>>>>>>>>>>>| [ 82/ 82] int.erl
Adding: /Users/olahgabor/Documents/git/refactorerl/otp_src_R12B-5/lib/dialyzer/src
| 2.02 kB/s >>>>>>>>>>>>>>>>>>>| [ 30/ 30] dialyzer.erl
| 1.46 kB/s >>>>>>>>>>>>>>>>>>>| [ 35/ 35] dialyzer_analysis_callgraph.erl
| 1.51 kB/s >>>>>>>>>>>>>>>>>>>| [ 91/ 91] dialyzer_callgraph.erl
| 2.01 kB/s >>>>>>>>>>>>>>>>>>>| [ 67/ 67] dialyzer_cl.erl
| 3.30 kB/s >>>>>>>>>>>>>>>>>>>| [ 21/ 21] dialyzer_cl_parse.erl
| 1.65 kB/s >>>>>>>>>>>>>>>>>>>| [ 37/ 37] dialyzer_codeserver.erl
| 1.81 kB/s >>>>>>>>>>>>>>>>>>>| [ 55/ 55] dialyzer_contracts.erl
| 2.00 kB/s >>>>>>>>>>>>>>>>>>>| [ 178/ 178] dialyzer_dataflow.erl
| 1.44 kB/s >>>>>>>>>>>>>>>>>>>| [ 58/ 58] dialyzer_dep.erl
| 2.31 kB/s >>>>>>>>>>>>>>>>>>>| [ 59/ 59] dialyzer_gui.erl
| 2.79 kB/s >>>>>>>>>>>>>>>>>>>| [ 17/ 17] dialyzer_options.erl
| 2.15 kB/s >>>>>>>>>>>>>>>>>>>| [ 82/ 82] dialyzer_plt.erl
| 2.46 kB/s >>>>>>>>>>>>>>>>>>>| [ 69/ 69] dialyzer_succ_typings.erl
| 1.34 kB/s >>>>>>>>>>>>>>>>>>>| [ 189/ 189] dialyzer_typesig.erl
| 2.20 kB/s >>>>>>>>>>>>>>>>>>>| [ 48/ 48] dialyzer_utils.erl
Adding: /Users/olahgabor/Documents/git/refactorerl/otp_src_R12B-5/lib/edoc/src
| 1.05 kB/s >>>>>>>>>>>>>>>>>>>| [ 42/ 42] edoc.erl
| 1.25 kB/s >>>>>>>>>>>>>>>>>>>| [ 54/ 54] edoc_data.erl
| 1.57 kB/s >>>>>>>>>>>>>>>>>>>| [ 47/ 47] edoc_doclet.erl
| 1.35 kB/s >>>>>>>>>>>>>>>>>>>| [ 42/ 42] edoc_extract.erl
| 1.51 kB/s >>>>>>>>>>>>>>>>>>>| [ 101/ 101] edoc_layout.erl
| 1.82 kB/s >>>>>>>>>>>>>>>>>>>| [ 93/ 93] edoc_lib.erl
| 1.59 kB/s >>>>>>>>>>>>>>>>>>>| [ 30/ 30] edoc_macros.erl
| 1.63 kB/s >>>>>>>>>>>>>>>>>>>| [ 428/ 428] edoc_parser.erl
| 1.52 kB/s >>>>>>>>>>>>>>>>>>>| [ 35/ 35] edoc_refs.erl
| 1.58 kB/s >>>>>>>>>>>>>>>>>>>| [ 14/ 14] edoc_report.erl
| 1.35 kB/s >>>>>>>>>>>>>>>>>>>| [ 16/ 16] edoc_run.erl
| 2.02 kB/s >>>>>>>>>>>>>>>>>>>| [ 27/ 27] edoc_scanner.erl
| 1.61 kB/s >>>>>>>>>>>>>>>>>>>| [ 38/ 38] edoc_tags.erl
| 1.49 kB/s >>>>>>>>>>>>>>>>>>>| [ 23/ 23] edoc_types.erl
| 1.50 kB/s >>>>>>>>>>>>>>>>>>>| [ 42/ 42] edoc_wiki.erl
| 1.40 kB/s >>>>>>>>>>>>>>>>>>>| [ 82/ 82] otpsgml_layout.erl
Adding: /Users/olahgabor/Documents/git/refactorerl/otp_src_R12B-5/lib/et/src
| 1.34 kB/s >>>>>>>>>>>>>>>>>>>| [ 6/ 6] et.erl
| 2.06 kB/s >>>>>>>>>>>>>>>>>>>| [ 57/ 57] et_collector.erl
| 2.36 kB/s >>>>>>>>>>>>>>>>>>>| [ 30/ 30] et_contents_viewer.erl
| 4.21 kB/s >>>>>>>>>>>>>>>>>>>| [ 9/ 9] et_selector.erl
| 2.31 kB/s >>>>>>>>>>>>>>>>>>>| [ 91/ 91] et_viewer.erl
Adding: /Users/olahgabor/Documents/git/refactorerl/otp_src_R12B-5/lib/eunit/src
| 0.65 kB/s >>>>>>>>>>>>>>>>>>>| [ 34/ 34] eunit.erl
| 1.70 kB/s >>>>>>>>>>>>>>>>>>>| [ 8/ 8] eunit_autoexport.erl
| 1.42 kB/s >>>>>>>>>>>>>>>>>>>| [ 52/ 52] eunit_data.erl
| 1.90 kB/s >>>>>>>>>>>>>>>>>>>| [ 69/ 69] eunit_lib.erl
| 1.07 kB/s >>>>>>>>>>>>>>>>>>>| [ 47/ 47] eunit_proc.erl
| 1.09 kB/s >>>>>>>>>>>>>>>>>>>| [ 19/ 19] eunit_serial.erl
| 1.10 kB/s >>>>>>>>>>>>>>>>>>>| [ 40/ 40] eunit_server.erl
| 1.93 kB/s >>>>>>>>>>>>>>>>>>>| [ 5/ 5] eunit_striptests.erl
| 2.28 kB/s >>>>>>>>>>>>>>>>>>>| [ 25/ 25] eunit_test.erl
| 1.54 kB/s >>>>>>>>>>>>>>>>>>>| [ 5/ 5] eunit_tests.erl
| 1.57 kB/s >>>>>>>>>>>>>>>>>>>| [ 29/ 29] eunit_tty.erl
Adding: /Users/olahgabor/Documents/git/refactorerl/otp_src_R12B-5/lib/gs/src
| 1.25 kB/s >>>>>>>>>>>>>>>>>>>| [ 132/ 132] gs.erl
| 1.76 kB/s >>>>>>>>>>>>>>>>>>>| [ 25/ 25] gs_frontend.erl
| 2.81 kB/s >>>>>>>>>>>>>>>>>>>| [ 19/ 19] gs_make.erl
| 2.19 kB/s >>>>>>>>>>>>>>>>>>>| [ 16/ 16] gs_packer.erl
| 4.81 kB/s >>>>>>>>>>>>>>>>>>>| [ 4/ 4] gs_widgets.erl
| 1.32 kB/s >>>>>>>>>>>>>>>>>>>| [ 72/ 72] gse.erl
| 1.20 kB/s >>>>>>>>>>>>>>>>>>>| [ 39/ 39] gstk.erl
| 1.22 kB/s >>>>>>>>>>>>>>>>>>>| [ 11/ 11] gstk_arc.erl
| 1.33 kB/s >>>>>>>>>>>>>>>>>>>| [ 11/ 11] gstk_button.erl
| 2.35 kB/s >>>>>>>>>>>>>>>>>>>| [ 27/ 27] gstk_canvas.erl
| 1.79 kB/s >>>>>>>>>>>>>>>>>>>| [ 14/ 14] gstk_checkbutton.erl
| 1.89 kB/s >>>>>>>>>>>>>>>>>>>| [ 44/ 44] gstk_db.erl
| 2.17 kB/s >>>>>>>>>>>>>>>>>>>| [ 16/ 16] gstk_editor.erl
| 2.08 kB/s >>>>>>>>>>>>>>>>>>>| [ 11/ 11] gstk_entry.erl
| 2.86 kB/s >>>>>>>>>>>>>>>>>>>| [ 24/ 24] gstk_font.erl
| 1.87 kB/s >>>>>>>>>>>>>>>>>>>| [ 21/ 21] gstk_frame.erl
| 0.07 kB/s >>>>>>>>>>>>>>>>>>>| [ 167/ 167] gstk_generic.erl
| 2.27 kB/s >>>>>>>>>>>>>>>>>>>| [ 24/ 24] gstk_grid.erl
| 2.75 kB/s >>>>>>>>>>>>>>>>>>>| [ 23/ 23] gstk_gridline.erl
| 1.65 kB/s >>>>>>>>>>>>>>>>>>>| [ 8/ 8] gstk_gs.erl
| 2.04 kB/s >>>>>>>>>>>>>>>>>>>| [ 17/ 17] gstk_image.erl
| 1.79 kB/s >>>>>>>>>>>>>>>>>>>| [ 10/ 10] gstk_label.erl
| 2.36 kB/s >>>>>>>>>>>>>>>>>>>| [ 12/ 12] gstk_line.erl
| 2.53 kB/s >>>>>>>>>>>>>>>>>>>| [ 13/ 13] gstk_listbox.erl
| 2.12 kB/s >>>>>>>>>>>>>>>>>>>| [ 19/ 19] gstk_menu.erl
| 2.06 kB/s >>>>>>>>>>>>>>>>>>>| [ 11/ 11] gstk_menubar.erl
| 1.84 kB/s >>>>>>>>>>>>>>>>>>>| [ 14/ 14] gstk_menubutton.erl
| 2.70 kB/s >>>>>>>>>>>>>>>>>>>| [ 26/ 26] gstk_menuitem.erl
| 1.88 kB/s >>>>>>>>>>>>>>>>>>>| [ 11/ 11] gstk_oval.erl
| 2.07 kB/s >>>>>>>>>>>>>>>>>>>| [ 12/ 12] gstk_polygon.erl
| 2.35 kB/s >>>>>>>>>>>>>>>>>>>| [ 35/ 35] gstk_port_handler.erl
| 2.56 kB/s >>>>>>>>>>>>>>>>>>>| [ 14/ 14] gstk_radiobutton.erl
| 1.99 kB/s >>>>>>>>>>>>>>>>>>>| [ 11/ 11] gstk_rectangle.erl
| 2.27 kB/s >>>>>>>>>>>>>>>>>>>| [ 11/ 11] gstk_scale.erl
| 2.05 kB/s >>>>>>>>>>>>>>>>>>>| [ 11/ 11] gstk_text.erl
| 6.56 kB/s >>>>>>>>>>>>>>>>>>>| [ 6/ 6] gstk_widgets.erl
| 1.96 kB/s >>>>>>>>>>>>>>>>>>>| [ 22/ 22] gstk_window.erl
| 1.73 kB/s >>>>>>>>>>>>>>>>>>>| [ 51/ 51] tcl2erl.erl
| 2.28 kB/s >>>>>>>>>>>>>>>>>>>| [ 26/ 26] tool_file_dialog.erl
| 2.34 kB/s >>>>>>>>>>>>>>>>>>>| [ 31/ 31] tool_utils.erl
Adding: /Users/olahgabor/Documents/git/refactorerl/otp_src_R12B-5/lib/ic/src
| 0.98 kB/s >>>>>>>>>>>>>>>>>>>| [ 33/ 33] ic.erl
| 1.92 kB/s >>>>>>>>>>>>>>>>>>>| [ 16/ 16] ic_array_java.erl
| 3.93 kB/s >>>>>>>>>>>>>>>>>>>| [ 15/ 15] ic_attribute_java.erl
| 3.07 kB/s >>>>>>>>>>>>>>>>>>>| [ 32/ 32] ic_cbe.erl
| 2.54 kB/s >>>>>>>>>>>>>>>>>>>| [ 41/ 41] ic_cclient.erl
| 1.96 kB/s >>>>>>>>>>>>>>>>>>>| [ 71/ 71] ic_code.erl
| 1.99 kB/s >>>>>>>>>>>>>>>>>>>| [ 41/ 41] ic_codegen.erl
| 1.30 kB/s >>>>>>>>>>>>>>>>>>>| [ 10/ 10] ic_constant_java.erl
| 3.44 kB/s >>>>>>>>>>>>>>>>>>>| [ 69/ 69] ic_cserver.erl
| 2.80 kB/s >>>>>>>>>>>>>>>>>>>| [ 21/ 21] ic_enum_java.erl
| 4.20 kB/s >>>>>>>>>>>>>>>>>>>| [ 37/ 37] ic_erl_template.erl
| 2.60 kB/s >>>>>>>>>>>>>>>>>>>| [ 56/ 56] ic_erlbe.erl
| 3.10 kB/s >>>>>>>>>>>>>>>>>>>| [ 24/ 24] ic_error.erl
| 1.92 kB/s >>>>>>>>>>>>>>>>>>>| [ 25/ 25] ic_fetch.erl
| 2.25 kB/s >>>>>>>>>>>>>>>>>>>| [ 24/ 24] ic_file.erl
| 2.25 kB/s >>>>>>>>>>>>>>>>>>>| [ 27/ 27] ic_forms.erl
| 1.41 kB/s >>>>>>>>>>>>>>>>>>>| [ 47/ 47] ic_genobj.erl
| 2.88 kB/s >>>>>>>>>>>>>>>>>>>| [ 43/ 43] ic_java_type.erl
| 2.87 kB/s >>>>>>>>>>>>>>>>>>>| [ 68/ 68] ic_jbe.erl
| 1.94 kB/s >>>>>>>>>>>>>>>>>>>| [ 73/ 73] ic_noc.erl
| 2.47 kB/s >>>>>>>>>>>>>>>>>>>| [ 22/ 22] ic_options.erl
| 1.52 kB/s >>>>>>>>>>>>>>>>>>>| [ 32/ 32] ic_plainbe.erl
| 2.79 kB/s >>>>>>>>>>>>>>>>>>>| [ 77/ 77] ic_pp.erl
| 2.03 kB/s >>>>>>>>>>>>>>>>>>>| [ 137/ 137] ic_pragma.erl
| 4.88 kB/s >>>>>>>>>>>>>>>>>>>| [ 11/ 11] ic_sequence_java.erl
| 2.65 kB/s >>>>>>>>>>>>>>>>>>>| [ 18/ 18] ic_struct_java.erl
| 1.66 kB/s >>>>>>>>>>>>>>>>>>>| [ 24/ 24] ic_symtab.erl
| 2.82 kB/s >>>>>>>>>>>>>>>>>>>| [ 28/ 28] ic_union_java.erl
| 1.87 kB/s >>>>>>>>>>>>>>>>>>>| [ 35/ 35] ic_util.erl
| 2.61 kB/s >>>>>>>>>>>>>>>>>>>| [ 15/ 15] icenum.erl
| 2.17 kB/s >>>>>>>>>>>>>>>>>>>| [ 42/ 42] iceval.erl
| 1.80 kB/s >>>>>>>>>>>>>>>>>>>| [ 934/ 934] icparse.erl
| 1.59 kB/s >>>>>>>>>>>>>>>>>>>| [ 9/ 9] icpreproc.erl
| 2.33 kB/s >>>>>>>>>>>>>>>>>>>| [ 34/ 34] icscan.erl
| 3.35 kB/s >>>>>>>>>>>>>>>>>>>| [ 44/ 44] icstruct.erl
| 1.95 kB/s >>>>>>>>>>>>>>>>>>>| [ 64/ 64] ictk.erl
| 2.16 kB/s >>>>>>>>>>>>>>>>>>>| [ 84/ 84] ictype.erl
| 3.73 kB/s >>>>>>>>>>>>>>>>>>>| [ 42/ 42] icunion.erl
Adding: /Users/olahgabor/Documents/git/refactorerl/otp_src_R12B-5/lib/inets/src
| 2.32 kB/s >>>>>>>>>>>>>>>>>>>| [ 112/ 112] ftp.erl
| 2.34 kB/s >>>>>>>>>>>>>>>>>>>| [ 12/ 12] ftp_progress.erl
| 5.06 kB/s >>>>>>>>>>>>>>>>>>>| [ 18/ 18] ftp_response.erl
| 2.09 kB/s >>>>>>>>>>>>>>>>>>>| [ 8/ 8] ftp_sup.erl
| 2.45 kB/s >>>>>>>>>>>>>>>>>>>| [ 36/ 36] http.erl
| 1.89 kB/s >>>>>>>>>>>>>>>>>>>| [ 34/ 34] http_cookie.erl
| 1.53 kB/s >>>>>>>>>>>>>>>>>>>| [ 11/ 11] http_uri.erl
| 2.41 kB/s >>>>>>>>>>>>>>>>>>>| [ 51/ 51] httpc_handler.erl
| 1.77 kB/s >>>>>>>>>>>>>>>>>>>| [ 8/ 8] httpc_handler_sup.erl
| 2.56 kB/s >>>>>>>>>>>>>>>>>>>| [ 37/ 37] httpc_manager.erl
| 1.75 kB/s >>>>>>>>>>>>>>>>>>>| [ 13/ 13] httpc_profile_sup.erl
| 1.50 kB/s >>>>>>>>>>>>>>>>>>>| [ 16/ 16] httpc_request.erl
| 2.61 kB/s >>>>>>>>>>>>>>>>>>>| [ 29/ 29] httpc_response.erl
| 1.77 kB/s >>>>>>>>>>>>>>>>>>>| [ 9/ 9] httpc_sup.erl
| 2.40 kB/s >>>>>>>>>>>>>>>>>>>| [ 18/ 18] http_chunk.erl
| 6.30 kB/s >>>>>>>>>>>>>>>>>>>| [ 9/ 9] http_request.erl
| 6.63 kB/s >>>>>>>>>>>>>>>>>>>| [ 7/ 7] http_response.erl
| 1.52 kB/s >>>>>>>>>>>>>>>>>>>| [ 21/ 21] http_transport.erl
| 1.92 kB/s >>>>>>>>>>>>>>>>>>>| [ 15/ 15] http_util.erl
| 1.12 kB/s >>>>>>>>>>>>>>>>>>>| [ 86/ 86] httpd.erl
| 1.54 kB/s >>>>>>>>>>>>>>>>>>>| [ 17/ 17] httpd_acceptor.erl
| 1.51 kB/s >>>>>>>>>>>>>>>>>>>| [ 13/ 13] httpd_acceptor_sup.erl
| 2.83 kB/s >>>>>>>>>>>>>>>>>>>| [ 7/ 7] httpd_cgi.erl
| 2.50 kB/s >>>>>>>>>>>>>>>>>>>| [ 49/ 49] httpd_conf.erl
| 2.16 kB/s >>>>>>>>>>>>>>>>>>>| [ 7/ 7] httpd_esi.erl
| 1.38 kB/s >>>>>>>>>>>>>>>>>>>| [ 22/ 22] httpd_example.erl
| 2.34 kB/s >>>>>>>>>>>>>>>>>>>| [ 5/ 5] httpd_file.erl
| 2.85 kB/s >>>>>>>>>>>>>>>>>>>| [ 12/ 12] httpd_instance_sup.erl
| 2.81 kB/s >>>>>>>>>>>>>>>>>>>| [ 9/ 9] httpd_log.erl
| 1.93 kB/s >>>>>>>>>>>>>>>>>>>| [ 85/ 85] httpd_manager.erl
| 1.39 kB/s >>>>>>>>>>>>>>>>>>>| [ 13/ 13] httpd_misc_sup.erl
| 2.29 kB/s >>>>>>>>>>>>>>>>>>>| [ 27/ 27] httpd_request.erl
| 2.57 kB/s >>>>>>>>>>>>>>>>>>>| [ 35/ 35] httpd_request_handler.erl
| 2.06 kB/s >>>>>>>>>>>>>>>>>>>| [ 31/ 31] httpd_response.erl
| 2.29 kB/s >>>>>>>>>>>>>>>>>>>| [ 12/ 12] httpd_script_env.erl
| 1.37 kB/s >>>>>>>>>>>>>>>>>>>| [ 11/ 11] httpd_socket.erl
| 1.78 kB/s >>>>>>>>>>>>>>>>>>>| [ 29/ 29] httpd_sup.erl
| 1.99 kB/s >>>>>>>>>>>>>>>>>>>| [ 72/ 72] httpd_util.erl
| 2.19 kB/s >>>>>>>>>>>>>>>>>>>| [ 8/ 8] mod_actions.erl
| 2.48 kB/s >>>>>>>>>>>>>>>>>>>| [ 15/ 15] mod_alias.erl
| 1.92 kB/s >>>>>>>>>>>>>>>>>>>| [ 63/ 63] mod_auth.erl
| 2.10 kB/s >>>>>>>>>>>>>>>>>>>| [ 18/ 18] mod_auth_dets.erl
| 1.73 kB/s >>>>>>>>>>>>>>>>>>>| [ 33/ 33] mod_auth_mnesia.erl
| 1.74 kB/s >>>>>>>>>>>>>>>>>>>| [ 28/ 28] mod_auth_plain.erl
| 2.19 kB/s >>>>>>>>>>>>>>>>>>>| [ 35/ 35] mod_auth_server.erl
| 2.04 kB/s >>>>>>>>>>>>>>>>>>>| [ 29/ 29] mod_browser.erl
| 1.73 kB/s >>>>>>>>>>>>>>>>>>>| [ 26/ 26] mod_cgi.erl
| 2.79 kB/s >>>>>>>>>>>>>>>>>>>| [ 13/ 13] mod_dir.erl
| 2.26 kB/s >>>>>>>>>>>>>>>>>>>| [ 25/ 25] mod_disk_log.erl
| 0.67 kB/s >>>>>>>>>>>>>>>>>>>| [ 30/ 30] mod_esi.erl
| 0.45 kB/s >>>>>>>>>>>>>>>>>>>| [ 9/ 9] mod_get.erl
| 0.61 kB/s >>>>>>>>>>>>>>>>>>>| [ 6/ 6] mod_head.erl
| 1.27 kB/s >>>>>>>>>>>>>>>>>>>| [ 60/ 60] mod_htaccess.erl
| 1.36 kB/s >>>>>>>>>>>>>>>>>>>| [ 46/ 46] mod_include.erl
| 1.74 kB/s >>>>>>>>>>>>>>>>>>>| [ 17/ 17] mod_log.erl
| 2.00 kB/s >>>>>>>>>>>>>>>>>>>| [ 24/ 24] mod_range.erl
| 1.88 kB/s >>>>>>>>>>>>>>>>>>>| [ 16/ 16] mod_responsecontrol.erl
| 1.30 kB/s >>>>>>>>>>>>>>>>>>>| [ 26/ 26] mod_security.erl
| 1.71 kB/s >>>>>>>>>>>>>>>>>>>| [ 48/ 48] mod_security_server.erl
| 1.29 kB/s >>>>>>>>>>>>>>>>>>>| [ 8/ 8] mod_trace.erl
| 1.01 kB/s >>>>>>>>>>>>>>>>>>>| [ 14/ 14] inets.erl
| 0.67 kB/s >>>>>>>>>>>>>>>>>>>| [ 5/ 5] inets_app.erl
| 1.31 kB/s >>>>>>>>>>>>>>>>>>>| [ 3/ 3] inets_service.erl
| 1.25 kB/s >>>>>>>>>>>>>>>>>>>| [ 14/ 14] inets_sup.erl
| 0.41 kB/s >>>>>>>>>>>>>>>>>>>| [ 17/ 17] tftp.erl
| 1.44 kB/s >>>>>>>>>>>>>>>>>>>| [ 18/ 18] tftp_binary.erl
| 2.26 kB/s >>>>>>>>>>>>>>>>>>>| [ 79/ 79] tftp_engine.erl
| 1.52 kB/s >>>>>>>>>>>>>>>>>>>| [ 23/ 23] tftp_file.erl
| 2.14 kB/s >>>>>>>>>>>>>>>>>>>| [ 21/ 21] tftp_lib.erl
| 0.88 kB/s >>>>>>>>>>>>>>>>>>>| [ 9/ 9] tftp_logger.erl
| 1.18 kB/s >>>>>>>>>>>>>>>>>>>| [ 17/ 17] tftp_sup.erl
Adding: /Users/olahgabor/Documents/git/refactorerl/otp_src_R12B-5/lib/kernel/src
|>> 0.21 kB/s| [ 9/ 73] application.erl
=ERROR REPORT==== 19-Jan-2015::21:45:39 ===
text: "Insert analyser error"
class: throw
reason: {refanal_type,redefine_builtin_type,[node,0]}
stack: [{refanal_type,builtin_check,2,
[{file,"./lib/referl_core/src/refanal_type.erl"},
{line,234}]},
{refanal_type,add_typedefs,3,
[{file,"./lib/referl_core/src/refanal_type.erl"},
{line,158}]},
{refanal_type,insert,4,
[{file,"./lib/referl_core/src/refanal_type.erl"},
{line,128}]},
{lists,map,2,[{file,"lists.erl"},{line,1224}]},
{lists,map,2,[{file,"lists.erl"},{line,1224}]},
{refcore_anal,with_report,4,
[{file,"./lib/referl_core/src/refcore_anal.erl"},
{line,579}]},
{refcore_anal,handle_insert,5,
[{file,"./lib/referl_core/src/refcore_anal.erl"},
{line,236}]},
{refcore_anal,handle_cast,2,
[{file,"./lib/referl_core/src/refcore_anal.erl"},
{line,185}]}]
|>> 0.23 kB/s| [ 10/ 73] application.erl
=ERROR REPORT==== 19-Jan-2015::21:45:39 ===
text: "Insert analyser error"
class: throw
reason: {refanal_type,redefine_builtin_type,[timeout,0]}
stack: [{refanal_type,builtin_check,2,
[{file,"./lib/referl_core/src/refanal_type.erl"},
{line,234}]},
{refanal_type,add_typedefs,3,
[{file,"./lib/referl_core/src/refanal_type.erl"},
{line,158}]},
{refanal_type,insert,4,
[{file,"./lib/referl_core/src/refanal_type.erl"},
{line,128}]},
{lists,map,2,[{file,"lists.erl"},{line,1224}]},
{lists,map,2,[{file,"lists.erl"},{line,1224}]},
{refcore_anal,with_report,4,
[{file,"./lib/referl_core/src/refcore_anal.erl"},
{line,579}]},
{refcore_anal,handle_insert,5,
[{file,"./lib/referl_core/src/refcore_anal.erl"},
{line,236}]},
{refcore_anal,handle_cast,2,
[{file,"./lib/referl_core/src/refcore_anal.erl"},
{line,185}]}]
| 0.90 kB/s >>>>>>>>>>>>>>>>>>>| [ 73/ 73] application.erl
| 1.68 kB/s >>>>>>>>>>>>>>>>>>>| [ 117/ 117] application_controller.erl
| 1.09 kB/s >>>>>>>>>>>>>>>>>>>| [ 32/ 32] application_master.erl
| 1.76 kB/s >>>>>>>>>>>>>>>>>>>| [ 6/ 6] application_starter.erl
|>> 0.21 kB/s| [ 11/ 53] auth.erl
=ERROR REPORT==== 19-Jan-2015::21:46:15 ===
text: "Insert analyser error"
class: throw
reason: {refanal_type,redefine_builtin_type,[node,0]}
stack: [{refanal_type,builtin_check,2,
[{file,"./lib/referl_core/src/refanal_type.erl"},
{line,234}]},
{refanal_type,add_typedefs,3,
[{file,"./lib/referl_core/src/refanal_type.erl"},
{line,158}]},
{refanal_type,insert,4,
[{file,"./lib/referl_core/src/refanal_type.erl"},
{line,128}]},
{lists,map,2,[{file,"lists.erl"},{line,1224}]},
{lists,map,2,[{file,"lists.erl"},{line,1224}]},
{refcore_anal,with_report,4,
[{file,"./lib/referl_core/src/refcore_anal.erl"},
{line,579}]},
{refcore_anal,handle_insert,5,
[{file,"./lib/referl_core/src/refcore_anal.erl"},
{line,236}]},
{refcore_anal,handle_cast,2,
[{file,"./lib/referl_core/src/refcore_anal.erl"},
{line,185}]}]
| 0.99 kB/s >>>>>>>>>>>>>>>>>>>| [ 53/ 53] auth.erl
| 0.96 kB/s >>>>>>>>>>>>>>>>>>>| [ 112/ 112] code.erl
| 1.10 kB/s >>>>>>>>>>>>>>>>>>>| [ 116/ 116] code_server.erl
|> 0.14 kB/s| [ 9/ 188] disk_log.erl
=ERROR REPORT==== 19-Jan-2015::21:46:58 ===
text: "Insert analyser error"
class: throw
reason: {refanal_type,redefine_builtin_type,[node,0]}
stack: [{refanal_type,builtin_check,2,
[{file,"./lib/referl_core/src/refanal_type.erl"},
{line,234}]},
{refanal_type,add_typedefs,3,
[{file,"./lib/referl_core/src/refanal_type.erl"},
{line,158}]},
{refanal_type,insert,4,
[{file,"./lib/referl_core/src/refanal_type.erl"},
{line,128}]},
{lists,map,2,[{file,"lists.erl"},{line,1224}]},
{lists,map,2,[{file,"lists.erl"},{line,1224}]},
{refcore_anal,with_report,4,
[{file,"./lib/referl_core/src/refcore_anal.erl"},
{line,579}]},
{refcore_anal,handle_insert,5,
[{file,"./lib/referl_core/src/refcore_anal.erl"},
{line,236}]},
{refcore_anal,handle_cast,2,
[{file,"./lib/referl_core/src/refcore_anal.erl"},
{line,185}]}]
| 1.26 kB/s >>>>>>>>>>>>>>>>>>>| [ 188/ 188] disk_log.erl
|> 0.82 kB/s| [ 17/ 124] disk_log_1.erl
=ERROR REPORT==== 19-Jan-2015::21:47:27 ===
text: "Insert analyser error"
class: throw
reason: {refanal_type,redefine_builtin_type,[node,0]}
stack: [{refanal_type,builtin_check,2,
[{file,"./lib/referl_core/src/refanal_type.erl"},
{line,234}]},
{refanal_type,add_typedefs,3,
[{file,"./lib/referl_core/src/refanal_type.erl"},
{line,158}]},
{refanal_type,insert,4,
[{file,"./lib/referl_core/src/refanal_type.erl"},
{line,128}]},
{lists,map,2,[{file,"lists.erl"},{line,1224}]},
{lists,map,2,[{file,"lists.erl"},{line,1224}]},
{refcore_anal,with_report,4,
[{file,"./lib/referl_core/src/refcore_anal.erl"},
{line,579}]},
{refcore_anal,handle_insert,5,
[{file,"./lib/referl_core/src/refcore_anal.erl"},
{line,236}]},
{refcore_anal,handle_cast,2,
[{file,"./lib/referl_core/src/refcore_anal.erl"},
{line,185}]}]
| 1.69 kB/s >>>>>>>>>>>>>>>>>>>| [ 124/ 124] disk_log_1.erl
|> 0.21 kB/s| [ 7/ 41] disk_log_server.erl
=ERROR REPORT==== 19-Jan-2015::21:47:46 ===
text: "Insert analyser error"
class: throw
reason: {refanal_type,redefine_builtin_type,[node,0]}
stack: [{refanal_type,builtin_check,2,
[{file,"./lib/referl_core/src/refanal_type.erl"},
{line,234}]},
{refanal_type,add_typedefs,3,
[{file,"./lib/referl_core/src/refanal_type.erl"},
{line,158}]},
{refanal_type,insert,4,
[{file,"./lib/referl_core/src/refanal_type.erl"},
{line,128}]},
{lists,map,2,[{file,"lists.erl"},{line,1224}]},
{lists,map,2,[{file,"lists.erl"},{line,1224}]},
{refcore_anal,with_report,4,
[{file,"./lib/referl_core/src/refcore_anal.erl"},
{line,579}]},
{refcore_anal,handle_insert,5,
[{file,"./lib/referl_core/src/refcore_anal.erl"},
{line,236}]},
{refcore_anal,handle_cast,2,
[{file,"./lib/referl_core/src/refcore_anal.erl"},
{line,185}]}]
| 0.98 kB/s >>>>>>>>>>>>>>>>>>>| [ 41/ 41] disk_log_server.erl
| 1.04 kB/s >>>>>>>>>>>>>>>>>>>| [ 5/ 5] disk_log_sup.erl
| 1.61 kB/s >>>>>>>>>>>>>>>>>>>| [ 105/ 105] dist_ac.erl
| 1.34 kB/s >>>>>>>>>>>>>>>>>>>| [ 60/ 60] dist_util.erl
| 0.98 kB/s >>>>>>>>>>>>>>>>>>>| [ 44/ 44] erl_boot_server.erl
| 1.21 kB/s >>>>>>>>>>>>>>>>>>>| [ 26/ 26] erl_ddll.erl
| 0.70 kB/s >>>>>>>>>>>>>>>>>>>| [ 13/ 13] erl_distribution.erl
| 0.89 kB/s >>>>>>>>>>>>>>>>>>>| [ 61/ 61] erl_epmd.erl
| 1.18 kB/s >>>>>>>>>>>>>>>>>>>| [ 134/ 134] erl_prim_loader.erl
| 0.70 kB/s >>>>>>>>>>>>>>>>>>>| [ 4/ 4] erl_reply.erl
| 1.01 kB/s >>>>>>>>>>>>>>>>>>>| [ 66/ 66] erlang.erl
| 0.67 kB/s >>>>>>>>>>>>>>>>>>>| [ 16/ 16] error_handler.erl
| 1.04 kB/s >>>>>>>>>>>>>>>>>>>| [ 64/ 64] error_logger.erl
| 0.76 kB/s >>>>>>>>>>>>>>>>>>>| [ 13/ 13] erts_debug.erl
|>> 0.30 kB/s| [ 21/ 152] file.erl
=ERROR REPORT==== 19-Jan-2015::21:49:29 ===
text: "Insert analyser error"
class: throw
reason: {refanal_type,redefine_builtin_type,[iodata,0]}
stack: [{refanal_type,builtin_check,2,
[{file,"./lib/referl_core/src/refanal_type.erl"},
{line,234}]},
{refanal_type,add_typedefs,3,
[{file,"./lib/referl_core/src/refanal_type.erl"},
{line,158}]},
{refanal_type,insert,4,
[{file,"./lib/referl_core/src/refanal_type.erl"},
{line,128}]},
{lists,map,2,[{file,"lists.erl"},{line,1224}]},
{lists,map,2,[{file,"lists.erl"},{line,1224}]},
{refcore_anal,with_report,4,
[{file,"./lib/referl_core/src/refcore_anal.erl"},
{line,579}]},
{refcore_anal,handle_insert,5,
[{file,"./lib/referl_core/src/refcore_anal.erl"},
{line,236}]},
{refcore_anal,handle_cast,2,
[{file,"./lib/referl_core/src/refcore_anal.erl"},
{line,185}]}]
| 1.42 kB/s >>>>>>>>>>>>>>>>>>>| [ 152/ 152] file.erl
| 1.22 kB/s >>>>>>>>>>>>>>>>>>>| [ 32/ 32] file_io_server.erl
| 0.80 kB/s >>>>>>>>>>>>>>>>>>>| [ 24/ 24] file_server.erl
| 0.83 kB/s >>>>>>>>>>>>>>>>>>>| [ 26/ 26] gen_sctp.erl
| 0.93 kB/s >>>>>>>>>>>>>>>>>>>| [ 23/ 23] gen_tcp.erl
| 0.69 kB/s >>>>>>>>>>>>>>>>>>>| [ 18/ 18] gen_udp.erl
| 1.38 kB/s >>>>>>>>>>>>>>>>>>>| [ 161/ 161] global.erl
| 1.53 kB/s >>>>>>>>>>>>>>>>>>>| [ 87/ 87] global_group.erl
| 1.33 kB/s >>>>>>>>>>>>>>>>>>>| [ 22/ 22] global_search.erl
| 0.95 kB/s >>>>>>>>>>>>>>>>>>>| [ 42/ 42] group.erl
| 0.78 kB/s >>>>>>>>>>>>>>>>>>>| [ 35/ 35] heart.erl
| 1.04 kB/s >>>>>>>>>>>>>>>>>>>| [ 97/ 97] hipe_unified_loader.erl
| 1.17 kB/s >>>>>>>>>>>>>>>>>>>| [ 169/ 169] inet.erl
|>>>>>>>> 0.81 kB/s| [ 3/ 5] inet6_sctp.erl
=INFO REPORT==== 19-Jan-2015::21:51:46 ===
/Users/olahgabor/Documents/git/refactorerl/otp_src_R12B-5/lib/kernel/src/inet6_sctp.erl:33:41 Parse error before of
| 0.80 kB/s >>>>>>>>>>>>>>>>>>>| [ 5/ 5] inet6_sctp.erl
| 0.59 kB/s >>>>>>>>>>>>>>>>>>>| [ 27/ 27] inet6_tcp.erl
| 1.08 kB/s >>>>>>>>>>>>>>>>>>>| [ 32/ 32] inet6_tcp_dist.erl
| 0.48 kB/s >>>>>>>>>>>>>>>>>>>| [ 20/ 20] inet6_udp.erl
| 1.10 kB/s >>>>>>>>>>>>>>>>>>>| [ 39/ 39] inet_config.erl
| 1.03 kB/s >>>>>>>>>>>>>>>>>>>| [ 157/ 157] inet_db.erl
| 1.16 kB/s >>>>>>>>>>>>>>>>>>>| [ 44/ 44] inet_dns.erl
| 1.13 kB/s >>>>>>>>>>>>>>>>>>>| [ 73/ 73] inet_gethost_native.erl
| 1.18 kB/s >>>>>>>>>>>>>>>>>>>| [ 9/ 9] inet_hosts.erl
| 0.87 kB/s >>>>>>>>>>>>>>>>>>>| [ 102/ 102] inet_parse.erl
| 1.12 kB/s >>>>>>>>>>>>>>>>>>>| [ 53/ 53] inet_res.erl
| 0.77 kB/s >>>>>>>>>>>>>>>>>>>| [ 16/ 16] inet_sctp.erl
| 0.77 kB/s >>>>>>>>>>>>>>>>>>>| [ 27/ 27] inet_tcp.erl
| 1.11 kB/s >>>>>>>>>>>>>>>>>>>| [ 34/ 34] inet_tcp_dist.erl
| 0.78 kB/s >>>>>>>>>>>>>>>>>>>| [ 24/ 24] inet_udp.erl
| 0.97 kB/s >>>>>>>>>>>>>>>>>>>| [ 128/ 128] init.erl
| 1.64 kB/s >>>>>>>>>>>>>>>>>>>| [ 20/ 20] kernel.erl
| 0.80 kB/s >>>>>>>>>>>>>>>>>>>| [ 21/ 21] kernel_config.erl
| 0.35 kB/s >>>>>>>>>>>>>>>>>>>| [ 9/ 9] net.erl
| 0.79 kB/s >>>>>>>>>>>>>>>>>>>| [ 33/ 33] net_adm.erl
| 1.30 kB/s >>>>>>>>>>>>>>>>>>>| [ 145/ 145] net_kernel.erl
| 0.91 kB/s >>>>>>>>>>>>>>>>>>>| [ 30/ 30] os.erl
| 0.87 kB/s >>>>>>>>>>>>>>>>>>>| [ 4/ 4] otp_ring0.erl
| 0.96 kB/s >>>>>>>>>>>>>>>>>>>| [ 32/ 32] packages.erl
| 1.29 kB/s >>>>>>>>>>>>>>>>>>>| [ 29/ 29] pg2.erl
| 1.65 kB/s >>>>>>>>>>>>>>>>>>>| [ 156/ 156] prim_file.erl
| 1.71 kB/s >>>>>>>>>>>>>>>>>>>| [ 157/ 157] prim_inet.erl
| 1.71 kB/s >>>>>>>>>>>>>>>>>>>| [ 46/ 46] prim_zip.erl
| 1.51 kB/s >>>>>>>>>>>>>>>>>>>| [ 74/ 74] ram_file.erl
|>> 0.23 kB/s| [ 8/ 87] rpc.erl
=ERROR REPORT==== 19-Jan-2015::21:55:25 ===
text: "Insert analyser error"
class: throw
reason: {refanal_type,redefine_builtin_type,[node,0]}
stack: [{refanal_type,builtin_check,2,
[{file,"./lib/referl_core/src/refanal_type.erl"},
{line,234}]},
{refanal_type,add_typedefs,3,
[{file,"./lib/referl_core/src/refanal_type.erl"},
{line,158}]},
{refanal_type,insert,4,
[{file,"./lib/referl_core/src/refanal_type.erl"},
{line,128}]},
{lists,map,2,[{file,"lists.erl"},{line,1224}]},
{lists,map,2,[{file,"lists.erl"},{line,1224}]},
{refcore_anal,with_report,4,
[{file,"./lib/referl_core/src/refcore_anal.erl"},
{line,579}]},
{refcore_anal,handle_insert,5,
[{file,"./lib/referl_core/src/refcore_anal.erl"},
{line,236}]},
{refcore_anal,handle_cast,2,
[{file,"./lib/referl_core/src/refcore_anal.erl"},
{line,185}]}]
|>> 0.24 kB/s| [ 9/ 87] rpc.erl
=ERROR REPORT==== 19-Jan-2015::21:55:25 ===
text: "Insert analyser error"
class: throw
reason: {refanal_type,redefine_builtin_type,[timeout,0]}
stack: [{refanal_type,builtin_check,2,
[{file,"./lib/referl_core/src/refanal_type.erl"},
{line,234}]},
{refanal_type,add_typedefs,3,
[{file,"./lib/referl_core/src/refanal_type.erl"},
{line,158}]},
{refanal_type,insert,4,
[{file,"./lib/referl_core/src/refanal_type.erl"},
{line,128}]},
{lists,map,2,[{file,"lists.erl"},{line,1224}]},
{lists,map,2,[{file,"lists.erl"},{line,1224}]},
{refcore_anal,with_report,4,
[{file,"./lib/referl_core/src/refcore_anal.erl"},
{line,579}]},
{refcore_anal,handle_insert,5,
[{file,"./lib/referl_core/src/refcore_anal.erl"},
{line,236}]},
{refcore_anal,handle_cast,2,
[{file,"./lib/referl_core/src/refcore_anal.erl"},
{line,185}]}]
| 1.11 kB/s >>>>>>>>>>>>>>>>>>>| [ 87/ 87] rpc.erl
| 0.60 kB/s >>>>>>>>>>>>>>>>>>>| [ 17/ 17] seq_trace.erl
| 0.89 kB/s >>>>>>>>>>>>>>>>>>>| [ 40/ 40] user.erl
| 1.41 kB/s >>>>>>>>>>>>>>>>>>>| [ 51/ 51] user_drv.erl
| 0.58 kB/s >>>>>>>>>>>>>>>>>>>| [ 14/ 14] user_sup.erl
|> 0.25 kB/s| [ 9/ 24] wrap_log_reader.erl