-
Notifications
You must be signed in to change notification settings - Fork 2
/
TAGS
3159 lines (3040 loc) · 117 KB
/
TAGS
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
bg-driver.lisp,53
(defvar *work-pending* 6,72
(defun bg-driver 9,102
bg-handler.lisp,30
(defun bg-event-handler 6,72
cllw.lisp,22
(defvar *orb* 10,229
clmcl.lisp,405
(defun clean-fasl 3,23
(defun use-pentax-ifr 30,670
(defun use-pentax-ns 33,791
(defun use-mcl-ns 36,895
(defun use-quad-mcl-ns 39,1003
(defun use-jacorb 42,1118
(defun use-lapps 45,1220
(defun run 48,1327
(defparameter *random-ior*59,1501
(defun clorb::xir 66,1777
(defclass local-target 73,2041
(defvar *export-ifr* 99,2879
(defun export-iors 101,2906
(defun home-volume-pathname 113,3578
clorb-any.lisp,741
(defclass CORBA:ANY 5,46
(defgeneric any-typecode 9,140
(defgeneric any-value 11,173
(defun corba:any 14,204
(defmethod initialize-instance 21,412
(defmethod print-object 26,615
(defmethod any-typecode 34,913
(defmethod any-value 37,986
(defmethod (setf 40,1053
(defmethod (setf 43,1142
(defmethod any-typecode 49,1261
(defun member-typecode 66,1849
(defmethod any-typecode 86,2484
(defmethod any-typecode 89,2579
(defmethod any-typecode 92,2665
(defmethod any-value 98,2745
(defmethod any-value 101,2789
(defmethod any-value 104,2833
(defmethod any-value 107,2880
(defmethod any-value 111,2934
(defmethod any-value 114,2980
(defun marshal-any 122,3084
(defun unmarshal-any 127,3225
(defun marshal-any-value 134,3423
clorb-aom.lisp,309
(defclass object-map 14,265
(defmethod servant-active-p 22,488
(defmethod servant-oid-list 25,608
(defmethod add-activation 28,730
(defmethod remove-activation 34,972
(defmethod oid-servant 46,1492
(defmethod servant-oid 49,1589
(defmethod map-activations 58,1920
(defmethod activation-count 75,2689
clorb-basetypes.lisp,592
(deftype corba:boolean 8,65
(deftype corba:char 11,97
(deftype corba:wchar 14,135
(deftype corba:octet 18,201
(deftype corba:string 21,248
(deftype corba:wstring 24,285
(deftype corba:short 28,354
(deftype corba:ushort 31,400
(deftype corba:long 34,449
(deftype corba:ulong 37,494
(deftype corba:longlong 40,542
(deftype corba:ulonglong 43,591
(deftype corba:float 46,643
(deftype corba:double 52,815
(deftype corba:longdouble 56,896
(deftype corba:fixed 60,977
(deftype fixed 63,1015
(define-condition corba:exception 72,1256
(define-condition corba:userexception 75,1317
clorb-buffer.lisp,674
(deftype buffer-index 5,50
(defvar *empty-octets*10,162
(defvar *chunking-level* 14,232
(defvar *chunk-end* 17,302
(defstruct buffer21,402
(defmethod print-object 30,678
(defmethod the-orb 38,1018
(defun buffer-contents 42,1094
(defun buffer-out-pos 45,1164
(defun buffer-abs-pos 48,1237
(defun buffer-rel-pos 51,1295
(defun buffer-length 56,1444
(defmacro with-in-chunking 60,1511
(define-symbol-macro chunking-p 68,1763
(defmacro without-chunking 70,1820
(defmacro with-sub-buffer 81,2117
(defun get-work-buffer 100,2908
(defun buffer-record 109,3123
(defmacro with-out-buffer 114,3256
(defun start-in-chunk 142,4432
(defmacro with-in-buffer 147,4624
clorb-codec.lisp,272
(defclass codec-impl 18,611
(define-method decode 28,870
(define-method decode_value 36,1092
(define-method encode 42,1303
(define-method encode_value 51,1540
(defclass codecfactory-impl 62,1743
(define-method create_codec 70,1961
(defun set-codec-factory 81,2392
clorb-conn.lisp,1294
(defvar *request-id-seq* 5,63
(defclass Connection 77,2155
(defmethod print-object 96,3453
(defmethod next-request-id 107,3719
(defun make-associated-connection 113,3837
(defun connection-destroy 120,4083
(defun create-connection 126,4240
(defun connection-working-p 139,4691
(defun connection-init-read 144,4816
(defun connection-shutdown 160,5429
(defun %add-client-request 180,5981
(defun connection-send-buffer 184,6077
(defun connection-send-request 202,6748
(defun find-waiting-client-request 206,6843
(defun connection-receive-reply 216,7228
(defun connection-receive-locate-reply 221,7443
(defun connection-add-server-request 227,7641
(defun connection-remove-server-request 231,7778
(defun connection-add-fragment 237,7972
(defun gc-connections 250,8390
(defun auto-gc-read-handler 269,9103
(defun connection-error 290,9595
(defun connection-close 299,9909
(defun connection-read-ready 310,10389
(defmethod connection-write-ready 314,10477
(defun connection-no-write 326,10879
(defun connection-init-defragmentation 339,11330
(defvar *new-connection-callback*353,11651
(defvar *running-orb* 358,11739
(defun orb-wait 364,11962
(defun orb-condition-wait 370,12163
(defun orb-run-queue 381,12639
(defun process-event 386,12742
(defun orb-work 411,13568
clorb-dyntarget.lisp,363
(defclass dynamic-1-stub-target 6,77
(defclass dynamic-2-stub-target 10,131
(defmethod target-code 16,187
(defmethod target-code 25,591
(defmethod target-code 51,1804
(defmethod target-code 63,2335
(defclass dynamic-sevant-target 77,2949
(defmethod target-code 81,3003
(defmethod target-invoke-dynamic 101,3916
(defmethod target-invoke-dynamic 106,4016
clorb-exceptions.lisp,948
(defconstant CORBA::OMGVMCID 6,87
(defconstant min-vmcid 7,128
(define-enum CORBA:completion_status9,167
(defparameter corba:tc_completion_status14,344
(define-typecode except-typecode21,459
(defun create-exception-tc 30,765
(defgeneric exception-name 40,1009
(defmethod any-typecode 43,1112
(defmethod any-value 47,1244
(defun exception-id 50,1303
(define-condition corba:systemexception 57,1408
(define-method minor 66,1777
(define-method completed 69,1861
(defun report-systemexception 72,1953
(defun system-exception 85,2418
(defun raise-system-exception 90,2635
(defmethod shared-initialize 95,2783
(defmethod shared-initialize 101,2992
(define-condition unknown-user-exception 138,4375
(defmethod all-fields 144,4603
(defun id-exception-class 149,4784
(defun exception-read 156,4899
(defun unmarshal-systemexception 164,5147
(defmethod compute-marshal-function 174,5536
(defmethod compute-unmarshal-function 185,5896
clorb-files.lisp,736
(defpackage "NET.CDDR.CLORB.SYSTEM"3,57
(defmacro def-load-opts 12,212
(def-load-opts set-load-opts 30,1070
(defparameter *base-files*41,1440
(defparameter *server-files*79,2173
(defparameter *redpas-files*89,2351
(defparameter *luna-files*94,2443
(defparameter *dev-post-files*99,2532
(defparameter *portable-interceptor-files*102,2585
(defparameter *x-files*106,2671
(defparameter *idlcomp*117,2872
(defparameter *my-idlparser*125,3081
(defparameter *hello-world*129,3156
(defvar *load-dates* 136,3308
(defvar *source-pathname-defaults*137,3362
(defvar *binary-folder*146,3658
(defun dir-split 168,4499
(defun compile-changed 176,4714
(defun reload 224,6773
(defun acl-defsys 244,7530
(defun asdf-defsys 264,8220
clorb-idl.lisp,163
(defclass IDL-COMPILER 5,35
(defgeneric load-repository 16,321
(defvar *default-idl-compiler* 18,382
(defvar *default-exclude* 20,419
(defun corba:idl 22,486
clorb-idlcpp.lisp,929
(defgeneric idl-prefix 5,66
(defgeneric package-prefix 8,218
(defgeneric idl-source-position 12,394
(defgeneric idl-repositoryid-pragmas 15,533
(defclass PREPROCESSED-STREAM 18,595
(defmethod idl-repositoryid-pragmas 28,966
(defmethod idl-source-position 32,1104
(defmethod idl-prefix 35,1196
(defmethod (setf 38,1282
(defmethod package-prefix 41,1394
(defmethod (setf 44,1490
(defmethod current-file 48,1613
(defmethod (setf 51,1699
(defmethod current-line 54,1811
(defmethod (setf 57,1898
(defmethod read-raw-line 61,2012
(defmethod new-file-info 65,2137
(defun read-cpp-line 77,2586
(defun parse-string-literal 90,2814
(defun parse-numeric-character 110,3646
(defun parse-escape-sequence 122,4071
(defun cpp-line-p 141,4653
(defun whitespacep 146,4794
(defvar *warn-unknown-pragma* 151,4876
(defun parse-cpp-line 153,4910
(defun read-cpp-continuation-lines 214,7561
(defun using-cpp-stream 226,7923
clorb-idllexer.lisp,833
(defclass IDLLEX 10,207
(defclass cppchar-lexer 15,293
(defmethod next-token 23,428
(defvar *current-cpp*)39,945
(defun using-idllex 41,969
(defmethod next-token 56,1430
(defun idl-token 63,1651
(defun whitespace 73,1856
(defun idl-comment 91,2344
(defun ident-start-char-p 108,2830
(defun ident-char-p 112,2906
(defun identifier-token 116,2977
(defun hex-char-p 126,3233
(defun hex-char 130,3307
(defun hex-escape 135,3448
(defun oct-char 141,3617
(defun oct-escape 147,3802
(defun escaped-char 154,4007
(defun string-literal-1 176,4775
(defun string-literal 184,4970
(defun char-literal 193,5252
(defun decimal-char-p 199,5357
(defun idl-fixed-p 204,5433
(defun idl-fixed-values 208,5504
(defun make-idl-fixed 212,5598
(defun parse-fixed 221,5874
(defun number-token 236,6474
(defun char-token 273,7990
clorb-idlparser.lisp,2811
(defvar *the-repository* 4,22
(defvar *container* 5,49
(defun convert-to-array 7,72
(defun named-create 16,296
(defun repo-id 22,534
(defmacro parse-list 31,866
(defun <specification> 46,1341
(defun <definition> 51,1443
(defun <scoped_name> 63,1643
(defun <scoped_name>-lookup 70,1861
(defun <module> 83,2264
(defun id-adjustment 92,2575
(defun <interface/value> 111,3404
(defun <value>- 128,3970
(defun <interface>- 163,5606
(defun <value_element> 180,6337
(defun <state_member> 185,6448
(defun <init_dcl> 195,6952
(defun <init_param_decl> 204,7337
(defun <interface_inheritance_spec> 214,7626
(defun <export> 218,7728
(defun <op_dcl> 230,7933
(defun <op_attribute> 242,8399
(defun <op_type_spec> 246,8504
(defun <parameter_dcls> 250,8638
(defun <param_dcl> 257,8780
(defun <param_attribute> 268,9140
(defun <param_type_spec> 273,9291
(defun <raises_expr> 278,9377
(defun <context_expr> 285,9540
(defun <attr_dcl> 296,9731
(defun <except_dcl> 313,10233
(defun <type_dcl> 327,10578
(defun <type_declarator> 338,10884
(defun <declarators> 348,11213
(defun <declarator> 351,11274
(defun <simple_declarator> 359,11499
(defun <struct_type> 367,11564
(defun <member> 374,11838
(defun <union_type> 387,12239
(defun <switch_type_spec> 396,12624
(defun <switch_body> 400,12828
(defun <case> 405,12969
(defun <element_spec> 420,13686
(defun <case_label> 427,13896
(defun <enum_type> 437,14078
(defun <literal> 454,14697
(defun <boolean_literal> 463,14961
(defun <const_dcl> 472,15089
(defun <const_type> 490,15840
(defun <const_exp> 510,16506
(defun <positive_int_const> 513,16544
(defun <primary_expr> 516,16593
(defun <or_expr> 530,17300
(defun <xor_expr> 537,17481
(defun <and_expr> 543,17640
(defun <shift_expr> 549,17809
(defmethod add 557,18058
(defmethod add 565,18366
(defmethod sub 568,18403
(defmethod sub 575,18691
(defmethod mul 579,18729
(defmethod mul 586,18982
(defmethod div 591,19021
(defmethod div 600,19346
(defun <add_expr> 604,19384
(defun <mult_expr> 611,19633
(defun <unary_expr> 619,19966
(defun <unary_operator> 627,20249
(defun <type_spec> 634,20327
(defun <simple_type_spec> 638,20410
(defun <integer_type> 661,21340
(defun <sequence_type> 665,21386
(defun <string_type> 673,21661
(defun <wide_string_type> 680,21933
(defun <fixed_pt_type> 687,22213
(defun <number_type> 695,22436
(defun <base_type_spec> 710,23171
(defun misc-type 717,23479
(defun <constr_type_spec> 724,23767
(defparameter *reserved-words*731,23895
(defun <identifier> 739,24389
(defun <number_literal> 756,25006
(defun <character_literal> 759,25067
(defun <string_literal> 762,25120
(defun <wide_string_literal> 768,25263
(defun <wide_character_literal> 772,25336
(defclass MY-IDLPARSER 780,25402
(defmethod load-repository 783,25447
clorb-ifr-base.lisp,14719
(DEFINE-ALIAS OMG.ORG/CORBA:IDENTIFIER72,4549
(DEFINE-ALIAS OMG.ORG/CORBA:SCOPEDNAME78,4717
(DEFINE-ALIAS OMG.ORG/CORBA:REPOSITORYID84,4885
(DEFINE-ENUM OMG.ORG/CORBA:DEFINITIONKIND90,5059
(DEFINE-ALIAS OMG.ORG/CORBA:VERSIONSPEC100,5597
(DEFINE-ALIAS OMG.ORG/CORBA:INTERFACEDEFSEQ106,5768
(DEFINE-ALIAS OMG.ORG/CORBA:VALUEDEFSEQ114,6012
(DEFINE-ALIAS OMG.ORG/CORBA:ABSTRACTINTERFACEDEFSEQ120,6212
(DEFINE-ALIAS OMG.ORG/CORBA:LOCALINTERFACEDEFSEQ128,6488
(DEFINE-ALIAS OMG.ORG/CORBA:CONTAINEDSEQ136,6752
(DEFINE-STRUCT OMG.ORG/CORBA:STRUCTMEMBER142,6956
(DEFINE-ALIAS OMG.ORG/CORBA:STRUCTMEMBERSEQ149,7245
(DEFINE-STRUCT OMG.ORG/CORBA:INITIALIZER157,7489
(DEFINE-ALIAS OMG.ORG/CORBA:INITIALIZERSEQ163,7735
(DEFINE-STRUCT OMG.ORG/CORBA:UNIONMEMBER169,7947
(DEFINE-ALIAS OMG.ORG/CORBA:UNIONMEMBERSEQ176,8264
(DEFINE-ALIAS OMG.ORG/CORBA:ENUMMEMBERSEQ182,8476
(DEFINE-ENUM OMG.ORG/CORBA:PRIMITIVEKIND188,8684
(DEFINE-STRUCT OMG.ORG/CORBA:MODULEDESCRIPTION197,9124
(DEFINE-STRUCT OMG.ORG/CORBA:CONSTANTDESCRIPTION205,9522
(DEFINE-STRUCT OMG.ORG/CORBA:TYPEDESCRIPTION214,10004
(DEFINE-STRUCT OMG.ORG/CORBA:EXCEPTIONDESCRIPTION223,10443
(DEFINE-ENUM OMG.ORG/CORBA:ATTRIBUTEMODE232,10897
(DEFINE-STRUCT OMG.ORG/CORBA:ATTRIBUTEDESCRIPTION237,11051
(DEFINE-ENUM OMG.ORG/CORBA:OPERATIONMODE247,11573
(DEFINE-ENUM OMG.ORG/CORBA:PARAMETERMODE252,11721
(DEFINE-STRUCT OMG.ORG/CORBA:PARAMETERDESCRIPTION257,11882
(DEFINE-ALIAS OMG.ORG/CORBA:PARDESCRIPTIONSEQ265,12263
(DEFINE-ALIAS OMG.ORG/CORBA:CONTEXTIDENTIFIER273,12521
(DEFINE-ALIAS OMG.ORG/CORBA:CONTEXTIDSEQ279,12734
(DEFINE-ALIAS OMG.ORG/CORBA:EXCEPTIONDEFSEQ287,12974
(DEFINE-ALIAS OMG.ORG/CORBA:EXCDESCRIPTIONSEQ295,13218
(DEFINE-STRUCT OMG.ORG/CORBA:OPERATIONDESCRIPTION303,13476
(DEFINE-ALIAS OMG.ORG/CORBA:REPOSITORYIDSEQ316,14227
(DEFINE-ALIAS OMG.ORG/CORBA:OPDESCRIPTIONSEQ324,14471
(DEFINE-ALIAS OMG.ORG/CORBA:ATTRDESCRIPTIONSEQ332,14726
(DEFINE-STRUCT OMG.ORG/CORBA:INTERFACEDESCRIPTION340,14987
(DEFINE-ALIAS OMG.ORG/CORBA:VISIBILITY350,15488
(DEFCONSTANT OMG.ORG/CORBA:PRIVATE_MEMBER 356,15654
(DEFCONSTANT OMG.ORG/CORBA:PUBLIC_MEMBER 358,15708
(DEFINE-STRUCT OMG.ORG/CORBA:VALUEMEMBER360,15761
(DEFINE-ALIAS OMG.ORG/CORBA:VALUEMEMBERSEQ371,16321
(DEFINE-STRUCT OMG.ORG/CORBA:VALUEDESCRIPTION377,16533
(DEFINE-INTERFACE OMG.ORG/CORBA:IROBJECT 393,17359
(DEFINE-ATTRIBUTE OMG.ORG/CORBA:IROBJECT/DEF_KIND399,17558
(DEFINE-METHOD "DEF_KIND" 407,17810
(DEFINE-OPERATION OMG.ORG/CORBA:IROBJECT/DESTROY410,17924
(DEFINE-METHOD "DESTROY" 421,18197
(DEFINE-INTERFACE OMG.ORG/CORBA:CONTAINED 424,18310
(DEFINE-ATTRIBUTE OMG.ORG/CORBA:CONTAINED/ID430,18539
(DEFINE-METHOD (SETF 438,18772
(DEFINE-METHOD "ID" 441,18897
(DEFINE-ATTRIBUTE OMG.ORG/CORBA:CONTAINED/NAME444,19001
(DEFINE-METHOD (SETF 452,19238
(DEFINE-METHOD "NAME" 455,19367
(DEFINE-ATTRIBUTE OMG.ORG/CORBA:CONTAINED/VERSION458,19475
(DEFINE-METHOD (SETF 466,19722
(DEFINE-METHOD "VERSION" 469,19857
(DEFINE-ATTRIBUTE OMG.ORG/CORBA:CONTAINED/DEFINED_IN472,19971
(DEFINE-METHOD "DEFINED_IN" 480,20227
(DEFINE-ATTRIBUTE OMG.ORG/CORBA:CONTAINED/ABSOLUTE_NAME483,20347
(DEFINE-METHOD "ABSOLUTE_NAME" 491,20613
(DEFINE-ATTRIBUTE OMG.ORG/CORBA:CONTAINED/CONTAINING_REPOSITORY494,20739
(DEFINE-METHOD "CONTAINING_REPOSITORY" 502,21029
(DEFINE-STRUCT OMG.ORG/CORBA:CONTAINED/DESCRIPTION505,21171
(DEFINE-OPERATION OMG.ORG/CORBA:CONTAINED/DESCRIBE511,21411
(DEFINE-METHOD "DESCRIBE" 522,21723
(DEFINE-OPERATION OMG.ORG/CORBA:CONTAINED/MOVE525,21840
(DEFINE-METHOD "MOVE" 541,22392
(DEFINE-INTERFACE OMG.ORG/CORBA:CONTAINER 549,22652
(DEFINE-OPERATION OMG.ORG/CORBA:CONTAINER/LOOKUP555,22881
(DEFINE-METHOD "LOOKUP" 567,23259
(DEFINE-OPERATION OMG.ORG/CORBA:CONTAINER/CONTENTS570,23398
(DEFINE-METHOD "CONTENTS" 583,23860
(DEFINE-OPERATION OMG.ORG/CORBA:CONTAINER/LOOKUP_NAME590,24105
(DEFINE-METHOD "LOOKUP_NAME" 606,24745
(DEFINE-STRUCT OMG.ORG/CORBA:CONTAINER/DESCRIPTION615,25087
(DEFINE-ALIAS OMG.ORG/CORBA:CONTAINER/DESCRIPTIONSEQ622,25403
(DEFINE-OPERATION OMG.ORG/CORBA:CONTAINER/DESCRIBE_CONTENTS630,25673
(DEFINE-METHOD "DESCRIBE_CONTENTS" 644,26243
(DEFINE-OPERATION OMG.ORG/CORBA:CONTAINER/CREATE_MODULE653,26602
(DEFINE-METHOD "CREATE_MODULE" 667,27154
(DEFINE-OPERATION OMG.ORG/CORBA:CONTAINER/CREATE_CONSTANT671,27351
(DEFINE-METHOD "CREATE_CONSTANT" 687,28042
(DEFINE-OPERATION OMG.ORG/CORBA:CONTAINER/CREATE_STRUCT697,28349
(DEFINE-METHOD "CREATE_STRUCT" 713,29003
(DEFINE-OPERATION OMG.ORG/CORBA:CONTAINER/CREATE_UNION722,29283
(DEFINE-METHOD "CREATE_UNION" 740,30037
(DEFINE-OPERATION OMG.ORG/CORBA:CONTAINER/CREATE_ENUM750,30367
(DEFINE-METHOD "CREATE_ENUM" 766,31011
(DEFINE-OPERATION OMG.ORG/CORBA:CONTAINER/CREATE_ALIAS775,31285
(DEFINE-METHOD "CREATE_ALIAS" 791,31933
(DEFINE-OPERATION OMG.ORG/CORBA:CONTAINER/CREATE_INTERFACE800,32222
(DEFINE-METHOD "CREATE_INTERFACE" 816,32896
(DEFINE-OPERATION OMG.ORG/CORBA:CONTAINER/CREATE_VALUE825,33201
(DEFINE-METHOD "CREATE_VALUE" 850,34378
(DEFINE-OPERATION OMG.ORG/CORBA:CONTAINER/CREATE_VALUE_BOX867,34997
(DEFINE-METHOD "CREATE_VALUE_BOX" 883,35664
(DEFINE-OPERATION OMG.ORG/CORBA:CONTAINER/CREATE_EXCEPTION892,35973
(DEFINE-METHOD "CREATE_EXCEPTION" 908,36639
(DEFINE-OPERATION OMG.ORG/CORBA:CONTAINER/CREATE_NATIVE917,36928
(DEFINE-METHOD "CREATE_NATIVE" 931,37480
(DEFINE-OPERATION OMG.ORG/CORBA:CONTAINER/CREATE_ABSTRACT_INTERFACE935,37677
(DEFINE-METHOD "CREATE_ABSTRACT_INTERFACE" 951,38394
(DEFINE-OPERATION OMG.ORG/CORBA:CONTAINER/CREATE_LOCAL_INTERFACE961,38770
(DEFINE-METHOD "CREATE_LOCAL_INTERFACE" 977,39467
(DEFINE-INTERFACE OMG.ORG/CORBA:IDLTYPE 986,39790
(DEFINE-ATTRIBUTE OMG.ORG/CORBA:IDLTYPE/TYPE992,40009
(DEFINE-METHOD "TYPE" 1000,40224
(DEFINE-INTERFACE OMG.ORG/CORBA:REPOSITORY 1003,40328
(DEFINE-OPERATION OMG.ORG/CORBA:REPOSITORY/LOOKUP_ID1009,40564
(DEFINE-METHOD "LOOKUP_ID" 1021,40954
(DEFINE-OPERATION OMG.ORG/CORBA:REPOSITORY/GET_CANONICAL_TYPECODE1024,41097
(DEFINE-METHOD "GET_CANONICAL_TYPECODE" 1035,41466
(DEFINE-OPERATION OMG.ORG/CORBA:REPOSITORY/GET_PRIMITIVE1039,41662
(DEFINE-METHOD "GET_PRIMITIVE" 1051,42063
(DEFINE-OPERATION OMG.ORG/CORBA:REPOSITORY/CREATE_STRING1054,42204
(DEFINE-METHOD "CREATE_STRING" 1065,42563
(DEFINE-OPERATION OMG.ORG/CORBA:REPOSITORY/CREATE_WSTRING1068,42706
(DEFINE-METHOD "CREATE_WSTRING" 1079,43069
(DEFINE-OPERATION OMG.ORG/CORBA:REPOSITORY/CREATE_SEQUENCE1082,43214
(DEFINE-METHOD "CREATE_SEQUENCE" 1095,43680
(DEFINE-OPERATION OMG.ORG/CORBA:REPOSITORY/CREATE_ARRAY1099,43889
(DEFINE-METHOD "CREATE_ARRAY" 1112,44344
(DEFINE-OPERATION OMG.ORG/CORBA:REPOSITORY/CREATE_FIXED1116,44546
(DEFINE-METHOD "CREATE_FIXED" 1128,44961
(DEFINE-INTERFACE OMG.ORG/CORBA:MODULEDEF 1132,45149
(DEFINE-INTERFACE OMG.ORG/CORBA:CONSTANTDEF 1139,45477
(DEFINE-ATTRIBUTE OMG.ORG/CORBA:CONSTANTDEF/TYPE1145,45718
(DEFINE-METHOD "TYPE" 1153,45945
(DEFINE-ATTRIBUTE OMG.ORG/CORBA:CONSTANTDEF/TYPE_DEF1156,46057
(DEFINE-METHOD (SETF 1164,46309
(DEFINE-METHOD "TYPE_DEF" 1167,46450
(DEFINE-ATTRIBUTE OMG.ORG/CORBA:CONSTANTDEF/VALUE1170,46570
(DEFINE-METHOD (SETF 1178,46793
(DEFINE-METHOD "VALUE" 1181,46928
(DEFINE-INTERFACE OMG.ORG/CORBA:INTERFACEDEF 1184,47042
(DEFINE-ATTRIBUTE OMG.ORG/CORBA:INTERFACEDEF/BASE_INTERFACES1193,47493
(DEFINE-METHOD (SETF 1201,47777
(DEFINE-METHOD "BASE_INTERFACES" 1206,48017
(DEFINE-OPERATION OMG.ORG/CORBA:INTERFACEDEF/IS_A1209,48153
(DEFINE-METHOD "IS_A" 1221,48519
(DEFINE-STRUCT OMG.ORG/CORBA:INTERFACEDEF/FULLINTERFACEDESCRIPTION1224,48662
(DEFINE-OPERATION OMG.ORG/CORBA:INTERFACEDEF/DESCRIBE_INTERFACE1237,49404
(DEFINE-METHOD "DESCRIBE_INTERFACE" 1249,49783
(DEFINE-OPERATION OMG.ORG/CORBA:INTERFACEDEF/CREATE_ATTRIBUTE1252,49926
(DEFINE-METHOD "CREATE_ATTRIBUTE" 1269,50671
(DEFINE-OPERATION OMG.ORG/CORBA:INTERFACEDEF/CREATE_OPERATION1279,50985
(DEFINE-METHOD "CREATE_OPERATION" 1302,52040
(DEFINE-INTERFACE OMG.ORG/CORBA:EXCEPTIONDEF 1316,52492
(DEFINE-ATTRIBUTE OMG.ORG/CORBA:EXCEPTIONDEF/TYPE1323,52838
(DEFINE-METHOD "TYPE" 1331,53068
(DEFINE-ATTRIBUTE OMG.ORG/CORBA:EXCEPTIONDEF/MEMBERS1334,53182
(DEFINE-METHOD (SETF 1342,53442
(DEFINE-METHOD "MEMBERS" 1345,53583
(DEFINE-INTERFACE OMG.ORG/CORBA:VALUEDEF 1348,53703
(DEFINE-ATTRIBUTE OMG.ORG/CORBA:VALUEDEF/SUPPORTED_INTERFACES1357,54126
(DEFINE-METHOD (SETF 1365,54413
(DEFINE-METHOD "SUPPORTED_INTERFACES" 1370,54665
(DEFINE-ATTRIBUTE OMG.ORG/CORBA:VALUEDEF/INITIALIZERS1373,54803
(DEFINE-METHOD (SETF 1381,55065
(DEFINE-METHOD "INITIALIZERS" 1385,55246
(DEFINE-ATTRIBUTE OMG.ORG/CORBA:VALUEDEF/BASE_VALUE1388,55368
(DEFINE-METHOD (SETF 1396,55618
(DEFINE-METHOD "BASE_VALUE" 1399,55757
(DEFINE-ATTRIBUTE OMG.ORG/CORBA:VALUEDEF/ABSTRACT_BASE_VALUES1402,55875
(DEFINE-METHOD (SETF 1410,56158
(DEFINE-METHOD "ABSTRACT_BASE_VALUES" 1415,56410
(DEFINE-ATTRIBUTE OMG.ORG/CORBA:VALUEDEF/IS_ABSTRACT1418,56548
(DEFINE-METHOD (SETF 1426,56784
(DEFINE-METHOD "IS_ABSTRACT" 1429,56925
(DEFINE-ATTRIBUTE OMG.ORG/CORBA:VALUEDEF/IS_CUSTOM1432,57045
(DEFINE-METHOD (SETF 1440,57275
(DEFINE-METHOD "IS_CUSTOM" 1443,57412
(DEFINE-ATTRIBUTE OMG.ORG/CORBA:VALUEDEF/IS_TRUNCATABLE1446,57528
(DEFINE-METHOD (SETF 1454,57773
(DEFINE-METHOD "IS_TRUNCATABLE" 1458,57960
(DEFINE-OPERATION OMG.ORG/CORBA:VALUEDEF/IS_A1461,58086
(DEFINE-METHOD "IS_A" 1472,58414
(DEFINE-STRUCT OMG.ORG/CORBA:VALUEDEF/FULLVALUEDESCRIPTION1475,58529
(DEFINE-OPERATION OMG.ORG/CORBA:VALUEDEF/DESCRIBE_VALUE1496,59737
(DEFINE-METHOD "DESCRIBE_VALUE" 1507,60072
(DEFINE-OPERATION OMG.ORG/CORBA:VALUEDEF/CREATE_VALUE_MEMBER1510,60199
(DEFINE-METHOD "CREATE_VALUE_MEMBER" 1527,60942
(DEFINE-OPERATION OMG.ORG/CORBA:VALUEDEF/CREATE_ATTRIBUTE1537,61261
(DEFINE-METHOD "CREATE_ATTRIBUTE" 1554,61994
(DEFINE-OPERATION OMG.ORG/CORBA:VALUEDEF/CREATE_OPERATION1564,62300
(DEFINE-METHOD "CREATE_OPERATION" 1587,63343
(DEFINE-INTERFACE OMG.ORG/CORBA:PRIMITIVEDEF 1601,63787
(DEFINE-ATTRIBUTE OMG.ORG/CORBA:PRIMITIVEDEF/KIND1607,64029
(DEFINE-METHOD "KIND" 1615,64280
(DEFINE-INTERFACE OMG.ORG/CORBA:STRINGDEF 1618,64394
(DEFINE-ATTRIBUTE OMG.ORG/CORBA:STRINGDEF/BOUND1624,64621
(DEFINE-METHOD (SETF 1632,64840
(DEFINE-METHOD "BOUND" 1635,64971
(DEFINE-INTERFACE OMG.ORG/CORBA:SEQUENCEDEF 1638,65081
(DEFINE-ATTRIBUTE OMG.ORG/CORBA:SEQUENCEDEF/BOUND1644,65318
(DEFINE-METHOD (SETF 1652,65543
(DEFINE-METHOD "BOUND" 1655,65678
(DEFINE-ATTRIBUTE OMG.ORG/CORBA:SEQUENCEDEF/ELEMENT_TYPE1658,65792
(DEFINE-METHOD "ELEMENT_TYPE" 1666,66043
(DEFINE-ATTRIBUTE OMG.ORG/CORBA:SEQUENCEDEF/ELEMENT_TYPE_DEF1669,66171
(DEFINE-METHOD (SETF 1677,66447
(DEFINE-METHOD "ELEMENT_TYPE_DEF" 1682,66689
(DEFINE-INTERFACE OMG.ORG/CORBA:ARRAYDEF 1685,66825
(DEFINE-ATTRIBUTE OMG.ORG/CORBA:ARRAYDEF/LENGTH1691,67047
(DEFINE-METHOD (SETF 1699,67266
(DEFINE-METHOD "LENGTH" 1702,67397
(DEFINE-ATTRIBUTE OMG.ORG/CORBA:ARRAYDEF/ELEMENT_TYPE1705,67507
(DEFINE-METHOD "ELEMENT_TYPE" 1713,67749
(DEFINE-ATTRIBUTE OMG.ORG/CORBA:ARRAYDEF/ELEMENT_TYPE_DEF1716,67871
(DEFINE-METHOD (SETF 1724,68138
(DEFINE-METHOD "ELEMENT_TYPE_DEF" 1728,68331
(DEFINE-INTERFACE OMG.ORG/CORBA:WSTRINGDEF 1731,68461
(DEFINE-ATTRIBUTE OMG.ORG/CORBA:WSTRINGDEF/BOUND1737,68693
(DEFINE-METHOD (SETF 1745,68915
(DEFINE-METHOD "BOUND" 1748,69048
(DEFINE-INTERFACE OMG.ORG/CORBA:FIXEDDEF 1751,69160
(DEFINE-ATTRIBUTE OMG.ORG/CORBA:FIXEDDEF/DIGITS1757,69382
(DEFINE-METHOD (SETF 1765,69602
(DEFINE-METHOD "DIGITS" 1768,69733
(DEFINE-ATTRIBUTE OMG.ORG/CORBA:FIXEDDEF/SCALE1771,69843
(DEFINE-METHOD (SETF 1779,70059
(DEFINE-METHOD "SCALE" 1782,70188
(DEFINE-INTERFACE OMG.ORG/CORBA:TYPEDEFDEF 1785,70296
(DEFINE-INTERFACE OMG.ORG/CORBA:ATTRIBUTEDEF 1792,70626
(DEFINE-ATTRIBUTE OMG.ORG/CORBA:ATTRIBUTEDEF/TYPE1798,70872
(DEFINE-METHOD "TYPE" 1806,71102
(DEFINE-ATTRIBUTE OMG.ORG/CORBA:ATTRIBUTEDEF/TYPE_DEF1809,71216
(DEFINE-METHOD (SETF 1817,71471
(DEFINE-METHOD "TYPE_DEF" 1821,71648
(DEFINE-ATTRIBUTE OMG.ORG/CORBA:ATTRIBUTEDEF/MODE1824,71770
(DEFINE-METHOD (SETF 1832,72019
(DEFINE-METHOD "MODE" 1835,72154
(DEFINE-INTERFACE OMG.ORG/CORBA:OPERATIONDEF 1838,72268
(DEFINE-ATTRIBUTE OMG.ORG/CORBA:OPERATIONDEF/RESULT1844,72514
(DEFINE-METHOD "RESULT" 1852,72750
(DEFINE-ATTRIBUTE OMG.ORG/CORBA:OPERATIONDEF/RESULT_DEF1855,72868
(DEFINE-METHOD (SETF 1863,73129
(DEFINE-METHOD "RESULT_DEF" 1867,73312
(DEFINE-ATTRIBUTE OMG.ORG/CORBA:OPERATIONDEF/PARAMS1870,73438
(DEFINE-METHOD (SETF 1878,73697
(DEFINE-METHOD "PARAMS" 1881,73836
(DEFINE-ATTRIBUTE OMG.ORG/CORBA:OPERATIONDEF/MODE1884,73954
(DEFINE-METHOD (SETF 1892,74203
(DEFINE-METHOD "MODE" 1895,74338
(DEFINE-ATTRIBUTE OMG.ORG/CORBA:OPERATIONDEF/CONTEXTS1898,74452
(DEFINE-METHOD (SETF 1906,74712
(DEFINE-METHOD "CONTEXTS" 1910,74889
(DEFINE-ATTRIBUTE OMG.ORG/CORBA:OPERATIONDEF/EXCEPTIONS1913,75011
(DEFINE-METHOD (SETF 1921,75280
(DEFINE-METHOD "EXCEPTIONS" 1925,75463
(DEFINE-INTERFACE OMG.ORG/CORBA:VALUEMEMBERDEF 1928,75589
(DEFINE-ATTRIBUTE OMG.ORG/CORBA:VALUEMEMBERDEF/TYPE1934,75845
(DEFINE-METHOD "TYPE" 1942,76081
(DEFINE-ATTRIBUTE OMG.ORG/CORBA:VALUEMEMBERDEF/TYPE_DEF1945,76199
(DEFINE-METHOD (SETF 1953,76460
(DEFINE-METHOD "TYPE_DEF" 1957,76641
(DEFINE-ATTRIBUTE OMG.ORG/CORBA:VALUEMEMBERDEF/ACCESS1960,76767
(DEFINE-METHOD (SETF 1968,77025
(DEFINE-METHOD "ACCESS" 1972,77200
(DEFINE-INTERFACE OMG.ORG/CORBA:STRUCTDEF 1975,77322
(DEFINE-ATTRIBUTE OMG.ORG/CORBA:STRUCTDEF/MEMBERS1982,77652
(DEFINE-METHOD (SETF 1990,77903
(DEFINE-METHOD "MEMBERS" 1993,78038
(DEFINE-INTERFACE OMG.ORG/CORBA:UNIONDEF 1996,78152
(DEFINE-ATTRIBUTE OMG.ORG/CORBA:UNIONDEF/DISCRIMINATOR_TYPE2003,78476
(DEFINE-METHOD "DISCRIMINATOR_TYPE" 2011,78736
(DEFINE-ATTRIBUTE OMG.ORG/CORBA:UNIONDEF/DISCRIMINATOR_TYPE_DEF2014,78870
(DEFINE-METHOD (SETF 2022,79155
(DEFINE-METHOD "DISCRIMINATOR_TYPE_DEF" 2027,79415
(DEFINE-ATTRIBUTE OMG.ORG/CORBA:UNIONDEF/MEMBERS2030,79557
(DEFINE-METHOD (SETF 2038,79804
(DEFINE-METHOD "MEMBERS" 2041,79937
(DEFINE-INTERFACE OMG.ORG/CORBA:ENUMDEF 2044,80049
(DEFINE-ATTRIBUTE OMG.ORG/CORBA:ENUMDEF/MEMBERS2050,80272
(DEFINE-METHOD (SETF 2058,80515
(DEFINE-METHOD "MEMBERS" 2061,80646
(DEFINE-INTERFACE OMG.ORG/CORBA:ALIASDEF 2064,80756
(DEFINE-ATTRIBUTE OMG.ORG/CORBA:ALIASDEF/ORIGINAL_TYPE_DEF2070,80984
(DEFINE-METHOD (SETF 2078,81254
(DEFINE-METHOD "ORIGINAL_TYPE_DEF" 2082,81450
(DEFINE-INTERFACE OMG.ORG/CORBA:NATIVEDEF 2085,81582
(DEFINE-INTERFACE OMG.ORG/CORBA:VALUEBOXDEF 2091,81815
(DEFINE-ATTRIBUTE OMG.ORG/CORBA:VALUEBOXDEF/ORIGINAL_TYPE_DEF2097,82058
(DEFINE-METHOD (SETF 2105,82337
(DEFINE-METHOD "ORIGINAL_TYPE_DEF" 2110,82583
(DEFINE-INTERFACE OMG.ORG/CORBA:ABSTRACTINTERFACEDEF 2113,82721
(DEFINE-INTERFACE OMG.ORG/CORBA:LOCALINTERFACEDEF 2119,83013
clorb-ifr-export.lisp,942
(defclass OBJECT-INDEXER 11,155
(defmethod object-index 22,360
(defmethod index-object 29,586
(defconstant +oid-radix+ 36,706
(defun oid-integer 38,736
(defun integer-oid 41,820
(defgeneric translate 48,935
(defclass TRANSLATOR 72,1726
(defmethod objmap 75,1800
(defmethod the-poa 76,1857
(defclass LOCAL-TRANSLATOR 78,1917
(defmethod translate 80,1962
(defclass REMOTE-TRANSLATOR 83,2105
(defmethod translate 85,2151
(defclass SERVANT-WRAPPER 92,2394
(define-method _default_poa 106,2709
(define-method primary_interface 109,2781
(define-method _is_a 113,2935
(defmethod local-translator 117,3084
(defmethod remote-translator 121,3235
(defun make-remote 126,3390
(defun make-local 129,3471
(defun find-contained 133,3551
(defun wrapper-opinfo 141,3797
(define-method invoke 174,5306
(defvar *ifr-export-servant* 228,7294
(defvar *ifr-export-poa* 229,7328
(defun export-ifr 231,7359
(define-method _this 246,8025
clorb-ifr-info.lisp,533
(defun symbol-ifr-parent-id 4,22
(defun ifr-version 8,147
(defun ifr-kind 11,211
(defmethod generate-ifr-description 29,737
(defmethod generate-ifr-description 38,967
(defmethod generate-ifr-description 60,1919
(defclass desc-exceptiondef 103,3548
(define-method op:type 115,3946
(define-method op:members 117,4063
(define-method op:id 132,4543
(define-method op:name 134,4648
(define-method op:version 136,4761
(define-method op:describe146,5123
(define-method op:def_kind 175,6131
(define-method op:destroy 179,6248
clorb-ifr.lisp,5714
(defun register-ir-class 8,131
(defgeneric moveto 15,232
(defmacro define-ir-class 24,537
(define-ir-class IRObject 38,1040
(define-method op:destroy 44,1157
(defclass IRTypeCode-Mixin 48,1209
(defgeneric idltype-tc 51,1252
(define-method type 55,1378
(defmethod slot-updated 83,2596
(define-ir-class IDLType 87,2685
(define-ir-class Contained 95,2842
(defmethod print-object 107,3352
(defmethod (setf 111,3512
(defmethod (setf 121,3920
(define-method absolute_name 128,4173
(defmethod slot-updated 137,4553
(define-method describe 140,4643
(define-method "MOVE" 145,4781
(define-method op:destroy 154,5166
(define-ir-class Container 165,5442
(defmethod slot-updated 171,5613
(defun addto 175,5712
(defmethod moveto 187,6220
(define-method contents 207,7054
(define-method lookup_name215,7389
(defgeneric containerp 230,8116
(define-method lookup 235,8200
(define-method lookup 239,8288
(defun split-name 257,9027
(define-method op:describe_contents 265,9212
(define-method create_module 281,9860
(define-method create_constant 293,10340
(define-method create_struct 305,10834
(define-method create_exception 321,11459
(define-method create_union 338,12037
(define-method create_enum 359,12875
(define-method create_alias 372,13340
(define-method create_interface 385,13791
(define-method create_value_box 398,14331
(define-method create_native 409,14789
(define-method create_abstract_interface 419,15294
(define-method create_local_interface 431,15918
(define-method create_value 440,16221
(define-method op:destroy 463,17318
(define-ir-class Repository 472,17478
(define-method absolute_name 482,17802
(define-method containing_repository 485,17857
(defmethod subject-id 488,17917
(define-method lookup_id 493,18018
(define-method get_canonical_typecode 499,18149
(define-method get_primitive 515,18632
(define-method create_string 549,20203
(define-method create_wstring 555,20370
(define-method create_sequence 563,20574
(define-method create_array 574,20894
(define-method create_fixed 583,21132
(define-method op:destroy 589,21266
(define-ir-class module-def 597,21431
(defmethod describe-contained 601,21523
(define-ir-class constant-def 613,21878
(define-method type 619,22016
(defmethod describe-contained 622,22089
(define-ir-class interface-def 633,22367
(defmethod idltype-tc 637,22510
(define-method is_a 640,22614
(define-method describe_interface 647,22861
(defmethod describe-contained 660,23398
(define-method contents 668,23679
(defun check-unique-name 676,23957
(define-method (setf 680,24123
(define-method create_attribute 688,24377
(define-method create_operation 703,24931
(define-ir-class attribute-def 724,25763
(define-method type 730,25903
(defmethod describe-contained 733,25979
(define-ir-class operation-def 751,26402
(defun validate-operation-def 761,26696
(defun validate-operation-def-change 770,27083
(defmethod initialize-instance 777,27484
(defmethod (setf 781,27687
(defmethod (setf 784,27806
(defmethod (setf 787,27931
(defmethod (setf 790,28060
(defmethod result 793,28197
(defmethod op:params 796,28284
(defmethod opdef-inparam-typecodes 801,28443
(defmethod opdef-outparam-typecodes 807,28635
(defun operation-description 820,28992
(defmethod describe-contained 843,29692
(define-ir-class typedef-def 848,29794
(defmethod describe-contained 852,29887
(define-ir-class alias-def 868,30307
(defmethod idltype-tc 873,30424
(define-method op:destroy 877,30568
(define-ir-class struct-def 894,30961
(defmethod op:members 899,31081
(defmethod idltype-tc 905,31253
(define-ir-class union-def 921,31728
(define-method discriminator_type 927,31885
(defmethod op:members 930,31983
(defmethod idltype-tc 935,32176
(define-ir-class enum-def 956,33006
(defmethod idltype-tc 961,33110
(define-ir-class exception-def 968,33345
(defmethod op:members 974,33540
(defmethod idltype-tc 980,33715
(defmethod describe-contained 985,33876
(defmethod moveto 1000,34301
(defmethod moveto 1008,34555
(defmethod moveto 1016,34810
(define-ir-class primitive-def 1027,35089
(defmethod print-object 1034,35249
(define-method op:destroy 1038,35413
(define-ir-class string-def 1046,35636
(defmethod idltype-tc 1050,35741
(define-ir-class wstring-def 1057,35895
(defmethod idltype-tc 1062,36004
(define-ir-class sequence-def 1071,36259
(define-method element_type 1078,36511
(defmethod idltype-tc 1081,36600
(define-ir-class array-def 1090,36898
(define-method element_type 1095,37035
(defmethod idltype-tc 1098,37121
(define-ir-class fixed-def 1106,37324
(defmethod idltype-tc 1111,37452
(define-ir-class valuebox-def 1119,37633
(defmethod idltype-tc 1123,37758
(define-ir-class AbstractInterface-Def 1136,38210
(defmethod idltype-tc 1139,38328
(define-method is_a 1142,38441
(define-ir-class LocalInterface-Def 1156,38987
(defmethod idltype-tc 1159,39096
(define-method is_a 1162,39203
(define-ir-class Native-Def 1172,39501
(defmethod idltype-tc 1175,39584
(define-ir-class ValueMember-Def 1184,39829
(define-method "TYPE" 1190,40010
(defmethod describe-contained 1193,40088
(define-ir-class Value-Def 1221,40878
(defmethod idltype-tc 1231,41197
(define-method contents 1242,41736
(define-method initializers 1253,42245
(defun check-only-one-non-abstract 1258,42430
(define-method (setf 1265,42689
(defmethod initialize-instance 1273,42975
(defmethod moveto 1276,43113
(defmethod describe-contained 1285,43429
(defmethod subject-id 1308,44236
(define-method "DESCRIBE_VALUE" 1313,44322
(define-method is_a 1349,45644
(define-method create_value_member 1365,46253
(define-method create_attribute 1379,46798
(define-method create_operation 1393,47342
clorb-iiop.lisp,2650
(defconstant +iiop-header-size+ 6,67
(define-enum GIOP:MsgType_1_011,124
(DEFINE-ENUM GIOP:MSGTYPE_1_117,341
(DEFINE-STRUCT GIOP:VERSION23,569
(DEFINE-STRUCT GIOP:MESSAGEHEADER_1_029,745
(DEFINE-STRUCT GIOP:MESSAGEHEADER_1_138,1142
(DEFINE-STRUCT GIOP:LOCATEREQUESTHEADER47,1525
(define-enum GIOP:LocateStatusType53,1766
(DEFINE-STRUCT GIOP:LOCATEREPLYHEADER58,1937
(DEFINE-STRUCT GIOP:CANCELREQUESTHEADER64,2181
(DEFINE-STRUCT GIOP:REQUESTHEADER_1_069,2350
(DEFINE-STRUCT GIOP:REQUESTHEADER_1_179,2843
(define-enum GIOP:REPLYSTATUSTYPE91,3433
(DEFINE-STRUCT GIOP:REPLYHEADER97,3650
(define-alias GIOP:Principal104,3941
(defun make-giop-version 115,4129
(defun giop-version-major 121,4297
(defun giop-version-minor 125,4417
(defconstant giop-1-0 128,4531
(defconstant giop-1-1 129,4564
(define-symbol-macro message-types136,4632
(defun marshal-giop-header 141,4790
(defun marshal-giop-set-message-length 159,5536
(defun marshal-service-context 167,5734
(defun unmarshal-service-context 174,6046
(DEFINE-STRUCT IIOP:VERSION184,6268
(DEFINE-STRUCT IIOP:PROFILEBODY_1_0190,6444
(DEFINE-STRUCT IIOP:PROFILEBODY_1_1198,6778
(defun make-iiop-version 210,7225
(defun iiop-version-major 216,7391
(defun iiop-version-minor 217,7442
(defstruct IIOP-PROFILE225,7521
(defmethod profile-short-desc 233,7665
(defmethod profile-equal 239,7875
(defmethod profile-hash 244,8171
(defmethod profile-component 249,8373
(defmethod decode-ior-profile 252,8487
(defun unmarshal-iiop-componets 256,8608
(defun marshal-iiop-components 270,9189
(defun unmarshal-iiop-profile-body 284,9701
(defmethod encode-profile 296,10102
(defmethod profile-giop-version 317,10818
(defmethod profile-giop-key 321,10966
(defun marshal-locate-request 329,11090
(defun marshal-request-message 336,11324
(defun connection-get-buffer 354,12037
(defun connection-start-request 358,12129
(defun connection-reply 379,12896
(defun server-close-connection-msg 403,13905
(defun connection-message-error 411,14147
(defun unmarshal-giop-header 424,14491
(defun get-fragment 445,15265
(defun get-fragment-last 450,15433
(defun get-response-0 459,15728
(defun get-response-reply 489,16856
(defun get-response-locate-reply 499,17226
(defun setup-outgoing-connection 513,17578
(defclass connection-pool 522,17753
(defun %get-iiop-connection-holder 532,18028
(defun get-connection-from-pool 547,18529
(defvar *iiop-connections* 588,20002
(defun get-iiop-connection 591,20065
(defmethod profile-connection 601,20331
(defmethod profile-connection 606,20520
(defun locate 614,20679
(defun get-attribute 631,21331
(defun set-attribute 636,21502
clorb-iir.lisp,777
(defstruct INTERFACE8,78
(define-slot-dumper interface)13,129
(defmethod find-opdef 16,162
(define-method is_a 25,490
(defun print-interface 31,666
(defmethod print-object 37,863
(defvar *repository*53,1151
(defvar *typecode-repository*56,1208
(defun add-interface 59,1274
(defun get-interface 64,1380
(defun known-interface 70,1558
(defun known-idl-type 73,1616
(defun add-typecode-with-id 79,1796
(defun get-typecode 83,1976
(defun simplify-type 90,2146
(defparameter *object-interface*111,3029
(defun get-ir 130,3665
(defun ir-lookup-id 134,3760
(defun opdef-from-attrdef 151,4240
(defun opdef-from-ir 168,4945
(defun ir-contents 187,5853
(defun interface-from-def-cached 203,6444
(defun interface-from-def 208,6628
(defun typecode-from-def 222,7143
clorb-io.lisp,3196
(defparameter *io-background-write-treshold* 27,758
(defvar *io-system-default-class* 29,809
(defvar *io-system* 31,878
(defvar *io-listener* 33,904
(defgeneric io-system-queue-event 40,1011
(defgeneric io-system-event-waiting-p 41,1061
(defgeneric io-system-get-event 42,1109
(defun io-queue-event 45,1176
(defstruct io-descriptor52,1290
(defmethod lock 75,1852
(defun io-describe-descriptor 78,1919
(defmethod print-object 93,2488
(defun make-octet-stream 116,3296
(defun make-shortcut-stream 140,4092
(defun io-shortcut-write 148,4368
(defun io-shortcut-read 151,4476
(defun io-descriptor-shortcut-connect 155,4583
(defclass io-system 170,5078
(defmethod io-system-queue-event 180,5310
(defmethod io-system-get-event 183,5402
(defmethod io-system-event-waiting-p 189,5632
(defun io-system-switch 193,5738
(defgeneric io-ready-for-read 198,5837
(defgeneric io-ready-for-write 202,5956
(defgeneric io-system-reset 212,6306
(defgeneric io-system-add-descriptor 228,6918
(defgeneric io-system-delete-descriptor 234,7112
(defvar *last-io-port* 243,7272
(defun io-reset 245,7301
(defun io-create-listener 257,7563
(defvar *seq-io-desc* 265,7841
(defun io-create-descriptor 267,7867
(defun io-descriptor-associate-connection 278,8251
(defun %io-descriptor-close 282,8354
(defun io-descriptor-destroy 289,8576
(defun io-descriptor-close 308,9368
(defun io-descriptor-shutdown 314,9514