-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathtag.tag
2559 lines (2559 loc) · 206 KB
/
tag.tag
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
!_TAG_FILE_FORMAT 2
!_TAG_FILE_SORTED 1 /0=unsorted, 1=sorted/
!_TAG_PROGRAM_AUTHOR Joel Stemmer /[email protected]/
!_TAG_PROGRAM_NAME gotags
!_TAG_PROGRAM_URL https://github.com/jstemmer/gotags
!_TAG_PROGRAM_VERSION 1.3.0 /go1.6/
ADDITION_ARGS examples/linear/client/client.go 13;" c access:public line:13
ADDITION_ARGS examples/linear/client_orig/client.go 11;" c access:public line:11
ASSERT_FAILED dinvRT/assert.go 24;" c access:public line:24
ASSERT_REQUEST dinvRT/assert.go 19;" c access:public line:19
ASSERT_RETURN dinvRT/assert.go 20;" c access:public line:20
Ack dinvRT/test-asserts/diningPhilosophers/diningphilosopher.go 18;" c access:public line:18
Ack examples/diningPhil/diningphilosopher.go 15;" c access:public line:15
AddAssertable dinvRT/assert.go 385;" f access:public line:385 signature:(name string, pointer interface{}, f processFunction)
Apply examples/raft/main.go 20;" m access:public ctype:fsm line:20 signature:(l *raft.Log) type:interface{}
Assert dinvRT/assert.go 395;" f access:public line:395 signature:(outerFunc func(map[string]map[string]interface{}) bool, requestedValues map[string][]string)
B2S dinvRT/assert.go 77;" f access:public line:77 signature:(bs []uint8) type:string
BASEPORT dinvRT/test-asserts/microbenchmark_tests/node.go 20;" c access:public line:20
BASEPORT dinvRT/test-asserts/ricartagrawala/ricartagrawala.go 19;" c access:public line:19
BASEPORT examples/chainkv/run/run_test.go 10;" c access:public line:10
BASEPORT examples/ricartagrawala/ricartagrawala.go 17;" c access:public line:17
BASEPORT userstudy/cr2/run/run_test.go 10;" c access:public line:10
BASEPORT userstudy/cv1/run/run_test.go 10;" c access:public line:10
BASEPORT userstudy/cv3/run/run_test.go 10;" c access:public line:10
BASEPORT userstudy/cv4/run/run_test.go 10;" c access:public line:10
BASEPORT userstudy/cv5/run/run_test.go 10;" c access:public line:10
BASEPORT userstudy/cv6/run/run_test.go 10;" c access:public line:10
BASEPORT userstudy/cv7/run/run_test.go 10;" c access:public line:10
BASEPORT userstudy/cv8/run/run_test.go 10;" c access:public line:10
BUFF_SIZE dinvRT/test-asserts/diningPhilosophers/diningphilosopher.go 24;" c access:public line:24
BUFF_SIZE examples/diningPhil/diningphilosopher.go 21;" c access:public line:21
Beginning logmerger/lattice.go 61;" m access:public ctype:LatticeWrapper line:61 signature:()
BenchmarkDumps dinvRT/api_test.go 11;" f access:public line:11 signature:(b *testing.B)
Block programslicer/cfg/cfg.go 282;" m access:public ctype:builder line:282 signature:(s ast.Stmt) type:*Block
Block programslicer/cfg/cfg.go 45;" t access:public line:45 type:struct
BlockSlice programslicer/cfg/cfg.go 42;" w access:public ctype:CFG line:42 type:[]*Block
Blocks programslicer/cfg/cfg.go 229;" w access:public ctype:builder line:229 type:map[ast.Stmt]*Block
Blocks programslicer/cfg/cfg.go 41;" w access:public ctype:CFG line:41 type:map[ast.Stmt]*Block
Body dinvRT/test-asserts/microbenchmark_tests/node.go 43;" w access:public ctype:Message line:43 type:string
Body dinvRT/test-asserts/ricartagrawala/ricartagrawala.go 41;" w access:public ctype:Message line:41 type:string
Body examples/ricartagrawala/ricartagrawala.go 39;" w access:public ctype:Message line:39 type:string
BuildDomTree programslicer/cfg/dom.go 160;" f access:public line:160 signature:(c *CFG)
BuildLattice logmerger/lattice.go 380;" f access:public line:380 signature:(clocks [][]vclock.VClock) type:[][]vclock.VClock
BuildLattice4 logmerger/lattice.go 245;" f access:public line:245 signature:(clocks [][]vclock.VClock) type:[][]vclock.VClock
BuildLattice5 logmerger/lattice.go 169;" f access:public ctype:LatticeWrapper line:169 signature:(clocks [][]vclock.VClock) type:*LatticeWrapper
BuildPostDomTree programslicer/cfg/dom.go 70;" m access:public ctype:CFG line:70 signature:() type:*CFG
ById logmerger/logs.go 383;" t access:public line:383 type:[]Point
ByName dinvRT/api.go 408;" t access:public line:408 type:[]logmerger.NameValuePair
CFG programslicer/cfg/cfg.go 36;" t access:public line:36 type:struct
CFGWrapper programslicer/programBuilder.go 54;" t access:public line:54 type:struct
CLEAR_LINE logmerger/logmerger.go 55;" c access:public line:55
CLIENTPORT examples/helloDinv/ClientServer.go 19;" c access:public line:19
Calls programslicer/programslicer.go 34;" w access:public ctype:FuncNode line:34 type:map[*ast.FuncDecl]*FuncNode
Cfg programslicer/programBuilder.go 55;" w access:public ctype:CFGWrapper line:55 type:*cfg.CFG
Cfgs programslicer/programBuilder.go 48;" w access:public ctype:SourceWrapper line:48 type:[]*CFGWrapper
CheckKeyFail examples/keyValue/server/kvservicemain.go 102;" f access:public line:102 signature:(val *MapVal) type:bool
Client examples/chainkv/c/client.go 25;" f access:public line:25 signature:(myPort, headPort, tailPort string)
Client examples/chainkv/client.go 25;" f access:public line:25 signature:(myPort, headPort, tailPort string)
Client examples/chainkv/t/client.go 33;" f access:public line:33 signature:(myPort, headPort, tailPort string)
Client userstudy/cr2/client.go 26;" f access:public line:26 signature:(myPort, headPort, tailPort string)
Client userstudy/cv1/client.go 34;" f access:public line:34 signature:(myPort, headPort, tailPort string)
Client userstudy/cv3/client.go 34;" f access:public line:34 signature:(myPort, headPort, tailPort string)
Client userstudy/cv4/client.go 26;" f access:public line:26 signature:(myPort, headPort, tailPort string)
Client userstudy/cv5/c/client.go 26;" f access:public line:26 signature:(myPort, headPort, tailPort string)
Client userstudy/cv5/client.go 34;" f access:public line:34 signature:(myPort, headPort, tailPort string)
Client userstudy/cv5/t/client.go 34;" f access:public line:34 signature:(myPort, headPort, tailPort string)
Client userstudy/cv6/c/client.go 26;" f access:public line:26 signature:(myPort, headPort, tailPort string)
Client userstudy/cv6/client.go 26;" f access:public line:26 signature:(myPort, headPort, tailPort string)
Client userstudy/cv6/t/client.go 34;" f access:public line:34 signature:(myPort, headPort, tailPort string)
Client userstudy/cv7/c/client.go 26;" f access:public line:26 signature:(myPort, headPort, tailPort string)
Client userstudy/cv7/client.go 34;" f access:public line:34 signature:(myPort, headPort, tailPort string)
Client userstudy/cv7/t/client.go 34;" f access:public line:34 signature:(myPort, headPort, tailPort string)
Client userstudy/cv8/c/client.go 26;" f access:public line:26 signature:(myPort, headPort, tailPort string)
Client userstudy/cv8/client.go 26;" f access:public line:26 signature:(myPort, headPort, tailPort string)
Client userstudy/cv8/t/client.go 34;" f access:public line:34 signature:(myPort, headPort, tailPort string)
ClockFromString logmerger/utils.go 243;" f access:public line:243 signature:(clock, regex string) type:vclock.VClock, error
Clocks logmerger/cuts.go 254;" w access:public ctype:Cut line:254 type:[]vclock.VClock
Cmessage examples/chainkv/c/client.go 11;" t access:public line:11 type:struct
Cmessage examples/chainkv/client.go 11;" t access:public line:11 type:struct
Cmessage examples/chainkv/t/client.go 11;" t access:public line:11 type:struct
Cmessage userstudy/cr2/client.go 11;" t access:public line:11 type:struct
Cmessage userstudy/cv1/client.go 11;" t access:public line:11 type:struct
Cmessage userstudy/cv3/client.go 11;" t access:public line:11 type:struct
Cmessage userstudy/cv4/client.go 11;" t access:public line:11 type:struct
Cmessage userstudy/cv5/c/client.go 11;" t access:public line:11 type:struct
Cmessage userstudy/cv5/client.go 11;" t access:public line:11 type:struct
Cmessage userstudy/cv5/t/client.go 11;" t access:public line:11 type:struct
Cmessage userstudy/cv6/c/client.go 11;" t access:public line:11 type:struct
Cmessage userstudy/cv6/client.go 11;" t access:public line:11 type:struct
Cmessage userstudy/cv6/t/client.go 11;" t access:public line:11 type:struct
Cmessage userstudy/cv7/c/client.go 11;" t access:public line:11 type:struct
Cmessage userstudy/cv7/client.go 11;" t access:public line:11 type:struct
Cmessage userstudy/cv7/t/client.go 11;" t access:public line:11 type:struct
Cmessage userstudy/cv8/c/client.go 11;" t access:public line:11 type:struct
Cmessage userstudy/cv8/client.go 11;" t access:public line:11 type:struct
Cmessage userstudy/cv8/t/client.go 11;" t access:public line:11 type:struct
Comments programslicer/programBuilder.go 44;" w access:public ctype:SourceWrapper line:44 type:*ast.File
CommunicationDelta logmerger/logs.go 368;" w access:public ctype:Point line:368 type:int
CompareLattice logmerger/lattice.go 319;" f access:public line:319 signature:(a, b [][]vclock.VClock)
ComputeBackwardSlice programslicer/programslicer.go 512;" f access:public line:512 signature:(start ast.Stmt, Cfg *cfg.CFG, info *loader.PackageInfo, fset *token.FileSet, sliceSoFar []ast.Stmt) type:[]ast.Stmt
ComputeForwardSlice programslicer/programslicer.go 443;" f access:public line:443 signature:(start ast.Stmt, cf *cfg.CFG, info *loader.PackageInfo, fset *token.FileSet, sliceSoFar []ast.Stmt) type:[]ast.Stmt
ComputeSliceIP programslicer/programslicer.go 294;" f access:public line:294 signature:(root ast.Stmt, p *ProgramWrapper, slicer func(start ast.Stmt, cf *cfg.CFG, info *loader.PackageInfo, fset *token.FileSet, sliceSoFar []ast.Stmt) []ast.Stmt, pointCollecter func(slice []ast.Stmt, info *loader.PackageInfo, calledAt ast.Stmt, f *ast.FuncDecl, p *ProgramWrapper) []ast.Stmt) type:map[*ast.FuncDecl]*FuncNode
ConstructVclock logmerger/utils.go 291;" f access:public line:291 signature:(ids []string, ticks []int) type:vclock.VClock
ControlDep programslicer/cfg/cfg.go 53;" w access:public ctype:Block line:53 type:[]*Block
ControlDepee programslicer/cfg/cfg.go 54;" w access:public ctype:Block line:54 type:[]*Block
Crashed dinvRT/test-asserts/microbenchmark_tests/node.go 59;" w access:public ctype:Report line:59 type:bool
Crashed dinvRT/test-asserts/ricartagrawala/ricartagrawala.go 57;" w access:public ctype:Report line:57 type:bool
Crashed examples/ricartagrawala/ricartagrawala.go 55;" w access:public ctype:Report line:55 type:bool
CreateDataDepGraph programslicer/dataflow/reaching.go 54;" f access:public line:54 signature:(cfg *cfg.CFG, info *loader.PackageInfo)
CreatePoint dinvRT/api.go 373;" f access:public line:373 signature:(vars []interface{}, varNames []string, id string, logger *govec.GoLog, hash string) type:logmerger.Point
Criticals dinvRT/test-asserts/microbenchmark_tests/node.go 53;" w access:public ctype:Plan line:53 type:int
Criticals dinvRT/test-asserts/microbenchmark_tests/node.go 62;" w access:public ctype:Report line:62 type:int
Criticals dinvRT/test-asserts/ricartagrawala/ricartagrawala.go 51;" w access:public ctype:Plan line:51 type:int
Criticals dinvRT/test-asserts/ricartagrawala/ricartagrawala.go 60;" w access:public ctype:Report line:60 type:int
Criticals examples/ricartagrawala/ricartagrawala.go 49;" w access:public ctype:Plan line:49 type:int
Criticals examples/ricartagrawala/ricartagrawala.go 58;" w access:public ctype:Report line:58 type:int
CurrentFile logmerger/lattice.go 38;" w access:public ctype:LatticeWrapper line:38 type:int
CustomEncoderDecoder dinvRT/api.go 290;" f access:public line:290 signature:(encoder func(interface{}) []byte, error, decoder func([]byte, interface{}) error)
Cut logmerger/cuts.go 253;" t access:public line:253 type:struct
Cut logmerger/state.go 20;" w access:public ctype:State line:20 type:Cut
DataDep programslicer/cfg/cfg.go 55;" w access:public ctype:Block line:55 type:[]*Block
DataDepee programslicer/cfg/cfg.go 56;" w access:public ctype:Block line:56 type:[]*Block
Defers programslicer/cfg/cfg.go 40;" w access:public ctype:CFG line:40 type:[]*ast.DeferStmt
Delete logmerger/lattice.go 54;" m access:public ctype:LatticeWrapper line:54 signature:()
DiskDump logmerger/lattice.go 142;" m access:public ctype:LatticeWrapper line:142 signature:()
DomPreorder programslicer/cfg/dom.go 100;" m access:public ctype:CFG line:100 signature:() type:[]*Block
Dominates programslicer/cfg/dom.go 87;" m access:public ctype:Block line:87 signature:(c *Block) type:bool
Dominees programslicer/cfg/dom.go 84;" m access:public ctype:Block line:84 signature:() type:[]*Block
Dump dinvRT/api.go 48;" f access:public line:48 signature:(did, names string, values )
Dump logmerger/logs.go 365;" w access:public ctype:Point line:365 type:[]NameValuePair
END programslicer/programBuilder.go 273;" c access:public line:273
Eating dinvRT/test-asserts/diningPhilosophers/diningphilosopher.go 30;" v access:public line:30 type:bool
Eating examples/diningPhil/diningphilosopher.go 27;" v access:public line:27 type:bool
EatingState dinvRT/test-asserts/diningPhilosophers/diningphilosopher.go 40;" f access:public line:40 signature:()
EatingState examples/diningPhil/diningphilosopher.go 36;" f access:public line:36 signature:()
Encoder dinvRT/api.go 26;" v access:public line:26 type:*json.Encoder
Entry programslicer/cfg/cfg.go 38;" w access:public ctype:CFG line:38 type:*ast.BadStmt
ErrorMessage dinvRT/test-asserts/microbenchmark_tests/node.go 60;" w access:public ctype:Report line:60 type:error
ErrorMessage dinvRT/test-asserts/ricartagrawala/ricartagrawala.go 58;" w access:public ctype:Report line:58 type:error
ErrorMessage examples/ricartagrawala/ricartagrawala.go 56;" w access:public ctype:Report line:56 type:error
Example_getClockIds logmerger/utils_test.go 28;" f access:public line:28 signature:()
ExcuseMe dinvRT/test-asserts/diningPhilosophers/diningphilosopher.go 21;" c access:public line:21
ExcuseMe examples/diningPhil/diningphilosopher.go 18;" c access:public line:18
Excused dinvRT/test-asserts/diningPhilosophers/diningphilosopher.go 34;" v access:public line:34 type:bool
Excused examples/diningPhil/diningphilosopher.go 31;" v access:public line:31 type:bool
Exit programslicer/cfg/cfg.go 38;" w access:public ctype:CFG line:38 type:*ast.BadStmt
Exp programslicer/programBuilder.go 56;" w access:public ctype:CFGWrapper line:56 type:map[int]ast.Stmt
FDecl programslicer/programslicer.go 53;" w access:public ctype:Task line:53 type:*ast.FuncDecl
FetchDisk logmerger/lattice.go 112;" m access:public ctype:LatticeWrapper line:112 signature:()
Filename programslicer/programBuilder.go 46;" w access:public ctype:SourceWrapper line:46 type:string
FindControlDeps programslicer/cfg/dom.go 52;" m access:public ctype:CFG line:52 signature:()
FindFile programslicer/programBuilder.go 323;" m access:public ctype:ProgramWrapper line:323 signature:(n ast.Node) type:int, int
FindFunction instrumenter/instrumenter.go 268;" f access:public line:268 signature:(n ast.Node, decls []ast.Decl) type:int, *ast.FuncDecl
FromFunc programslicer/cfg/cfg.go 119;" f access:public ctype:CFG line:119 signature:(f *ast.FuncDecl) type:*CFG
FromStmts programslicer/cfg/cfg.go 114;" f access:public ctype:CFG line:114 signature:(s []ast.Stmt) type:*CFG
Fset programslicer/programBuilder.go 31;" w access:public ctype:ProgramWrapper line:31 type:*token.FileSet
FuncNode programslicer/programslicer.go 31;" t access:public line:31 type:struct
GenCallJoin programslicer/programslicer.go 396;" f access:public line:396 signature:(call *ast.CallExpr, function *ast.FuncDecl) type:*ast.AssignStmt
GenerateDumpCode instrumenter/instrumenter.go 552;" f access:public line:552 signature:(vars []string, lineNumber int, annotation, path, packagename string) type:string
Get examples/keyValue/server/kvservicemain.go 114;" m access:public ctype:KeyValService line:114 signature:(args *GetArgs, reply *ValReply) type:error
GetAccessibleVarsInScope instrumenter/instrumenter.go 328;" f access:public line:328 signature:(dumpPosition int, program *programslicer.ProgramWrapper, pnum, snum int) type:[]string
GetAffectedVariables programslicer/programslicer.go 578;" f access:public line:578 signature:(root ast.Stmt, p *ProgramWrapper, slicer func(start ast.Stmt, cf *cfg.CFG, info *loader.PackageInfo, fset *token.FileSet, sliceSoFar []ast.Stmt) []ast.Stmt, pointCollecter func(slice []ast.Stmt, info *loader.PackageInfo, calledAt ast.Stmt, f *ast.FuncDecl, p *ProgramWrapper) []ast.Stmt) type:map[*ast.FuncDecl]*FuncNode
GetArgs examples/keyValue/client/kvclientmain.go 22;" t access:public line:22 type:struct
GetArgs examples/keyValue/server/kvservicemain.go 43;" t access:public line:43 type:struct
GetAssertDelay dinvRT/assert.go 257;" f access:public line:257 signature:() type:time.Duration
GetBlocks programslicer/cfg/cfg.go 137;" m access:public ctype:CFG line:137 signature:() type:[]ast.Stmt
GetGlobalVariables instrumenter/instrumenter.go 344;" f access:public line:344 signature:(program *programslicer.ProgramWrapper) type:[]string
GetGlobalVariablesFromFile instrumenter/instrumenter.go 354;" f access:public line:354 signature:(file *ast.File, fset *token.FileSet) type:[]string
GetId dinvRT/api.go 276;" f access:public line:276 signature:() type:string
GetLocalVariables instrumenter/instrumenter.go 383;" f access:public line:383 signature:(dumpPosition int, file *ast.File, fset *token.FileSet) type:[]string
GetLogNodes instrumenter/instrumenter.go 535;" f access:public line:535 signature:(file *ast.File, annotation string) type:[]*ast.Comment
GetLogger dinvRT/api.go 267;" f access:public line:267 signature:() type:*govec.GoLog
GetPeers dinvRT/assert.go 433;" f access:public line:433 signature:() type:[]string
GetProgramWrapperDirectory programslicer/programBuilder.go 122;" f access:public ctype:ProgramWrapper line:122 signature:(dir string) type:*ProgramWrapper, error
GetProgramWrapperFile programslicer/programBuilder.go 102;" f access:public ctype:ProgramWrapper line:102 signature:(path string) type:*ProgramWrapper, error
GetTaintedPointsBackwards programslicer/programslicer.go 270;" f access:public line:270 signature:(slice []ast.Stmt, info *loader.PackageInfo, calledAt ast.Stmt, f *ast.FuncDecl, p *ProgramWrapper) type:[]ast.Stmt
GetTaintedPointsForward programslicer/programslicer.go 277;" f access:public line:277 signature:(slice []ast.Stmt, info *loader.PackageInfo, calledAt ast.Stmt, f *ast.FuncDecl, p *ProgramWrapper) type:[]ast.Stmt
GetWrapperFromString programslicer/programBuilder.go 72;" f access:public ctype:ProgramWrapper line:72 signature:(SourceString string) type:*ProgramWrapper, error
GlobalTimeout dinvRT/test-asserts/microbenchmark_tests/node.go 54;" w access:public ctype:Plan line:54 type:int
GlobalTimeout dinvRT/test-asserts/ricartagrawala/ricartagrawala.go 52;" w access:public ctype:Plan line:52 type:int
GlobalTimeout examples/ricartagrawala/ricartagrawala.go 50;" w access:public ctype:Plan line:50 type:int
GoLogFromString logmerger/logs.go 179;" f access:public ctype:golog line:179 signature:(clockLog, regex string) type:*golog, error
HappenedBefore logmerger/cuts.go 258;" m access:public ctype:Cut line:258 signature:(other Cut) type:bool
Hash logmerger/utils.go 328;" f access:public line:328 signature:(id string) type:string
Host dinvRT/test-asserts/microbenchmark_tests/node.go 153;" f access:public ctype:Report line:153 signature:(idArg, hostsArg int, planArg Plan) type:Report
Host dinvRT/test-asserts/ricartagrawala/ricartagrawala.go 140;" f access:public ctype:Report line:140 signature:(idArg, hostsArg int, planArg Plan) type:Report
Host examples/ricartagrawala/ricartagrawala.go 109;" f access:public ctype:Report line:109 signature:(idArg, hostsArg int, planArg Plan) type:Report
ID dinvRT/test-asserts/diningPhilosophers/diningphilosopher.go 35;" v access:public line:35 type:string
ID examples/diningPhil/diningphilosopher.go 32;" v access:public line:32 type:string
ID examples/raft/main.go 17;" w access:public ctype:fsm line:17 type:string
ID examples/raft/main.go 36;" w access:public ctype:fsmSnapshot line:36 type:string
Id dinvRT/test-asserts/microbenchmark_tests/node.go 52;" w access:public ctype:Plan line:52 type:int
Id dinvRT/test-asserts/ricartagrawala/ricartagrawala.go 50;" w access:public ctype:Plan line:50 type:int
Id examples/ricartagrawala/ricartagrawala.go 48;" w access:public ctype:Plan line:48 type:int
Id logmerger/logs.go 366;" w access:public ctype:Point line:366 type:string
Idom programslicer/cfg/dom.go 79;" m access:public ctype:Block line:79 signature:() type:*Block
Index programslicer/cfg/cfg.go 46;" w access:public ctype:Block line:46 type:int
Init daikonWrapper/daikonWrapper.go 47;" f access:public line:47 signature:()
InitDistributedAssert dinvRT/assert.go 315;" f access:public line:315 signature:(addr string, assertPeers []string, processName string)
Initalize dinvRT/api.go 250;" f access:public line:250 signature:(hostName string) type:error
InitializeBlocks programslicer/cfg/cfg.go 60;" m access:public ctype:CFG line:60 signature:()
InplaceDirectorySwap instrumenter/instrumenter.go 164;" f access:public line:164 signature:(dir string) type:error
Inside instrumenter/instrumenter.go 49;" m access:public ctype:localScope line:49 signature:(pos int) type:bool
Instrument instrumenter/instrumenter.go 58;" f access:public line:58 signature:(options map[string]string, inlogger *log.Logger)
InsturmentSource instrumenter/instrumenter.go 179;" f access:public line:179 signature:(program *programslicer.ProgramWrapper, pnum, snum int)
InvertCFG programslicer/cfg/cfg.go 92;" m access:public ctype:CFG line:92 signature:() type:*CFG
KVNode examples/chainkv/c/node.go 15;" t access:public line:15 type:struct
KVNode examples/chainkv/node.go 15;" t access:public line:15 type:struct
KVNode examples/chainkv/t/node.go 15;" t access:public line:15 type:struct
KVNode userstudy/cr2/node.go 15;" t access:public line:15 type:struct
KVNode userstudy/cv1/node.go 15;" t access:public line:15 type:struct
KVNode userstudy/cv3/node.go 15;" t access:public line:15 type:struct
KVNode userstudy/cv4/node.go 15;" t access:public line:15 type:struct
KVNode userstudy/cv5/c/node.go 15;" t access:public line:15 type:struct
KVNode userstudy/cv5/node.go 15;" t access:public line:15 type:struct
KVNode userstudy/cv5/t/node.go 15;" t access:public line:15 type:struct
KVNode userstudy/cv6/c/node.go 15;" t access:public line:15 type:struct
KVNode userstudy/cv6/node.go 15;" t access:public line:15 type:struct
KVNode userstudy/cv6/t/node.go 15;" t access:public line:15 type:struct
KVNode userstudy/cv7/c/node.go 15;" t access:public line:15 type:struct
KVNode userstudy/cv7/node.go 15;" t access:public line:15 type:struct
KVNode userstudy/cv7/t/node.go 15;" t access:public line:15 type:struct
KVNode userstudy/cv8/c/node.go 15;" t access:public line:15 type:struct
KVNode userstudy/cv8/node.go 15;" t access:public line:15 type:struct
KVNode userstudy/cv8/t/node.go 15;" t access:public line:15 type:struct
Key examples/chainkv/c/client.go 13;" w access:public ctype:Cmessage line:13 type:string
Key examples/chainkv/c/node.go 21;" w access:public ctype:KeyValInfo line:21 type:string
Key examples/chainkv/c/node.go 28;" w access:public ctype:Message line:28 type:string
Key examples/chainkv/client.go 13;" w access:public ctype:Cmessage line:13 type:string
Key examples/chainkv/node.go 21;" w access:public ctype:KeyValInfo line:21 type:string
Key examples/chainkv/node.go 28;" w access:public ctype:Message line:28 type:string
Key examples/chainkv/t/client.go 13;" w access:public ctype:Cmessage line:13 type:string
Key examples/chainkv/t/node.go 21;" w access:public ctype:KeyValInfo line:21 type:string
Key examples/chainkv/t/node.go 28;" w access:public ctype:Message line:28 type:string
Key examples/keyValue/client/kvclientmain.go 23;" w access:public ctype:GetArgs line:23 type:string
Key examples/keyValue/client/kvclientmain.go 28;" w access:public ctype:PutArgs line:28 type:string
Key examples/keyValue/client/kvclientmain.go 34;" w access:public ctype:TestSetArgs line:34 type:string
Key examples/keyValue/server/kvservicemain.go 44;" w access:public ctype:GetArgs line:44 type:string
Key examples/keyValue/server/kvservicemain.go 49;" w access:public ctype:PutArgs line:49 type:string
Key examples/keyValue/server/kvservicemain.go 55;" w access:public ctype:TestSetArgs line:55 type:string
Key userstudy/cr2/client.go 13;" w access:public ctype:Cmessage line:13 type:string
Key userstudy/cr2/node.go 21;" w access:public ctype:KeyValInfo line:21 type:string
Key userstudy/cr2/node.go 28;" w access:public ctype:Message line:28 type:string
Key userstudy/cv1/client.go 13;" w access:public ctype:Cmessage line:13 type:string
Key userstudy/cv1/node.go 21;" w access:public ctype:KeyValInfo line:21 type:string
Key userstudy/cv1/node.go 28;" w access:public ctype:Message line:28 type:string
Key userstudy/cv3/client.go 13;" w access:public ctype:Cmessage line:13 type:string
Key userstudy/cv3/node.go 21;" w access:public ctype:KeyValInfo line:21 type:string
Key userstudy/cv3/node.go 28;" w access:public ctype:Message line:28 type:string
Key userstudy/cv4/client.go 13;" w access:public ctype:Cmessage line:13 type:string
Key userstudy/cv4/node.go 21;" w access:public ctype:KeyValInfo line:21 type:string
Key userstudy/cv4/node.go 28;" w access:public ctype:Message line:28 type:string
Key userstudy/cv5/c/client.go 13;" w access:public ctype:Cmessage line:13 type:string
Key userstudy/cv5/c/node.go 21;" w access:public ctype:KeyValInfo line:21 type:string
Key userstudy/cv5/c/node.go 28;" w access:public ctype:Message line:28 type:string
Key userstudy/cv5/client.go 13;" w access:public ctype:Cmessage line:13 type:string
Key userstudy/cv5/node.go 21;" w access:public ctype:KeyValInfo line:21 type:string
Key userstudy/cv5/node.go 28;" w access:public ctype:Message line:28 type:string
Key userstudy/cv5/t/client.go 13;" w access:public ctype:Cmessage line:13 type:string
Key userstudy/cv5/t/node.go 21;" w access:public ctype:KeyValInfo line:21 type:string
Key userstudy/cv5/t/node.go 28;" w access:public ctype:Message line:28 type:string
Key userstudy/cv6/c/client.go 13;" w access:public ctype:Cmessage line:13 type:string
Key userstudy/cv6/c/node.go 21;" w access:public ctype:KeyValInfo line:21 type:string
Key userstudy/cv6/c/node.go 28;" w access:public ctype:Message line:28 type:string
Key userstudy/cv6/client.go 13;" w access:public ctype:Cmessage line:13 type:string
Key userstudy/cv6/node.go 21;" w access:public ctype:KeyValInfo line:21 type:string
Key userstudy/cv6/node.go 28;" w access:public ctype:Message line:28 type:string
Key userstudy/cv6/t/client.go 13;" w access:public ctype:Cmessage line:13 type:string
Key userstudy/cv6/t/node.go 21;" w access:public ctype:KeyValInfo line:21 type:string
Key userstudy/cv6/t/node.go 28;" w access:public ctype:Message line:28 type:string
Key userstudy/cv7/c/client.go 13;" w access:public ctype:Cmessage line:13 type:string
Key userstudy/cv7/c/node.go 21;" w access:public ctype:KeyValInfo line:21 type:string
Key userstudy/cv7/c/node.go 28;" w access:public ctype:Message line:28 type:string
Key userstudy/cv7/client.go 13;" w access:public ctype:Cmessage line:13 type:string
Key userstudy/cv7/node.go 21;" w access:public ctype:KeyValInfo line:21 type:string
Key userstudy/cv7/node.go 28;" w access:public ctype:Message line:28 type:string
Key userstudy/cv7/t/client.go 13;" w access:public ctype:Cmessage line:13 type:string
Key userstudy/cv7/t/node.go 21;" w access:public ctype:KeyValInfo line:21 type:string
Key userstudy/cv7/t/node.go 28;" w access:public ctype:Message line:28 type:string
Key userstudy/cv8/c/client.go 13;" w access:public ctype:Cmessage line:13 type:string
Key userstudy/cv8/c/node.go 21;" w access:public ctype:KeyValInfo line:21 type:string
Key userstudy/cv8/c/node.go 28;" w access:public ctype:Message line:28 type:string
Key userstudy/cv8/client.go 13;" w access:public ctype:Cmessage line:13 type:string
Key userstudy/cv8/node.go 21;" w access:public ctype:KeyValInfo line:21 type:string
Key userstudy/cv8/node.go 28;" w access:public ctype:Message line:28 type:string
Key userstudy/cv8/t/client.go 13;" w access:public ctype:Cmessage line:13 type:string
Key userstudy/cv8/t/node.go 21;" w access:public ctype:KeyValInfo line:21 type:string
Key userstudy/cv8/t/node.go 28;" w access:public ctype:Message line:28 type:string
KeyValInfo examples/chainkv/c/node.go 20;" t access:public line:20 type:struct
KeyValInfo examples/chainkv/node.go 20;" t access:public line:20 type:struct
KeyValInfo examples/chainkv/t/node.go 20;" t access:public line:20 type:struct
KeyValInfo userstudy/cr2/node.go 20;" t access:public line:20 type:struct
KeyValInfo userstudy/cv1/node.go 20;" t access:public line:20 type:struct
KeyValInfo userstudy/cv3/node.go 20;" t access:public line:20 type:struct
KeyValInfo userstudy/cv4/node.go 20;" t access:public line:20 type:struct
KeyValInfo userstudy/cv5/c/node.go 20;" t access:public line:20 type:struct
KeyValInfo userstudy/cv5/node.go 20;" t access:public line:20 type:struct
KeyValInfo userstudy/cv5/t/node.go 20;" t access:public line:20 type:struct
KeyValInfo userstudy/cv6/c/node.go 20;" t access:public line:20 type:struct
KeyValInfo userstudy/cv6/node.go 20;" t access:public line:20 type:struct
KeyValInfo userstudy/cv6/t/node.go 20;" t access:public line:20 type:struct
KeyValInfo userstudy/cv7/c/node.go 20;" t access:public line:20 type:struct
KeyValInfo userstudy/cv7/node.go 20;" t access:public line:20 type:struct
KeyValInfo userstudy/cv7/t/node.go 20;" t access:public line:20 type:struct
KeyValInfo userstudy/cv8/c/node.go 20;" t access:public line:20 type:struct
KeyValInfo userstudy/cv8/node.go 20;" t access:public line:20 type:struct
KeyValInfo userstudy/cv8/t/node.go 20;" t access:public line:20 type:struct
KeyValService examples/keyValue/client/kvclientmain.go 44;" t access:public line:44 type:int
KeyValService examples/keyValue/server/kvservicemain.go 80;" t access:public line:80 type:int
LARGEST_COEFF examples/linear/coeff/coeff.go 13;" c access:public line:13
LARGEST_COEFF examples/linear/coeff_orig/coeff.go 12;" c access:public line:12
LARGEST_TERM dinvRT/test-asserts/sum/client/client.go 15;" c access:public line:15
LARGEST_TERM examples/linear/client/client.go 14;" c access:public line:14
LARGEST_TERM examples/linear/client_orig/client.go 12;" c access:public line:12
LARGEST_TERM examples/sum/client/client.go 13;" c access:public line:13
Lamport dinvRT/test-asserts/microbenchmark_tests/node.go 25;" v access:public line:25 type:int
Lamport dinvRT/test-asserts/microbenchmark_tests/node.go 42;" w access:public ctype:Message line:42 type:int
Lamport dinvRT/test-asserts/ricartagrawala/ricartagrawala.go 24;" v access:public line:24 type:int
Lamport dinvRT/test-asserts/ricartagrawala/ricartagrawala.go 40;" w access:public ctype:Message line:40 type:int
Lamport examples/ricartagrawala/ricartagrawala.go 22;" v access:public line:22 type:int
Lamport examples/ricartagrawala/ricartagrawala.go 38;" w access:public ctype:Message line:38 type:int
LatticeD logmerger/lattice.go 37;" w access:public ctype:LatticeWrapper line:37 type:[]string
LatticeM logmerger/lattice.go 36;" w access:public ctype:LatticeWrapper line:36 type:[][]vclock.VClock
LatticeValidWithLog logmerger/lattice.go 469;" f access:public line:469 signature:(latticePoint, loggedClock vclock.VClock) type:bool
LatticeWrapper logmerger/lattice.go 35;" t access:public line:35 type:struct
LeftChopstick dinvRT/test-asserts/diningPhilosophers/diningphilosopher.go 32;" v access:public line:32 type:bool
LeftChopstick examples/diningPhil/diningphilosopher.go 29;" v access:public line:29 type:bool
LeftChopstickState dinvRT/test-asserts/diningPhilosophers/diningphilosopher.go 58;" f access:public line:58 signature:()
LeftChopstickState examples/diningPhil/diningphilosopher.go 52;" f access:public line:52 signature:()
Len dinvRT/api.go 410;" m access:public ctype:ByName line:410 signature:() type:int
Len logmerger/logs.go 385;" m access:public ctype:ById line:385 signature:() type:int
Len logmerger/logs.go 403;" m access:public ctype:golog line:403 signature:() type:int
Len programslicer/cfg/dom.go 93;" m access:public ctype:byDomPreorder line:93 signature:() type:int
Less dinvRT/api.go 412;" m access:public ctype:ByName line:412 signature:(i, j int) type:bool
Less logmerger/logs.go 387;" m access:public ctype:ById line:387 signature:(i, j int) type:bool
Less logmerger/logs.go 407;" m access:public ctype:golog line:407 signature:(i, j int) type:bool
Less programslicer/cfg/dom.go 95;" m access:public ctype:byDomPreorder line:95 signature:(i, j int) type:bool
LevelD logmerger/lattice.go 41;" w access:public ctype:LatticeWrapper line:41 type:int
LevelEstimate logmerger/lattice.go 42;" w access:public ctype:LatticeWrapper line:42 type:int
LevelM logmerger/lattice.go 40;" w access:public ctype:LatticeWrapper line:40 type:int
LiveVars programslicer/dataflow/live.go 46;" f access:public line:46 signature:(cfg *cfg.CFG, info *loader.PackageInfo) type:map[ast.Stmt]map[*types.Var], map[ast.Stmt]map[*types.Var]
LoadProgram programslicer/programBuilder.go 62;" f access:public line:62 signature:(SourceFiles []*ast.File, config loader.Config) type:*loader.Program, error
Local dinvRT/api.go 404;" f access:public line:404 signature:(msg string)
MESSAGES examples/helloDinv/ClientServer.go 20;" c access:public line:20
MapVal examples/keyValue/server/kvservicemain.go 66;" t access:public line:66 type:struct
MarshallInts dinvRT/test-asserts/diningPhilosophers/diningphilosopher.go 300;" f access:public line:300 signature:(args []int) type:[]byte
MarshallInts examples/diningPhil/diningphilosopher.go 257;" f access:public line:257 signature:(args []int) type:[]byte
MarshallInts examples/linear/client/client.go 73;" f access:public line:73 signature:(args []int) type:[]byte
MarshallInts examples/linear/client_orig/client.go 70;" f access:public line:70 signature:(args []int) type:[]byte
MarshallInts examples/linear/coeff/coeff.go 89;" f access:public line:89 signature:(args []int) type:[]byte
MarshallInts examples/linear/coeff_orig/coeff.go 89;" f access:public line:89 signature:(args []int) type:[]byte
MarshallInts examples/linear/comm/comm.go 19;" f access:public line:19 signature:(args []int) type:[]byte
MarshallInts examples/linear/linn/linn.go 66;" f access:public line:66 signature:(args []int) type:[]byte
MarshallInts examples/linear/linn_orig/linn.go 65;" f access:public line:65 signature:(args []int) type:[]byte
Merge logmerger/logmerger.go 103;" f access:public line:103 signature:(logfiles []string, gologfiles []string, options map[string]string, inlogger *log.Logger)
Message dinvRT/test-asserts/microbenchmark_tests/node.go 41;" t access:public line:41 type:struct
Message dinvRT/test-asserts/ricartagrawala/ricartagrawala.go 39;" t access:public line:39 type:struct
Message examples/chainkv/c/node.go 26;" t access:public line:26 type:struct
Message examples/chainkv/node.go 26;" t access:public line:26 type:struct
Message examples/chainkv/t/node.go 26;" t access:public line:26 type:struct
Message examples/ricartagrawala/ricartagrawala.go 37;" t access:public line:37 type:struct
Message userstudy/cr2/node.go 26;" t access:public line:26 type:struct
Message userstudy/cv1/node.go 26;" t access:public line:26 type:struct
Message userstudy/cv3/node.go 26;" t access:public line:26 type:struct
Message userstudy/cv4/node.go 26;" t access:public line:26 type:struct
Message userstudy/cv5/c/node.go 26;" t access:public line:26 type:struct
Message userstudy/cv5/node.go 26;" t access:public line:26 type:struct
Message userstudy/cv5/t/node.go 26;" t access:public line:26 type:struct
Message userstudy/cv6/c/node.go 26;" t access:public line:26 type:struct
Message userstudy/cv6/node.go 26;" t access:public line:26 type:struct
Message userstudy/cv6/t/node.go 26;" t access:public line:26 type:struct
Message userstudy/cv7/c/node.go 26;" t access:public line:26 type:struct
Message userstudy/cv7/node.go 26;" t access:public line:26 type:struct
Message userstudy/cv7/t/node.go 26;" t access:public line:26 type:struct
Message userstudy/cv8/c/node.go 26;" t access:public line:26 type:struct
Message userstudy/cv8/node.go 26;" t access:public line:26 type:struct
Message userstudy/cv8/t/node.go 26;" t access:public line:26 type:struct
MessageTime dinvRT/assert.go 37;" w access:public ctype:_message line:37 type:time.Time
MessageType dinvRT/assert.go 34;" w access:public ctype:_message line:34 type:messageType
NVars programslicer/programslicer.go 35;" w access:public ctype:FuncNode line:35 type:[]*types.Var
Name programslicer/programslicer.go 32;" w access:public ctype:FuncNode line:32 type:string
NameValuePair logmerger/logs.go 329;" t access:public line:329 type:struct
New logmerger/lattice.go 45;" f access:public ctype:LatticeWrapper line:45 signature:() type:*LatticeWrapper
NewFuncNode programslicer/programslicer.go 40;" f access:public ctype:FuncNode line:40 signature:(fd *ast.FuncDecl, root ast.Stmt, tainted bool) type:*FuncNode
NewTask programslicer/programslicer.go 56;" f access:public ctype:Task line:56 signature:(root ast.Stmt, fd *ast.FuncDecl) type:*Task
NewVal examples/keyValue/client/kvclientmain.go 36;" w access:public ctype:TestSetArgs line:36 type:string
NewVal examples/keyValue/server/kvservicemain.go 57;" w access:public ctype:TestSetArgs line:57 type:string
Node examples/chainkv/c/node.go 43;" f access:public line:43 signature:(idArg, nextArg, lastArg string)
Node examples/chainkv/node.go 43;" f access:public line:43 signature:(idArg, nextArg, lastArg string)
Node examples/chainkv/t/node.go 54;" f access:public line:54 signature:(idArg, nextArg, lastArg string)
Node userstudy/cr2/node.go 43;" f access:public line:43 signature:(idArg, nextArg, lastArg string)
Node userstudy/cv1/node.go 54;" f access:public line:54 signature:(idArg, nextArg, lastArg string)
Node userstudy/cv3/node.go 54;" f access:public line:54 signature:(idArg, nextArg, lastArg string)
Node userstudy/cv4/node.go 43;" f access:public line:43 signature:(idArg, nextArg, lastArg string)
Node userstudy/cv5/c/node.go 43;" f access:public line:43 signature:(idArg, nextArg, lastArg string)
Node userstudy/cv5/node.go 54;" f access:public line:54 signature:(idArg, nextArg, lastArg string)
Node userstudy/cv5/t/node.go 54;" f access:public line:54 signature:(idArg, nextArg, lastArg string)
Node userstudy/cv6/c/node.go 43;" f access:public line:43 signature:(idArg, nextArg, lastArg string)
Node userstudy/cv6/node.go 43;" f access:public line:43 signature:(idArg, nextArg, lastArg string)
Node userstudy/cv6/t/node.go 54;" f access:public line:54 signature:(idArg, nextArg, lastArg string)
Node userstudy/cv7/c/node.go 43;" f access:public line:43 signature:(idArg, nextArg, lastArg string)
Node userstudy/cv7/node.go 54;" f access:public line:54 signature:(idArg, nextArg, lastArg string)
Node userstudy/cv7/t/node.go 54;" f access:public line:54 signature:(idArg, nextArg, lastArg string)
Node userstudy/cv8/c/node.go 43;" f access:public line:43 signature:(idArg, nextArg, lastArg string)
Node userstudy/cv8/node.go 43;" f access:public line:43 signature:(idArg, nextArg, lastArg string)
Node userstudy/cv8/t/node.go 54;" f access:public line:54 signature:(idArg, nextArg, lastArg string)
ObjNames programslicer/programBuilder.go 59;" w access:public ctype:CFGWrapper line:59 type:map[*types.Var]string
Objs programslicer/programBuilder.go 58;" w access:public ctype:CFGWrapper line:58 type:map[string]*types.Var
OtherDied dinvRT/test-asserts/microbenchmark_tests/node.go 61;" w access:public ctype:Report line:61 type:bool
OtherDied dinvRT/test-asserts/ricartagrawala/ricartagrawala.go 59;" w access:public ctype:Report line:59 type:bool
OtherDied examples/ricartagrawala/ricartagrawala.go 57;" w access:public ctype:Report line:57 type:bool
POINT_DISK_LIMIT logmerger/lattice.go 32;" c access:public line:32
Pack dinvRT/api.go 208;" f access:public line:208 signature:(msg interface{}) type:[]byte
PackM dinvRT/api.go 220;" f access:public line:220 signature:(msg interface{}, log string) type:[]byte
PackageName programslicer/programBuilder.go 36;" w access:public ctype:PackageWrapper line:36 type:string
PackageWrapper programslicer/programBuilder.go 35;" t access:public line:35 type:struct
Packages programslicer/programBuilder.go 32;" w access:public ctype:ProgramWrapper line:32 type:[]*PackageWrapper
ParseGologFile logmerger/logs.go 160;" f access:public ctype:golog line:160 signature:(filename string) type:*golog, error
Persist examples/raft/main.go 39;" m access:public ctype:fsmSnapshot line:39 signature:(sink raft.SnapshotSink) type:error
Philosopher dinvRT/test-asserts/diningPhilosophers/diningphilosopher.go 84;" t access:public line:84 type:struct
Philosopher examples/diningPhil/diningphilosopher.go 66;" t access:public line:66 type:struct
Plan dinvRT/test-asserts/microbenchmark_tests/node.go 51;" t access:public line:51 type:struct
Plan dinvRT/test-asserts/ricartagrawala/ricartagrawala.go 49;" t access:public line:49 type:struct
Plan examples/ricartagrawala/ricartagrawala.go 47;" t access:public line:47 type:struct
Point logmerger/logs.go 364;" t access:public line:364 type:struct
PointLogs logmerger/logs.go 371;" t access:public line:371 type:map[string]map[uint64]Point
Points logmerger/lattice.go 39;" w access:public ctype:LatticeWrapper line:39 type:uint64
Points logmerger/state.go 21;" w access:public ctype:State line:21 type:[]Point
Pop logmerger/lattice.go 96;" m access:public ctype:LatticeWrapper line:96 signature:() type:[]vclock.VClock
PredBs programslicer/cfg/cfg.go 50;" w access:public ctype:Block line:50 type:[]*Block
Preds programslicer/cfg/cfg.go 125;" m access:public ctype:CFG line:125 signature:(s ast.Stmt) type:[]ast.Stmt
Preds programslicer/cfg/cfg.go 48;" w access:public ctype:Block line:48 type:[]ast.Stmt
PrintControlDepDot programslicer/cfg/cfg.go 162;" m access:public ctype:CFG line:162 signature:(f io.Writer, fset *token.FileSet, addl func(n ast.Stmt) string)
PrintDataDepDot programslicer/cfg/cfg.go 179;" m access:public ctype:CFG line:179 signature:(f io.Writer, fset *token.FileSet, addl func(n ast.Stmt) string)
PrintDomTreeDot programslicer/cfg/dom.go 356;" f access:public line:356 signature:(buf *bytes.Buffer, c *CFG, fset *token.FileSet)
PrintDot programslicer/cfg/cfg.go 145;" m access:public ctype:CFG line:145 signature:(f io.Writer, fset *token.FileSet, addl func(n ast.Stmt) string)
PrintErr dinvRT/test-asserts/diningPhilosophers/diningphilosopher.go 322;" f access:public line:322 signature:(err error)
PrintErr examples/diningPhil/diningphilosopher.go 279;" f access:public line:279 signature:(err error)
PrintErr examples/linear/client/client.go 66;" f access:public line:66 signature:(err error)
PrintErr examples/linear/client_orig/client.go 63;" f access:public line:63 signature:(err error)
PrintErr examples/linear/coeff/coeff.go 82;" f access:public line:82 signature:(err error)
PrintErr examples/linear/coeff_orig/coeff.go 82;" f access:public line:82 signature:(err error)
PrintErr examples/linear/comm/comm.go 12;" f access:public line:12 signature:(err error)
PrintErr examples/linear/linn/linn.go 59;" f access:public line:59 signature:(err error)
PrintErr examples/linear/linn_orig/linn.go 58;" f access:public line:58 signature:(err error)
PrintLattice logmerger/lattice.go 506;" f access:public line:506 signature:(lattice [][]vclock.VClock)
PrintMaps logmerger/lattice.go 361;" f access:public line:361 signature:(clocks map[string]map[uint64]map[string]uint64)
Prog programslicer/programBuilder.go 30;" w access:public ctype:ProgramWrapper line:30 type:*loader.Program
ProgramWrapper programslicer/programBuilder.go 29;" t access:public line:29 type:struct
Push logmerger/lattice.go 70;" m access:public ctype:LatticeWrapper line:70 signature:(layer []vclock.VClock)
Put examples/keyValue/server/kvservicemain.go 133;" m access:public ctype:KeyValService line:133 signature:(args *PutArgs, reply *ValReply) type:error
PutArgs examples/keyValue/client/kvclientmain.go 27;" t access:public line:27 type:struct
PutArgs examples/keyValue/server/kvservicemain.go 48;" t access:public line:48 type:struct
RTT_REQUEST dinvRT/assert.go 17;" c access:public line:17 type:messageType
RTT_RETURN dinvRT/assert.go 18;" c access:public line:18
RUNS dinvRT/profile/apiProfile.go 18;" c access:public line:18
RUNS dinvRT/test-asserts/sum/client/client.go 16;" c access:public line:16
RUNS examples/linear/client/client.go 15;" c access:public line:15
RUNS examples/linear/client_orig/client.go 13;" c access:public line:13
RUNS examples/sum/client/client.go 14;" c access:public line:14
ReachingDefs programslicer/dataflow/reaching.go 37;" f access:public line:37 signature:(cfg *cfg.CFG, info *loader.PackageInfo) type:map[ast.Stmt]map[ast.Stmt], map[ast.Stmt]map[ast.Stmt]
ReferencedVars programslicer/dataflow/dataflow.go 23;" f access:public line:23 signature:(stmts []ast.Stmt, info *loader.PackageInfo) type:map[*types.Var], map[*types.Var]
Refresh programslicer/programBuilder.go 157;" m access:public ctype:ProgramWrapper line:157 signature:() type:error
Release examples/raft/main.go 44;" m access:public ctype:fsmSnapshot line:44 signature:()
ReleaseStick dinvRT/test-asserts/diningPhilosophers/diningphilosopher.go 20;" c access:public line:20
ReleaseStick examples/diningPhil/diningphilosopher.go 17;" c access:public line:17
Report dinvRT/test-asserts/microbenchmark_tests/node.go 57;" t access:public line:57 type:struct
Report dinvRT/test-asserts/ricartagrawala/ricartagrawala.go 55;" t access:public line:55 type:struct
Report examples/ricartagrawala/ricartagrawala.go 53;" t access:public line:53 type:struct
ReportMatchesPlan dinvRT/test-asserts/microbenchmark_tests/node.go 65;" m access:public ctype:Report line:65 signature:(p Plan) type:bool
ReportMatchesPlan dinvRT/test-asserts/ricartagrawala/ricartagrawala.go 63;" m access:public ctype:Report line:63 signature:(p Plan) type:bool
ReportMatchesPlan examples/ricartagrawala/ricartagrawala.go 61;" m access:public ctype:Report line:61 signature:(p Plan) type:bool
Request examples/chainkv/c/client.go 12;" w access:public ctype:Cmessage line:12 type:string
Request examples/chainkv/c/node.go 27;" w access:public ctype:Message line:27 type:string
Request examples/chainkv/client.go 12;" w access:public ctype:Cmessage line:12 type:string
Request examples/chainkv/node.go 27;" w access:public ctype:Message line:27 type:string
Request examples/chainkv/t/client.go 12;" w access:public ctype:Cmessage line:12 type:string
Request examples/chainkv/t/node.go 27;" w access:public ctype:Message line:27 type:string
Request userstudy/cr2/client.go 12;" w access:public ctype:Cmessage line:12 type:string
Request userstudy/cr2/node.go 27;" w access:public ctype:Message line:27 type:string
Request userstudy/cv1/client.go 12;" w access:public ctype:Cmessage line:12 type:string
Request userstudy/cv1/node.go 27;" w access:public ctype:Message line:27 type:string
Request userstudy/cv3/client.go 12;" w access:public ctype:Cmessage line:12 type:string
Request userstudy/cv3/node.go 27;" w access:public ctype:Message line:27 type:string
Request userstudy/cv4/client.go 12;" w access:public ctype:Cmessage line:12 type:string
Request userstudy/cv4/node.go 27;" w access:public ctype:Message line:27 type:string
Request userstudy/cv5/c/client.go 12;" w access:public ctype:Cmessage line:12 type:string
Request userstudy/cv5/c/node.go 27;" w access:public ctype:Message line:27 type:string
Request userstudy/cv5/client.go 12;" w access:public ctype:Cmessage line:12 type:string
Request userstudy/cv5/node.go 27;" w access:public ctype:Message line:27 type:string
Request userstudy/cv5/t/client.go 12;" w access:public ctype:Cmessage line:12 type:string
Request userstudy/cv5/t/node.go 27;" w access:public ctype:Message line:27 type:string
Request userstudy/cv6/c/client.go 12;" w access:public ctype:Cmessage line:12 type:string
Request userstudy/cv6/c/node.go 27;" w access:public ctype:Message line:27 type:string
Request userstudy/cv6/client.go 12;" w access:public ctype:Cmessage line:12 type:string
Request userstudy/cv6/node.go 27;" w access:public ctype:Message line:27 type:string
Request userstudy/cv6/t/client.go 12;" w access:public ctype:Cmessage line:12 type:string
Request userstudy/cv6/t/node.go 27;" w access:public ctype:Message line:27 type:string
Request userstudy/cv7/c/client.go 12;" w access:public ctype:Cmessage line:12 type:string
Request userstudy/cv7/c/node.go 27;" w access:public ctype:Message line:27 type:string
Request userstudy/cv7/client.go 12;" w access:public ctype:Cmessage line:12 type:string
Request userstudy/cv7/node.go 27;" w access:public ctype:Message line:27 type:string
Request userstudy/cv7/t/client.go 12;" w access:public ctype:Cmessage line:12 type:string
Request userstudy/cv7/t/node.go 27;" w access:public ctype:Message line:27 type:string
Request userstudy/cv8/c/client.go 12;" w access:public ctype:Cmessage line:12 type:string
Request userstudy/cv8/c/node.go 27;" w access:public ctype:Message line:27 type:string
Request userstudy/cv8/client.go 12;" w access:public ctype:Cmessage line:12 type:string
Request userstudy/cv8/node.go 27;" w access:public ctype:Message line:27 type:string
Request userstudy/cv8/t/client.go 12;" w access:public ctype:Cmessage line:12 type:string
Request userstudy/cv8/t/node.go 27;" w access:public ctype:Message line:27 type:string
RequestStick dinvRT/test-asserts/diningPhilosophers/diningphilosopher.go 19;" c access:public line:19
RequestStick examples/diningPhil/diningphilosopher.go 16;" c access:public line:16
RequestTime dinvRT/test-asserts/microbenchmark_tests/node.go 26;" v access:public line:26 type:int
RequestTime dinvRT/test-asserts/ricartagrawala/ricartagrawala.go 25;" v access:public line:25 type:int
RequestTime examples/ricartagrawala/ricartagrawala.go 23;" v access:public line:23 type:int
RequestingNode dinvRT/assert.go 35;" w access:public ctype:_message line:35 type:string
Restore examples/raft/main.go 30;" m access:public ctype:fsm line:30 signature:(old io.ReadCloser) type:error
Result dinvRT/assert.go 38;" w access:public ctype:_message line:38 type:interface{}
RightChopstick dinvRT/test-asserts/diningPhilosophers/diningphilosopher.go 33;" v access:public line:33 type:bool
RightChopstick examples/diningPhil/diningphilosopher.go 30;" v access:public line:30 type:bool
RightChopstickState dinvRT/test-asserts/diningPhilosophers/diningphilosopher.go 65;" f access:public line:65 signature:()
RightChopstickState examples/diningPhil/diningphilosopher.go 59;" f access:public line:59 signature:()
Root programslicer/programslicer.go 36;" w access:public ctype:FuncNode line:36 type:ast.Stmt
Root programslicer/programslicer.go 52;" w access:public ctype:Task line:52 type:ast.Stmt
RoundNumber dinvRT/assert.go 36;" w access:public ctype:_message line:36 type:int
SERVERPORT examples/helloDinv/ClientServer.go 18;" c access:public line:18
SIZEOFINT dinvRT/test-asserts/diningPhilosophers/diningphilosopher.go 22;" c access:public line:22
SIZEOFINT examples/diningPhil/diningphilosopher.go 19;" c access:public line:19
SIZEOFINT examples/linear/client/client.go 63;" c access:public line:63
SIZEOFINT examples/linear/client_orig/client.go 60;" c access:public line:60
SIZEOFINT examples/linear/coeff/coeff.go 79;" c access:public line:79
SIZEOFINT examples/linear/coeff_orig/coeff.go 79;" c access:public line:79
SIZEOFINT examples/linear/comm/comm.go 9;" c access:public line:9
SIZEOFINT examples/linear/linn/linn.go 56;" c access:public line:56
SIZEOFINT examples/linear/linn_orig/linn.go 55;" c access:public line:55
SLEEP_MAX dinvRT/test-asserts/diningPhilosophers/diningphilosopher.go 25;" c access:public line:25
SLEEP_MAX examples/diningPhil/diningphilosopher.go 22;" c access:public line:22
START programslicer/programBuilder.go 272;" c access:public line:272
SYNC_REQUEST dinvRT/assert.go 23;" c access:public line:23
Sender dinvRT/test-asserts/microbenchmark_tests/node.go 44;" w access:public ctype:Message line:44 type:int
Sender dinvRT/test-asserts/ricartagrawala/ricartagrawala.go 42;" w access:public ctype:Message line:42 type:int
Sender examples/ricartagrawala/ricartagrawala.go 40;" w access:public ctype:Message line:40 type:int
Slice programslicer/programslicer.go 33;" w access:public ctype:FuncNode line:33 type:[]ast.Stmt
Snapshot examples/raft/main.go 25;" m access:public ctype:fsm line:25 signature:() type:raft.FSMSnapshot, error
Source programslicer/programBuilder.go 45;" w access:public ctype:SourceWrapper line:45 type:*ast.File
SourceWrapper programslicer/programBuilder.go 43;" t access:public line:43 type:struct
Sources programslicer/programBuilder.go 37;" w access:public ctype:PackageWrapper line:37 type:[]*SourceWrapper
Starved dinvRT/test-asserts/microbenchmark_tests/node.go 58;" w access:public ctype:Report line:58 type:bool
Starved dinvRT/test-asserts/ricartagrawala/ricartagrawala.go 56;" w access:public ctype:Report line:56 type:bool
Starved examples/ricartagrawala/ricartagrawala.go 54;" w access:public ctype:Report line:54 type:bool
State logmerger/state.go 19;" t access:public line:19 type:struct
Stmt programslicer/cfg/cfg.go 47;" w access:public ctype:Block line:47 type:ast.Stmt
Stmts programslicer/programBuilder.go 57;" w access:public ctype:CFGWrapper line:57 type:map[ast.Stmt]int
String dinvRT/test-asserts/microbenchmark_tests/node.go 47;" m access:public ctype:Message line:47 signature:() type:string
String dinvRT/test-asserts/ricartagrawala/ricartagrawala.go 45;" m access:public ctype:Message line:45 signature:() type:string
String examples/ricartagrawala/ricartagrawala.go 43;" m access:public ctype:Message line:43 signature:() type:string
String logmerger/cuts.go 272;" m access:public ctype:Cut line:272 signature:() type:string
String logmerger/lattice.go 50;" m access:public ctype:LatticeWrapper line:50 signature:() type:string
String logmerger/logs.go 336;" m access:public ctype:NameValuePair line:336 signature:() type:string
String logmerger/logs.go 374;" m access:public ctype:Point line:374 signature:() type:string
String logmerger/logs.go 395;" m access:public ctype:golog line:395 signature:() type:string
String logmerger/state.go 29;" m access:public ctype:State line:29 signature:() type:string
String programslicer/cfg/cfg.go 196;" m access:public ctype:CFG line:196 signature:(fset *token.FileSet, addl func(n ast.Stmt) string) type:string
String programslicer/cfg/dom.go 77;" m access:public ctype:Block line:77 signature:() type:string
SuccBs programslicer/cfg/cfg.go 51;" w access:public ctype:Block line:51 type:[]*Block
Succs programslicer/cfg/cfg.go 131;" m access:public ctype:CFG line:131 signature:(s ast.Stmt) type:[]ast.Stmt
Succs programslicer/cfg/cfg.go 49;" w access:public ctype:Block line:49 type:[]ast.Stmt
Swap dinvRT/api.go 411;" m access:public ctype:ByName line:411 signature:(i, j int)
Swap logmerger/logs.go 386;" m access:public ctype:ById line:386 signature:(i, j int)
Swap logmerger/logs.go 417;" m access:public ctype:golog line:417 signature:(i, j int)
Swap programslicer/cfg/dom.go 94;" m access:public ctype:byDomPreorder line:94 signature:(i, j int)
THREAD_BOOST logmerger/lattice.go 31;" c access:public line:31
TIME_REQUEST dinvRT/assert.go 21;" c access:public line:21
TIME_RETURN dinvRT/assert.go 22;" c access:public line:22
Tainted programslicer/programslicer.go 37;" w access:public ctype:FuncNode line:37 type:bool
Task programslicer/programslicer.go 51;" t access:public line:51 type:struct
Test2DLattice logmerger/lattice_test.go 9;" f access:public line:9 signature:(t *testing.T)
TestAllHostsManyCriticals examples/ricartagrawala/test/allhostsmanycriticals_test.go 28;" f access:public line:28 signature:(t *testing.T)
TestAllHostsManyCriticals examples/ricartagrawala/test/allhostsonecritical_test.go 27;" f access:public line:27 signature:(t *testing.T)
TestAllHostsManyCriticals examples/ricartagrawala/test/halfhostsmanycriticals_test.go 27;" f access:public line:27 signature:(t *testing.T)
TestAllHostsManyCriticals examples/ricartagrawala/test/halfhostsonecritical_test.go 27;" f access:public line:27 signature:(t *testing.T)
TestAllHostsManyCriticals examples/ricartagrawala/test/hoststartup_test.go 27;" f access:public line:27 signature:(t *testing.T)
TestAllHostsManyCriticals examples/ricartagrawala/test/onehostmanycritical_test.go 27;" f access:public line:27 signature:(t *testing.T)
TestAllHostsManyCriticals examples/ricartagrawala/test/onehostonecritical_test.go 27;" f access:public line:27 signature:(t *testing.T)
TestBackwardsIPCBasic programslicer/ddgip_test.go 52;" f access:public line:52 signature:(t *testing.T)
TestBackwardsIPCDontTouchCoo programslicer/ddgip_test.go 77;" f access:public line:77 signature:(t *testing.T)
TestCfg programslicer/cdg_test.go 41;" f access:public line:41 signature:(t *testing.T)
TestChain examples/chainkv/run/run_test.go 29;" f access:public line:29 signature:(t *testing.T)
TestChain userstudy/cr2/run/run_test.go 29;" f access:public line:29 signature:(t *testing.T)
TestChain userstudy/cv1/run/run_test.go 29;" f access:public line:29 signature:(t *testing.T)
TestChain userstudy/cv3/run/run_test.go 29;" f access:public line:29 signature:(t *testing.T)
TestChain userstudy/cv4/run/run_test.go 29;" f access:public line:29 signature:(t *testing.T)
TestChain userstudy/cv5/run/run_test.go 29;" f access:public line:29 signature:(t *testing.T)
TestChain userstudy/cv6/run/run_test.go 29;" f access:public line:29 signature:(t *testing.T)
TestChain userstudy/cv7/run/run_test.go 29;" f access:public line:29 signature:(t *testing.T)
TestChain userstudy/cv8/run/run_test.go 29;" f access:public line:29 signature:(t *testing.T)
TestClockConstruction logmerger/utils_test.go 8;" f access:public line:8 signature:(t *testing.T)
TestCopy instrumenter/dirCopy_test.go 8;" f access:public line:8 signature:(t *testing.T)
TestCopy instrumenter/dontTest/dirCopy_test.go 8;" f access:public line:8 signature:(t *testing.T)
TestDDG programslicer/ddg_test.go 41;" f access:public line:41 signature:(t *testing.T)
TestForwardIPC programslicer/ddgip_test.go 22;" f access:public line:22 signature:(t *testing.T)
TestGetClockIds logmerger/utils_test.go 17;" f access:public line:17 signature:(t *testing.T)
TestLattice logmerger/cuts_test.go 7;" f access:public line:7 signature:(t *testing.T)
TestLattice logmerger/noTest/cuts_test.go 7;" f access:public line:7 signature:(t *testing.T)
TestLoad instrumenter/dontTest/loader_test.go 5;" f access:public line:5 signature:(t *testing.T)
TestMain examples/chainkv/run/run_test.go 18;" f access:public line:18 signature:(m *testing.M)
TestMain examples/ricartagrawala/test/allhostsmanycriticals_test.go 16;" f access:public line:16 signature:(m *testing.M)
TestMain examples/ricartagrawala/test/allhostsonecritical_test.go 16;" f access:public line:16 signature:(m *testing.M)
TestMain examples/ricartagrawala/test/halfhostsmanycriticals_test.go 16;" f access:public line:16 signature:(m *testing.M)
TestMain examples/ricartagrawala/test/halfhostsonecritical_test.go 16;" f access:public line:16 signature:(m *testing.M)
TestMain examples/ricartagrawala/test/hoststartup_test.go 16;" f access:public line:16 signature:(m *testing.M)
TestMain examples/ricartagrawala/test/onehostmanycritical_test.go 16;" f access:public line:16 signature:(m *testing.M)
TestMain examples/ricartagrawala/test/onehostonecritical_test.go 16;" f access:public line:16 signature:(m *testing.M)
TestMain userstudy/cr2/run/run_test.go 18;" f access:public line:18 signature:(m *testing.M)
TestMain userstudy/cv1/run/run_test.go 18;" f access:public line:18 signature:(m *testing.M)
TestMain userstudy/cv3/run/run_test.go 18;" f access:public line:18 signature:(m *testing.M)
TestMain userstudy/cv4/run/run_test.go 18;" f access:public line:18 signature:(m *testing.M)
TestMain userstudy/cv5/run/run_test.go 18;" f access:public line:18 signature:(m *testing.M)
TestMain userstudy/cv6/run/run_test.go 18;" f access:public line:18 signature:(m *testing.M)
TestMain userstudy/cv7/run/run_test.go 18;" f access:public line:18 signature:(m *testing.M)
TestMain userstudy/cv8/run/run_test.go 18;" f access:public line:18 signature:(m *testing.M)
TestParse logmerger/clockParse_test.go 26;" f access:public line:26 signature:(t *testing.T)
TestScopeFor instrumenter/dontTest/for_test.go 39;" f access:public line:39 signature:(t *testing.T)
TestScopeFor instrumenter/for_test.go 35;" f access:public line:35 signature:(t *testing.T)
TestSet examples/keyValue/server/kvservicemain.go 152;" m access:public ctype:KeyValService line:152 signature:(args *TestSetArgs, reply *ValReply) type:error
TestSetArgs examples/keyValue/client/kvclientmain.go 33;" t access:public line:33 type:struct
TestSetArgs examples/keyValue/server/kvservicemain.go 54;" t access:public line:54 type:struct
TestStructUnwrap instrumenter/struct_test.go 39;" f access:public line:39 signature:(t *testing.T)
TestVal examples/keyValue/client/kvclientmain.go 35;" w access:public ctype:TestSetArgs line:35 type:string
TestVal examples/keyValue/server/kvservicemain.go 56;" w access:public ctype:TestSetArgs line:56 type:string
TestVars instrumenter/dontTest/affectged_vars_test.go 184;" f access:public line:184 signature:(t *testing.T)
TestVars instrumenter/dontTest/vars_test.go 22;" f access:public line:22 signature:(t *testing.T)
Text programslicer/programBuilder.go 47;" w access:public ctype:SourceWrapper line:47 type:string
Thinking dinvRT/test-asserts/diningPhilosophers/diningphilosopher.go 31;" v access:public line:31 type:bool
Thinking examples/diningPhil/diningphilosopher.go 28;" v access:public line:28 type:bool
ThinkingState dinvRT/test-asserts/diningPhilosophers/diningphilosopher.go 48;" f access:public line:48 signature:()
ThinkingState examples/diningPhil/diningphilosopher.go 44;" f access:public line:44 signature:()
ThreadCount logmerger/logmerger.go 494;" f access:public line:494 signature:(size int) type:int
TotalOrdering logmerger/state.go 22;" w access:public ctype:State line:22 type:[][]int
Track dinvRT/api.go 75;" f access:public line:75 signature:(did, names string, values )
Type logmerger/logs.go 332;" w access:public ctype:NameValuePair line:332 type:string
Unavailable examples/chainkv/c/client.go 15;" w access:public ctype:Cmessage line:15 type:int
Unavailable examples/chainkv/c/node.go 23;" w access:public ctype:KeyValInfo line:23 type:bool
Unavailable examples/chainkv/c/node.go 30;" w access:public ctype:Message line:30 type:int
Unavailable examples/chainkv/client.go 15;" w access:public ctype:Cmessage line:15 type:int
Unavailable examples/chainkv/node.go 23;" w access:public ctype:KeyValInfo line:23 type:bool
Unavailable examples/chainkv/node.go 30;" w access:public ctype:Message line:30 type:int
Unavailable examples/chainkv/t/client.go 15;" w access:public ctype:Cmessage line:15 type:int
Unavailable examples/chainkv/t/node.go 23;" w access:public ctype:KeyValInfo line:23 type:bool
Unavailable examples/chainkv/t/node.go 30;" w access:public ctype:Message line:30 type:int
Unavailable userstudy/cr2/client.go 15;" w access:public ctype:Cmessage line:15 type:int
Unavailable userstudy/cr2/node.go 23;" w access:public ctype:KeyValInfo line:23 type:bool
Unavailable userstudy/cr2/node.go 30;" w access:public ctype:Message line:30 type:int
Unavailable userstudy/cv1/client.go 15;" w access:public ctype:Cmessage line:15 type:int
Unavailable userstudy/cv1/node.go 23;" w access:public ctype:KeyValInfo line:23 type:bool
Unavailable userstudy/cv1/node.go 30;" w access:public ctype:Message line:30 type:int
Unavailable userstudy/cv3/client.go 15;" w access:public ctype:Cmessage line:15 type:int
Unavailable userstudy/cv3/node.go 23;" w access:public ctype:KeyValInfo line:23 type:bool
Unavailable userstudy/cv3/node.go 30;" w access:public ctype:Message line:30 type:int
Unavailable userstudy/cv4/client.go 15;" w access:public ctype:Cmessage line:15 type:int
Unavailable userstudy/cv4/node.go 23;" w access:public ctype:KeyValInfo line:23 type:bool
Unavailable userstudy/cv4/node.go 30;" w access:public ctype:Message line:30 type:int
Unavailable userstudy/cv5/c/client.go 15;" w access:public ctype:Cmessage line:15 type:int
Unavailable userstudy/cv5/c/node.go 23;" w access:public ctype:KeyValInfo line:23 type:bool
Unavailable userstudy/cv5/c/node.go 30;" w access:public ctype:Message line:30 type:int
Unavailable userstudy/cv5/client.go 15;" w access:public ctype:Cmessage line:15 type:int
Unavailable userstudy/cv5/node.go 23;" w access:public ctype:KeyValInfo line:23 type:bool
Unavailable userstudy/cv5/node.go 30;" w access:public ctype:Message line:30 type:int
Unavailable userstudy/cv5/t/client.go 15;" w access:public ctype:Cmessage line:15 type:int
Unavailable userstudy/cv5/t/node.go 23;" w access:public ctype:KeyValInfo line:23 type:bool
Unavailable userstudy/cv5/t/node.go 30;" w access:public ctype:Message line:30 type:int
Unavailable userstudy/cv6/c/client.go 15;" w access:public ctype:Cmessage line:15 type:int
Unavailable userstudy/cv6/c/node.go 23;" w access:public ctype:KeyValInfo line:23 type:bool
Unavailable userstudy/cv6/c/node.go 30;" w access:public ctype:Message line:30 type:int
Unavailable userstudy/cv6/client.go 15;" w access:public ctype:Cmessage line:15 type:int
Unavailable userstudy/cv6/node.go 23;" w access:public ctype:KeyValInfo line:23 type:bool
Unavailable userstudy/cv6/node.go 30;" w access:public ctype:Message line:30 type:int
Unavailable userstudy/cv6/t/client.go 15;" w access:public ctype:Cmessage line:15 type:int
Unavailable userstudy/cv6/t/node.go 23;" w access:public ctype:KeyValInfo line:23 type:bool
Unavailable userstudy/cv6/t/node.go 30;" w access:public ctype:Message line:30 type:int
Unavailable userstudy/cv7/c/client.go 15;" w access:public ctype:Cmessage line:15 type:int
Unavailable userstudy/cv7/c/node.go 23;" w access:public ctype:KeyValInfo line:23 type:bool
Unavailable userstudy/cv7/c/node.go 30;" w access:public ctype:Message line:30 type:int
Unavailable userstudy/cv7/client.go 15;" w access:public ctype:Cmessage line:15 type:int
Unavailable userstudy/cv7/node.go 23;" w access:public ctype:KeyValInfo line:23 type:bool
Unavailable userstudy/cv7/node.go 30;" w access:public ctype:Message line:30 type:int
Unavailable userstudy/cv7/t/client.go 15;" w access:public ctype:Cmessage line:15 type:int
Unavailable userstudy/cv7/t/node.go 23;" w access:public ctype:KeyValInfo line:23 type:bool
Unavailable userstudy/cv7/t/node.go 30;" w access:public ctype:Message line:30 type:int
Unavailable userstudy/cv8/c/client.go 15;" w access:public ctype:Cmessage line:15 type:int
Unavailable userstudy/cv8/c/node.go 23;" w access:public ctype:KeyValInfo line:23 type:bool
Unavailable userstudy/cv8/c/node.go 30;" w access:public ctype:Message line:30 type:int
Unavailable userstudy/cv8/client.go 15;" w access:public ctype:Cmessage line:15 type:int
Unavailable userstudy/cv8/node.go 23;" w access:public ctype:KeyValInfo line:23 type:bool
Unavailable userstudy/cv8/node.go 30;" w access:public ctype:Message line:30 type:int
Unavailable userstudy/cv8/t/client.go 15;" w access:public ctype:Cmessage line:15 type:int
Unavailable userstudy/cv8/t/node.go 23;" w access:public ctype:KeyValInfo line:23 type:bool
Unavailable userstudy/cv8/t/node.go 30;" w access:public ctype:Message line:30 type:int
UnmarshallInts dinvRT/test-asserts/diningPhilosophers/diningphilosopher.go 311;" f access:public line:311 signature:(args []byte) type:[]int
UnmarshallInts examples/diningPhil/diningphilosopher.go 268;" f access:public line:268 signature:(args []byte) type:[]int
UnmarshallInts examples/linear/client/client.go 84;" f access:public line:84 signature:(args [1024]byte) type:[]int
UnmarshallInts examples/linear/client_orig/client.go 81;" f access:public line:81 signature:(args [1024]byte) type:[]int
UnmarshallInts examples/linear/coeff/coeff.go 100;" f access:public line:100 signature:(args [1024]byte) type:[]int
UnmarshallInts examples/linear/coeff_orig/coeff.go 100;" f access:public line:100 signature:(args [1024]byte) type:[]int
UnmarshallInts examples/linear/comm/comm.go 30;" f access:public line:30 signature:(args [1024]byte) type:[]int
UnmarshallInts examples/linear/linn/linn.go 77;" f access:public line:77 signature:(args [1024]byte) type:[]int
UnmarshallInts examples/linear/linn_orig/linn.go 76;" f access:public line:76 signature:(args [1024]byte) type:[]int
Unpack dinvRT/api.go 230;" f access:public line:230 signature:(msg []byte, pack interface{})
UnpackM dinvRT/api.go 241;" f access:public line:241 signature:(msg []byte, pack interface{}, log string)
Val examples/chainkv/c/client.go 14;" w access:public ctype:Cmessage line:14 type:string
Val examples/chainkv/c/node.go 22;" w access:public ctype:KeyValInfo line:22 type:string
Val examples/chainkv/c/node.go 29;" w access:public ctype:Message line:29 type:string
Val examples/chainkv/client.go 14;" w access:public ctype:Cmessage line:14 type:string
Val examples/chainkv/node.go 22;" w access:public ctype:KeyValInfo line:22 type:string
Val examples/chainkv/node.go 29;" w access:public ctype:Message line:29 type:string
Val examples/chainkv/t/client.go 14;" w access:public ctype:Cmessage line:14 type:string
Val examples/chainkv/t/node.go 22;" w access:public ctype:KeyValInfo line:22 type:string
Val examples/chainkv/t/node.go 29;" w access:public ctype:Message line:29 type:string
Val examples/keyValue/client/kvclientmain.go 29;" w access:public ctype:PutArgs line:29 type:string
Val examples/keyValue/client/kvclientmain.go 41;" w access:public ctype:ValReply line:41 type:string
Val examples/keyValue/server/kvservicemain.go 50;" w access:public ctype:PutArgs line:50 type:string
Val examples/keyValue/server/kvservicemain.go 62;" w access:public ctype:ValReply line:62 type:string
Val userstudy/cr2/client.go 14;" w access:public ctype:Cmessage line:14 type:string
Val userstudy/cr2/node.go 22;" w access:public ctype:KeyValInfo line:22 type:string
Val userstudy/cr2/node.go 29;" w access:public ctype:Message line:29 type:string
Val userstudy/cv1/client.go 14;" w access:public ctype:Cmessage line:14 type:string
Val userstudy/cv1/node.go 22;" w access:public ctype:KeyValInfo line:22 type:string
Val userstudy/cv1/node.go 29;" w access:public ctype:Message line:29 type:string
Val userstudy/cv3/client.go 14;" w access:public ctype:Cmessage line:14 type:string
Val userstudy/cv3/node.go 22;" w access:public ctype:KeyValInfo line:22 type:string
Val userstudy/cv3/node.go 29;" w access:public ctype:Message line:29 type:string
Val userstudy/cv4/client.go 14;" w access:public ctype:Cmessage line:14 type:string
Val userstudy/cv4/node.go 22;" w access:public ctype:KeyValInfo line:22 type:string
Val userstudy/cv4/node.go 29;" w access:public ctype:Message line:29 type:string
Val userstudy/cv5/c/client.go 14;" w access:public ctype:Cmessage line:14 type:string
Val userstudy/cv5/c/node.go 22;" w access:public ctype:KeyValInfo line:22 type:string
Val userstudy/cv5/c/node.go 29;" w access:public ctype:Message line:29 type:string
Val userstudy/cv5/client.go 14;" w access:public ctype:Cmessage line:14 type:string
Val userstudy/cv5/node.go 22;" w access:public ctype:KeyValInfo line:22 type:string
Val userstudy/cv5/node.go 29;" w access:public ctype:Message line:29 type:string
Val userstudy/cv5/t/client.go 14;" w access:public ctype:Cmessage line:14 type:string
Val userstudy/cv5/t/node.go 22;" w access:public ctype:KeyValInfo line:22 type:string
Val userstudy/cv5/t/node.go 29;" w access:public ctype:Message line:29 type:string
Val userstudy/cv6/c/client.go 14;" w access:public ctype:Cmessage line:14 type:string
Val userstudy/cv6/c/node.go 22;" w access:public ctype:KeyValInfo line:22 type:string
Val userstudy/cv6/c/node.go 29;" w access:public ctype:Message line:29 type:string
Val userstudy/cv6/client.go 14;" w access:public ctype:Cmessage line:14 type:string
Val userstudy/cv6/node.go 22;" w access:public ctype:KeyValInfo line:22 type:string
Val userstudy/cv6/node.go 29;" w access:public ctype:Message line:29 type:string
Val userstudy/cv6/t/client.go 14;" w access:public ctype:Cmessage line:14 type:string
Val userstudy/cv6/t/node.go 22;" w access:public ctype:KeyValInfo line:22 type:string
Val userstudy/cv6/t/node.go 29;" w access:public ctype:Message line:29 type:string
Val userstudy/cv7/c/client.go 14;" w access:public ctype:Cmessage line:14 type:string
Val userstudy/cv7/c/node.go 22;" w access:public ctype:KeyValInfo line:22 type:string
Val userstudy/cv7/c/node.go 29;" w access:public ctype:Message line:29 type:string
Val userstudy/cv7/client.go 14;" w access:public ctype:Cmessage line:14 type:string
Val userstudy/cv7/node.go 22;" w access:public ctype:KeyValInfo line:22 type:string
Val userstudy/cv7/node.go 29;" w access:public ctype:Message line:29 type:string
Val userstudy/cv7/t/client.go 14;" w access:public ctype:Cmessage line:14 type:string
Val userstudy/cv7/t/node.go 22;" w access:public ctype:KeyValInfo line:22 type:string
Val userstudy/cv7/t/node.go 29;" w access:public ctype:Message line:29 type:string
Val userstudy/cv8/c/client.go 14;" w access:public ctype:Cmessage line:14 type:string
Val userstudy/cv8/c/node.go 22;" w access:public ctype:KeyValInfo line:22 type:string
Val userstudy/cv8/c/node.go 29;" w access:public ctype:Message line:29 type:string
Val userstudy/cv8/client.go 14;" w access:public ctype:Cmessage line:14 type:string
Val userstudy/cv8/node.go 22;" w access:public ctype:KeyValInfo line:22 type:string
Val userstudy/cv8/node.go 29;" w access:public ctype:Message line:29 type:string
Val userstudy/cv8/t/client.go 14;" w access:public ctype:Cmessage line:14 type:string
Val userstudy/cv8/t/node.go 22;" w access:public ctype:KeyValInfo line:22 type:string
Val userstudy/cv8/t/node.go 29;" w access:public ctype:Message line:29 type:string
ValReply examples/keyValue/client/kvclientmain.go 40;" t access:public line:40 type:struct
ValReply examples/keyValue/server/kvservicemain.go 61;" t access:public line:61 type:struct
Value logmerger/logs.go 331;" w access:public ctype:NameValuePair line:331 type:interface{}
VarName logmerger/logs.go 330;" w access:public ctype:NameValuePair line:330 type:string
VectorClock logmerger/logs.go 367;" w access:public ctype:Point line:367 type:[]byte
VectorClockArraysFromGoVectorLogs logmerger/utils.go 45;" f access:public line:45 signature:(clockLogs []*golog) type:[][]vclock.VClock, error
VectorClockArraysFromLogs logmerger/utils.go 28;" f access:public line:28 signature:(logs [][]Point) type:[][]vclock.VClock, error
WriteShiVizLog logmerger/logmerger.go 528;" f access:public line:528 signature:(pointLog [][]Point, goLogs []*golog)
WriteShiVizLogFast logmerger/logmerger.go 512;" f access:public line:512 signature:(pointLog [][]Point, goLogs []*golog)
_message dinvRT/assert.go 33;" t access:private line:33 type:struct
a dinvRT/test-asserts/sum/server/server.go 15;" v access:private line:15 type:int64
addBaseLog logmerger/logs.go 106;" f access:private line:106 signature:(name string, log []Point) type:[]Point
addImports instrumenter/instrumenter.go 602;" f access:private line:602 signature:(fset *token.FileSet, file *ast.File)
addSucc programslicer/cfg/cfg.go 261;" m access:private ctype:builder line:261 signature:(current ast.Stmt)
addr dinvRT/test-asserts/sum/server/server.go 13;" c access:private line:13
addr examples/sum/server/server.go 11;" c access:private line:11
address dinvRT/assert.go 43;" v access:private line:43 type:string
alive examples/serialize/server/server.go 13;" v access:private line:13 type:chan bool
ancestor programslicer/cfg/dom.go 121;" w access:private ctype:ltState line:121 type:[]*Block
appendNoDuplicates programslicer/cfg/cfg.go 271;" f access:private line:271 signature:(list []ast.Stmt, Stmt ast.Stmt) type:[]ast.Stmt
appendOrdering logmerger/cuts.go 149;" f access:private line:149 signature:(ordering [][]int, ordered []bool, hostIndex int)
assertRightChopstick dinvRT/test-asserts/diningPhilosophers/diningphilosopher.go 72;" f access:private line:72 signature:(values map[string]map[string]interface{}) type:bool
assertValue dinvRT/test-asserts/microbenchmark_tests/node.go 78;" f access:private line:78 signature:(values map[string]map[string]interface{}) type:bool
assertValue dinvRT/test-asserts/ricartagrawala/ricartagrawala.go 77;" f access:private line:77 signature:(values map[string]map[string]interface{}) type:bool
assertValue dinvRT/test-asserts/sum/client/client.go 27;" f access:private line:27 signature:(values map[string]map[string]interface{}) type:bool
assertableDictionary dinvRT/assert.go 46;" v access:private line:46 type:map[string]interface{}
assertableFunctions dinvRT/assert.go 47;" v access:private line:47 type:map[string]func(interface{}) interface{}
assertionFunction dinvRT/assert.go 29;" t access:private line:29 type:func(map[string]map[string]interface{}) bool
astCommentFile instrumenter/dontTest/affectged_vars_test.go 176;" v access:private line:176 type:*ast.File
astCommentFile instrumenter/dontTest/vars_test.go 15;" v access:private line:15 type:*ast.File
b dinvRT/profile/apiProfile.go 14;" v access:private line:14 type:bool
b dinvRT/test-asserts/sum/server/server.go 16;" v access:private line:16 type:int64
benchmarkFile dinvRT/test-asserts/microbenchmark_tests/node.go 38;" v access:private line:38 type:*os.File
bitbucket.org/bestchai/dinv/dinvRT dinvRT/profile/apiProfile.go 4;" i line:4
bitbucket.org/bestchai/dinv/dinvRT dinvRT/test-asserts/diningPhilosophers/diningphilosopher.go 4;" i line:4
bitbucket.org/bestchai/dinv/dinvRT dinvRT/test-asserts/microbenchmark_tests/node.go 4;" i line:4
bitbucket.org/bestchai/dinv/dinvRT dinvRT/test-asserts/ricartagrawala/ricartagrawala.go 4;" i line:4
bitbucket.org/bestchai/dinv/dinvRT dinvRT/test-asserts/sum/client/client.go 4;" i line:4
bitbucket.org/bestchai/dinv/dinvRT dinvRT/test-asserts/sum/server/server.go 4;" i line:4
bitbucket.org/bestchai/dinv/dinvRT examples/diningPhil/diningphilosopher.go 4;" i line:4
bitbucket.org/bestchai/dinv/dinvRT examples/helloDinv/ClientServer.go 4;" i line:4
bitbucket.org/bestchai/dinv/dinvRT examples/linear/client/client.go 6;" i line:6
bitbucket.org/bestchai/dinv/dinvRT examples/linear/coeff/coeff.go 6;" i line:6
bitbucket.org/bestchai/dinv/dinvRT examples/linear/linn/linn.go 6;" i line:6
bitbucket.org/bestchai/dinv/dinvRT examples/ricartagrawala/ricartagrawala.go 4;" i line:4
bitbucket.org/bestchai/dinv/dinvRT examples/ring/node.go 4;" i line:4
bitbucket.org/bestchai/dinv/examples/chainkv examples/chainkv/run/run_test.go 4;" i line:4
bitbucket.org/bestchai/dinv/examples/chainkv userstudy/cr2/run/run_test.go 7;" i line:7
bitbucket.org/bestchai/dinv/examples/chainkv userstudy/cv1/run/run_test.go 7;" i line:7
bitbucket.org/bestchai/dinv/examples/chainkv userstudy/cv3/run/run_test.go 7;" i line:7
bitbucket.org/bestchai/dinv/examples/chainkv userstudy/cv4/run/run_test.go 7;" i line:7
bitbucket.org/bestchai/dinv/examples/chainkv userstudy/cv5/run/run_test.go 7;" i line:7
bitbucket.org/bestchai/dinv/examples/chainkv userstudy/cv6/run/run_test.go 7;" i line:7
bitbucket.org/bestchai/dinv/examples/chainkv userstudy/cv7/run/run_test.go 7;" i line:7
bitbucket.org/bestchai/dinv/examples/chainkv userstudy/cv8/run/run_test.go 7;" i line:7
bitbucket.org/bestchai/dinv/examples/ricartagrawala examples/ricartagrawala/test/allhostsmanycriticals_test.go 4;" i line:4
bitbucket.org/bestchai/dinv/examples/ricartagrawala examples/ricartagrawala/test/allhostsonecritical_test.go 4;" i line:4
bitbucket.org/bestchai/dinv/examples/ricartagrawala examples/ricartagrawala/test/halfhostsmanycriticals_test.go 4;" i line:4
bitbucket.org/bestchai/dinv/examples/ricartagrawala examples/ricartagrawala/test/halfhostsonecritical_test.go 4;" i line:4
bitbucket.org/bestchai/dinv/examples/ricartagrawala examples/ricartagrawala/test/hoststartup_test.go 4;" i line:4
bitbucket.org/bestchai/dinv/examples/ricartagrawala examples/ricartagrawala/test/onehostmanycritical_test.go 4;" i line:4
bitbucket.org/bestchai/dinv/examples/ricartagrawala examples/ricartagrawala/test/onehostonecritical_test.go 4;" i line:4
bitbucket.org/bestchai/dinv/instrumenter dinv.go 14;" i line:14
bitbucket.org/bestchai/dinv/instrumenter examples/chainkv/c/client.go 4;" i line:4
bitbucket.org/bestchai/dinv/instrumenter examples/chainkv/c/node.go 12;" i line:12
bitbucket.org/bestchai/dinv/instrumenter examples/chainkv/client.go 4;" i line:4
bitbucket.org/bestchai/dinv/instrumenter examples/chainkv/node.go 12;" i line:12
bitbucket.org/bestchai/dinv/instrumenter examples/chainkv/t/client.go 4;" i line:4
bitbucket.org/bestchai/dinv/instrumenter examples/chainkv/t/node.go 12;" i line:12
bitbucket.org/bestchai/dinv/instrumenter examples/helloMutant/client/client.go 8;" i line:8
bitbucket.org/bestchai/dinv/instrumenter examples/helloMutant/server/server.go 8;" i line:8
bitbucket.org/bestchai/dinv/instrumenter examples/serialize/client/client.go 9;" i line:9
bitbucket.org/bestchai/dinv/instrumenter examples/serialize/server/server.go 8;" i line:8
bitbucket.org/bestchai/dinv/instrumenter userstudy/cr2/client.go 8;" i line:8
bitbucket.org/bestchai/dinv/instrumenter userstudy/cr2/node.go 12;" i line:12
bitbucket.org/bestchai/dinv/instrumenter userstudy/cv1/client.go 8;" i line:8
bitbucket.org/bestchai/dinv/instrumenter userstudy/cv1/node.go 12;" i line:12
bitbucket.org/bestchai/dinv/instrumenter userstudy/cv3/client.go 8;" i line:8
bitbucket.org/bestchai/dinv/instrumenter userstudy/cv3/node.go 12;" i line:12
bitbucket.org/bestchai/dinv/instrumenter userstudy/cv4/client.go 8;" i line:8
bitbucket.org/bestchai/dinv/instrumenter userstudy/cv4/node.go 12;" i line:12
bitbucket.org/bestchai/dinv/instrumenter userstudy/cv5/c/client.go 8;" i line:8
bitbucket.org/bestchai/dinv/instrumenter userstudy/cv5/c/node.go 12;" i line:12
bitbucket.org/bestchai/dinv/instrumenter userstudy/cv5/client.go 8;" i line:8
bitbucket.org/bestchai/dinv/instrumenter userstudy/cv5/node.go 12;" i line:12
bitbucket.org/bestchai/dinv/instrumenter userstudy/cv5/t/client.go 8;" i line:8
bitbucket.org/bestchai/dinv/instrumenter userstudy/cv5/t/node.go 12;" i line:12
bitbucket.org/bestchai/dinv/instrumenter userstudy/cv6/c/client.go 8;" i line:8
bitbucket.org/bestchai/dinv/instrumenter userstudy/cv6/c/node.go 12;" i line:12
bitbucket.org/bestchai/dinv/instrumenter userstudy/cv6/client.go 8;" i line:8
bitbucket.org/bestchai/dinv/instrumenter userstudy/cv6/node.go 12;" i line:12
bitbucket.org/bestchai/dinv/instrumenter userstudy/cv6/t/client.go 8;" i line:8
bitbucket.org/bestchai/dinv/instrumenter userstudy/cv6/t/node.go 12;" i line:12
bitbucket.org/bestchai/dinv/instrumenter userstudy/cv7/c/client.go 8;" i line:8
bitbucket.org/bestchai/dinv/instrumenter userstudy/cv7/c/node.go 12;" i line:12
bitbucket.org/bestchai/dinv/instrumenter userstudy/cv7/client.go 8;" i line:8
bitbucket.org/bestchai/dinv/instrumenter userstudy/cv7/node.go 12;" i line:12
bitbucket.org/bestchai/dinv/instrumenter userstudy/cv7/t/client.go 8;" i line:8
bitbucket.org/bestchai/dinv/instrumenter userstudy/cv7/t/node.go 12;" i line:12
bitbucket.org/bestchai/dinv/instrumenter userstudy/cv8/c/client.go 8;" i line:8
bitbucket.org/bestchai/dinv/instrumenter userstudy/cv8/c/node.go 12;" i line:12
bitbucket.org/bestchai/dinv/instrumenter userstudy/cv8/client.go 8;" i line:8
bitbucket.org/bestchai/dinv/instrumenter userstudy/cv8/node.go 12;" i line:12
bitbucket.org/bestchai/dinv/instrumenter userstudy/cv8/t/client.go 8;" i line:8
bitbucket.org/bestchai/dinv/instrumenter userstudy/cv8/t/node.go 12;" i line:12
bitbucket.org/bestchai/dinv/logmerger dinv.go 15;" i line:15
bitbucket.org/bestchai/dinv/logmerger dinvRT/api.go 14;" i line:14
bitbucket.org/bestchai/dinv/programslicer instrumenter/instrumenter.go 25;" i line:25
bitbucket.org/bestchai/dinv/programslicer/cfg programslicer/cdg_test.go 8;" i line:8
bitbucket.org/bestchai/dinv/programslicer/cfg programslicer/dataflow/reaching.go 10;" i line:10
bitbucket.org/bestchai/dinv/programslicer/cfg programslicer/ddg_test.go 10;" i line:10
bitbucket.org/bestchai/dinv/programslicer/cfg programslicer/programBuilder.go 20;" i line:20
bitbucket.org/bestchai/dinv/programslicer/cfg programslicer/programslicer.go 10;" i line:10
bitbucket.org/bestchai/dinv/programslicer/dataflow programslicer/ddg_test.go 11;" i line:11
bitbucket.org/bestchai/dinv/programslicer/dataflow programslicer/ddgip_test.go 5;" i line:5
bitbucket.org/bestchai/dinv/programslicer/dataflow programslicer/programBuilder.go 21;" i line:21
bitbucket.org/bestchai/dinv/programslicer/dataflow programslicer/programslicer.go 11;" i line:11
bitbucket.org/wantonsolutions/dovid/detect examples/keyValue/client/kvclientmain.go 15;" i line:15
bitbucket.org/wantonsolutions/dovid/detect examples/keyValue/server/kvservicemain.go 30;" i line:30
boolean dinvRT/api_test.go 8;" v access:private line:8 type:bool
branches programslicer/cfg/cfg.go 231;" w access:private ctype:builder line:231 type:[]*ast.BranchStmt
broadcast dinvRT/test-asserts/microbenchmark_tests/node.go 343;" f access:private line:343 signature:(msg string)
broadcast dinvRT/test-asserts/ricartagrawala/ricartagrawala.go 326;" f access:private line:326 signature:(msg string)
broadcast examples/ricartagrawala/ricartagrawala.go 294;" f access:private line:294 signature:(msg string)
broadcastMessage dinvRT/assert.go 87;" f access:private line:87 signature:(payload _message, logMessage string)
bucketFiles daikonWrapper/daikonWrapper.go 65;" f access:private line:65 signature:()
bufio logmerger/logs.go 8;" i line:8
bufio programslicer/programBuilder.go 10;" i line:10
build programslicer/cfg/cfg.go 246;" m access:private ctype:builder line:246 signature:(s []ast.Stmt) type:*CFG
buildBlock programslicer/cfg/cfg.go 548;" m access:private ctype:builder line:548 signature:(Block []ast.Stmt)
buildBranch programslicer/cfg/cfg.go 328;" m access:private ctype:builder line:328 signature:(br *ast.BranchStmt)
buildIf programslicer/cfg/cfg.go 343;" m access:private ctype:builder line:343 signature:(f *ast.IfStmt)
buildLogs logmerger/logmerger.go 203;" f access:private line:203 signature:(logFiles []string, gologFiles []string) type:[][]Point, []*golog
buildLoop programslicer/cfg/cfg.go 374;" m access:private ctype:builder line:374 signature:(Stmt ast.Stmt)
buildStmt programslicer/cfg/cfg.go 294;" m access:private ctype:builder line:294 signature:(cur ast.Stmt)
buildSwitch programslicer/cfg/cfg.go 427;" m access:private ctype:builder line:427 signature:(sw ast.Stmt)
builder programslicer/cfg/cfg.go 228;" t access:private line:228 type:struct
byDomPreorder programslicer/cfg/dom.go 91;" t access:private line:91 type:[]*Block
bytes daikonWrapper/daikonWrapper.go 4;" i line:4
bytes dinv.go 6;" i line:6
bytes dinvRT/api.go 4;" i line:4
bytes dinvRT/test-asserts/microbenchmark_tests/node.go 5;" i line:5
bytes dinvRT/test-asserts/ricartagrawala/ricartagrawala.go 5;" i line:5
bytes examples/ricartagrawala/ricartagrawala.go 5;" i line:5
bytes instrumenter/instrumenter.go 12;" i line:12
bytes logmerger/lattice.go 19;" i line:19
bytes programslicer/cdg_test.go 10;" i line:10
bytes programslicer/cfg/dom.go 21;" i line:21
bytes programslicer/ddg_test.go 5;" i line:5
bytes programslicer/ddgip_test.go 6;" i line:6
bytes programslicer/programBuilder.go 11;" i line:11
bytes programslicer/programslicer.go 5;" i line:5
cLog examples/chainkv/c/client.go 75;" f access:private line:75 signature:(message string)
cLog examples/chainkv/client.go 78;" f access:private line:78 signature:(message string)
cLog examples/chainkv/t/client.go 83;" f access:private line:83 signature:(message string)
cLog userstudy/cr2/client.go 82;" f access:private line:82 signature:(message string)
cLog userstudy/cv1/client.go 88;" f access:private line:88 signature:(message string)
cLog userstudy/cv3/client.go 86;" f access:private line:86 signature:(message string)
cLog userstudy/cv4/client.go 78;" f access:private line:78 signature:(message string)
cLog userstudy/cv5/c/client.go 77;" f access:private line:77 signature:(message string)
cLog userstudy/cv5/client.go 86;" f access:private line:86 signature:(message string)
cLog userstudy/cv5/t/client.go 85;" f access:private line:85 signature:(message string)
cLog userstudy/cv6/c/client.go 77;" f access:private line:77 signature:(message string)
cLog userstudy/cv6/client.go 83;" f access:private line:83 signature:(message string)
cLog userstudy/cv6/t/client.go 85;" f access:private line:85 signature:(message string)
cLog userstudy/cv7/c/client.go 77;" f access:private line:77 signature:(message string)
cLog userstudy/cv7/client.go 92;" f access:private line:92 signature:(message string)
cLog userstudy/cv7/t/client.go 85;" f access:private line:85 signature:(message string)
cLog userstudy/cv8/c/client.go 77;" f access:private line:77 signature:(message string)
cLog userstudy/cv8/client.go 80;" f access:private line:80 signature:(message string)
cLog userstudy/cv8/t/client.go 85;" f access:private line:85 signature:(message string)
capture examples/captureTest/capture.go 17;" f access:private line:17 signature:(i interface{})
cfg programslicer/cfg/cfg.go 8;" p line:8
cfg programslicer/cfg/dom.go 5;" p line:5
cfgSrc programslicer/cdg_test.go 22;" c access:private line:22
cfgs instrumenter/dontTest/affectged_vars_test.go 177;" v access:private line:177 type:[]*CFGWrapper
cfgs instrumenter/dontTest/vars_test.go 16;" v access:private line:16 type:[]*CFGWrapper
chainkv examples/chainkv/c/client.go 1;" p line:1
chainkv examples/chainkv/c/node.go 1;" p line:1
chainkv examples/chainkv/client.go 1;" p line:1
chainkv examples/chainkv/incog.go 1;" p line:1
chainkv examples/chainkv/node.go 1;" p line:1
chainkv examples/chainkv/t/client.go 1;" p line:1
chainkv examples/chainkv/t/node.go 1;" p line:1
chainkv userstudy/cr2/client.go 1;" p line:1
chainkv userstudy/cr2/node.go 1;" p line:1
chainkv userstudy/cv1/client.go 1;" p line:1
chainkv userstudy/cv1/node.go 1;" p line:1
chainkv userstudy/cv3/client.go 1;" p line:1
chainkv userstudy/cv3/node.go 1;" p line:1
chainkv userstudy/cv4/client.go 1;" p line:1
chainkv userstudy/cv4/node.go 1;" p line:1
chainkv userstudy/cv5/c/client.go 1;" p line:1
chainkv userstudy/cv5/c/node.go 1;" p line:1
chainkv userstudy/cv5/client.go 1;" p line:1
chainkv userstudy/cv5/incog.go 1;" p line:1
chainkv userstudy/cv5/node.go 1;" p line:1
chainkv userstudy/cv5/t/client.go 1;" p line:1
chainkv userstudy/cv5/t/node.go 1;" p line:1
chainkv userstudy/cv6/c/client.go 1;" p line:1
chainkv userstudy/cv6/c/node.go 1;" p line:1
chainkv userstudy/cv6/client.go 1;" p line:1
chainkv userstudy/cv6/incog.go 1;" p line:1
chainkv userstudy/cv6/node.go 1;" p line:1
chainkv userstudy/cv6/t/client.go 1;" p line:1
chainkv userstudy/cv6/t/node.go 1;" p line:1
chainkv userstudy/cv7/c/client.go 1;" p line:1
chainkv userstudy/cv7/c/node.go 1;" p line:1
chainkv userstudy/cv7/client.go 1;" p line:1
chainkv userstudy/cv7/incog.go 1;" p line:1
chainkv userstudy/cv7/node.go 1;" p line:1
chainkv userstudy/cv7/t/client.go 1;" p line:1
chainkv userstudy/cv7/t/node.go 1;" p line:1
chainkv userstudy/cv8/c/client.go 1;" p line:1
chainkv userstudy/cv8/c/node.go 1;" p line:1
chainkv userstudy/cv8/client.go 1;" p line:1
chainkv userstudy/cv8/incog.go 1;" p line:1
chainkv userstudy/cv8/node.go 1;" p line:1
chainkv userstudy/cv8/t/client.go 1;" p line:1
chainkv userstudy/cv8/t/node.go 1;" p line:1
chainkv_test examples/chainkv/run/run_test.go 1;" p line:1
chainkv_test userstudy/cr2/run/run_test.go 1;" p line:1
chainkv_test userstudy/cv1/run/run_test.go 1;" p line:1
chainkv_test userstudy/cv3/run/run_test.go 1;" p line:1
chainkv_test userstudy/cv4/run/run_test.go 1;" p line:1
chainkv_test userstudy/cv5/run/run_test.go 1;" p line:1
chainkv_test userstudy/cv6/run/run_test.go 1;" p line:1
chainkv_test userstudy/cv7/run/run_test.go 1;" p line:1
chainkv_test userstudy/cv8/run/run_test.go 1;" p line:1
checkCallNode programslicer/programslicer.go 209;" f access:private line:209 signature:(y *ast.Ident, w ast.Stmt, call *ast.Object, callNodes []ast.Stmt) type:[]ast.Stmt