-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCOs.unique
1669 lines (1669 loc) · 39.4 KB
/
COs.unique
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
0' notified class COsRegistry::CEvtRegistryUpdated
0OsBCOsMutex527
0SemCOsMutex526
2.1COsMutex508
adRCOsSync126
ANACOsMutex365
.?AUSBaseParams@COsTransport@@
.?AUSParams2@COsMsgQueueTransport@@
.?AUSParams@COsMsgQueueTransport@@
.?AUSParams@COsSerialComTransport@@
.?AUSParams@COsTcpTransport@@
.?AUSParams@COsUdpTransport@@
.?AV?$CASyncMethodRequestNoResult1ParamT@VCMmiMgrController@@V?$COsHandleT@VCDatabase2@@@@@@
.?AVCBool@COsRegistry@@
.?AVCByteArray@COsRegistry@@
.?AVCCoutOutput@COsLog@@
.?AVCData@COsRegistry@@
.?AVCDisplayMsgFilter@COsTransport@@
.?AVCDouble@COsRegistry@@
.?AVCEvtFutureIsReady@?$COsFutureT@_N@@
.?AVCEvtFutureIsReady@?$COsFutureT@USUploadResult@@@@
.?AVCEvtFutureIsReady@?$COsFutureT@W4EStatus@CFtpClient@@@@
.?AVCEvtPeerConnected@COsMessageBroker@@
.?AVCEvtPeerNotConnected@COsMessageBroker@@
.?AVCEvtReadCompleted@COsUdpCom@@
.?AVCEvtRegistryUpdated@COsRegistry@@
.?AVCEvtTimerHasExpired@COsTimer@@
.?AVCEvtWatchdogNotRefreshed@COsWatchableManager@@
.?AVCFileOutput@COsLog@@
.?AVCFilter@COsTransport@@
.?AVCInt@COsRegistry@@
.?AV?$CLogStreambufT@DU?$char_traits@D@std@@@COsLog@@
.?AVCNode@COsRegistry@@
.?AVCOsBaseFactory@@
.?AV?$COsBaseFactoryT@VCCryptoflexSingletonDeviceFactory@@@@
.?AV?$COsBaseFactoryT@VCIorFinder@CSpsProxyCorba@@@@
.?AV?$COsBaseFactoryT@VCOsTransport@@@@
.?AV?$COsBaseFactoryT@VCProtocol@CScard@@@@
.?AV?$COsBaseFactoryT@VCTransactionLog@@@@
.?AV?$COsBaseFactoryT@VIAccessCodes@@@@
.?AV?$COsBaseFactoryT@VIAuditLog@@@@
.?AV?$COsBaseFactoryT@VIBatterySensor@@@@
.?AV?$COsBaseFactoryT@VICardProcessing@@@@
.?AV?$COsBaseFactoryT@VICommandExecute@@@@
.?AV?$COsBaseFactoryT@VICommandSet@@@@
.?AV?$COsBaseFactoryT@VICommandSetImplementation@@@@
.?AV?$COsBaseFactoryT@VICryptoModule@@@@
.?AV?$COsBaseFactoryT@VIDataFormat@@@@
.?AV?$COsBaseFactoryT@VIDisplay@@@@
.?AV?$COsBaseFactoryT@VIEodFileFormat@@@@
.?AV?$COsBaseFactoryT@VIEodMgrController@@@@
.?AV?$COsBaseFactoryT@VIEquipmentAndSpsAuthentication@@@@
.?AV?$COsBaseFactoryT@VIFileLog@@@@
.?AV?$COsBaseFactoryT@VIFileMgrController@@@@
.?AV?$COsBaseFactoryT@VIFileMgrSpecific@@@@
.?AV?$COsBaseFactoryT@VIGraphicDevice@@@@
.?AV?$COsBaseFactoryT@VIInstallRule@@@@
.?AV?$COsBaseFactoryT@VILedDevice@@@@
.?AV?$COsBaseFactoryT@VIMaintenanceMgr@@@@
.?AV?$COsBaseFactoryT@VIMaintenanceMgrController@@@@
.?AV?$COsBaseFactoryT@VIMaintenanceTest@@@@
.?AV?$COsBaseFactoryT@VIMediaRw@@@@
.?AV?$COsBaseFactoryT@VIMediaRwAuthentication@@@@
.?AV?$COsBaseFactoryT@VIMediaRwProxy@@@@
.?AV?$COsBaseFactoryT@VIMmiMgrController@@@@
.?AV?$COsBaseFactoryT@VIMode@@@@
.?AV?$COsBaseFactoryT@VIPackageController@@@@
.?AV?$COsBaseFactoryT@VIPersistentDevice@@@@
.?AV?$COsBaseFactoryT@VISpeakerDevice@@@@
.?AV?$COsBaseFactoryT@VISpecificEodMgr@@@@
.?AV?$COsBaseFactoryT@VISpsProxy@@@@
.?AV?$COsBaseFactoryT@VIStateMachine@@@@
.?AV?$COsBaseFactoryT@VIStatusController@@@@
.?AV?$COsBaseFactoryT@VIStatusPersistentOrigin@@@@
.?AV?$COsBaseFactoryT@VIStatusTarget@@@@
.?AV?$COsBaseFactoryT@VITemperatureSensor@@@@
.?AV?$COsBaseFactoryT@VITicketProcessing@@@@
.?AV?$COsBaseFactoryT@VITimeParameters@@@@
.?AV?$COsBaseFactoryT@VITimeSyncProxy@@@@
.?AV?$COsBaseFactoryT@VITpl@@@@
.?AV?$COsBaseFactoryT@VITplTransactionLogger@@@@
.?AV?$COsBaseFactoryT@VITransactionLogger@@@@
.?AV?$COsBaseFactoryT@VIWatchdog@@@@
.?AVCOsBaseShell@@
.?AVCOsBaseSingleton@@
.?AVCOsBinarySem@@
.?AVCOsCondition@@
.?AVCOsCountingSem@@
.?AVCOsEventObserver@@
.?AV?$COsEventObserverT@VCAuditEvent@@@@
.?AV?$COsEventObserverT@VCEvtAllUploadDone@IFileMgr@@@@
.?AV?$COsEventObserverT@VCEvtBatteryAlarm@IBatteryMonitor@@@@
.?AV?$COsEventObserverT@VCEvtBatteryNormal@IBatteryMonitor@@@@
.?AV?$COsEventObserverT@VCEvtBatteryWarning@IBatteryMonitor@@@@
.?AV?$COsEventObserverT@VCEvtCardDetected@IMediaRw@@@@
.?AV?$COsEventObserverT@VCEvtCmdDownloadEodFiles@ICommandExecute@@@@
.?AV?$COsEventObserverT@VCEvtCmdFareMode@ICommandExecute@@@@
.?AV?$COsEventObserverT@VCEvtCmdInService@ICommandExecute@@@@
.?AV?$COsEventObserverT@VCEvtCmdOutOfService@ICommandExecute@@@@
.?AV?$COsEventObserverT@VCEvtCmdSendVersions@ICommandExecute@@@@
.?AV?$COsEventObserverT@VCEvtCmdUploadCurrentDataFile@ICommandExecute@@@@
.?AV?$COsEventObserverT@VCEvtCmdUploadDataFiles@ICommandExecute@@@@
.?AV?$COsEventObserverT@VCEvtConnected@IHostComputerMgr@@@@
.?AV?$COsEventObserverT@VCEvtConnected@IMediaRw@@@@
.?AV?$COsEventObserverT@VCEvtConnected@ISpsExchanger@@@@
.?AV?$COsEventObserverT@VCEvtDataChanged@@@@
.?AV?$COsEventObserverT@VCEvtDisconnected@IHostComputerMgr@@@@
.?AV?$COsEventObserverT@VCEvtDisconnected@IMediaRw@@@@
.?AV?$COsEventObserverT@VCEvtDisconnected@ISpsExchanger@@@@
.?AV?$COsEventObserverT@VCEvtDiskAlmostFull@CDiskMon@@@@
.?AV?$COsEventObserverT@VCEvtDiskAlmostFull@IDiskMonitor@@@@
.?AV?$COsEventObserverT@VCEvtDiskFull@CDiskMon@@@@
.?AV?$COsEventObserverT@VCEvtDiskFull@IDiskMonitor@@@@
.?AV?$COsEventObserverT@VCEvtDiskNoLongerFull@CDiskMon@@@@
.?AV?$COsEventObserverT@VCEvtDiskNoLongerFull@IDiskMonitor@@@@
.?AV?$COsEventObserverT@VCEvtDiskReadError@CDiskMon@@@@
.?AV?$COsEventObserverT@VCEvtEndEodActivation@CEodManager@@@@
.?AV?$COsEventObserverT@VCEvtEndInitialization@@@@
.?AV?$COsEventObserverT@VCEvtEndLoadInitialConfig@@@@
.?AV?$COsEventObserverT@VCEvtEodDownloaded@CEodManager@@@@
.?AV?$COsEventObserverT@VCEvtEodLoaded@CEodManager@@@@
.?AV?$COsEventObserverT@VCEvtEodUpdated@CEodManager@@@@
.?AV?$COsEventObserverT@VCEvtFailToConnect@IMediaRw@@@@
.?AV?$COsEventObserverT@VCEvtFailToConnect@ISpsExchanger@@@@
.?AV?$COsEventObserverT@VCEvtFutureIsReady@?$COsFutureT@_N@@@@
.?AV?$COsEventObserverT@VCEvtFutureIsReady@?$COsFutureT@USUploadResult@@@@@@
.?AV?$COsEventObserverT@VCEvtGetKeyVersion@ISpsExchanger@@@@
.?AV?$COsEventObserverT@VCEvtGetModuleConfiguration@ISpsExchanger@@@@
.?AV?$COsEventObserverT@VCEvtIFSEvent@@@@
.?AV?$COsEventObserverT@VCEvtKeysChanged@IMediaRw@@@@
.?AV?$COsEventObserverT@VCEvtLogin@IMaintenanceMgr@@@@
.?AV?$COsEventObserverT@VCEvtLogout@IMaintenanceMgr@@@@
.?AV?$COsEventObserverT@VCEvtModeChanged@CMode@@@@
.?AV?$COsEventObserverT@VCEvtNotReady@ITicketProcessing@@@@
.?AV?$COsEventObserverT@VCEvtReadCompleted@COsUdpCom@@@@
.?AV?$COsEventObserverT@VCEvtReady@ITicketProcessing@@@@
.?AV?$COsEventObserverT@VCEvtRequestMode@ModeManagerSpace@@@@
.?AV?$COsEventObserverT@VCEvtSetStationContext@ISpsExchanger@@@@
.?AV?$COsEventObserverT@VCEvtSetTime@@@@
.?AV?$COsEventObserverT@VCEvtStartBusinessDay@@@@
.?AV?$COsEventObserverT@VCEvtStartEodActivation@CEodManager@@@@
.?AV?$COsEventObserverT@VCEvtStatusChanged@CStatusElement@@@@
.?AV?$COsEventObserverT@VCEvtStopBusinessDay@@@@
.?AV?$COsEventObserverT@VCEvtTemperatureAlarm@ITemperatureMonitor@@@@
.?AV?$COsEventObserverT@VCEvtTemperatureNormal@ITemperatureMonitor@@@@
.?AV?$COsEventObserverT@VCEvtTemperatureWarning@ITemperatureMonitor@@@@
.?AV?$COsEventObserverT@VCEvtTimeDeviationStatus@@@@
.?AV?$COsEventObserverT@VCEvtTimerHasExpired@COsTimer@@@@
.?AV?$COsEventObserverT@VCEvtTimeTable@@@@
.?AV?$COsEventObserverT@VCEvtTransactionFinished@CNSROCardValidation@@@@
.?AV?$COsEventObserverT@VCEvtTransactionStarted@CNSROCardValidation@@@@
.?AV?$COsEventObserverT@VCEvtUpdateKey@ISpsExchanger@@@@
.?AV?$COsEventObserverT@VCEvtUploadDone@IFileMgr@@@@
.?AV?$COsEventObserverT@VCEvtWatchdogNotRefreshed@COsWatchableManager@@@@
.?AV?$COsEventObserverT@VCLoginEvent@@@@
.?AVCOsEventProvider@@
.?AV?$COsEventProviderT@VCEvtDisplay@@@@
.?AV?$COsEventProviderT@VCEvtInstallRuleFailure@@@@
.?AV?$COsEventProviderT@VCEvtPackageManagerCheckDone@@@@
.?AV?$COsEventProviderT@VCEvtPackageManagerFailure@@@@
.?AVCOsException@@
.?AV?$COsFactoryT@VCCryptoflexSingletonDeviceFactory@@VCCryptoflexThalesCscrw0SingletonDeviceFactory@@@@
.?AV?$COsFactoryT@VCCryptoflexSingletonDeviceFactory@@VCCryptoflexThalesCscrw1SingletonDeviceFactory@@@@
.?AV?$COsFactoryT@VCCryptoflexSingletonDeviceFactory@@VCCryptoflexThalesCscrw2SingletonDeviceFactory@@@@
.?AV?$COsFactoryT@VCCryptoflexSingletonDeviceFactory@@VCCryptoflexThalesCscrw3SingletonDeviceFactory@@@@
.?AV?$COsFactoryT@VCIorFinder@CSpsProxyCorba@@VCNameServiceIorFinder@@@@
.?AV?$COsFactoryT@VCIorFinder@CSpsProxyCorba@@VCUdpIorFinder@@@@
.?AV?$COsFactoryT@VCOsTransport@@VCOsMsgQueueTransport@@@@
.?AV?$COsFactoryT@VCOsTransport@@VCOsSerialComTransport@@@@
.?AV?$COsFactoryT@VCOsTransport@@VCOsTcpTransport@@@@
.?AV?$COsFactoryT@VCOsTransport@@VCOsUdpTransport@@@@
.?AV?$COsFactoryT@VCProtocol@CScard@@VCScardThalesCSCRWProtocol@@@@
.?AV?$COsFactoryT@VCTransactionLog@@VCTransactionLogXDR@@@@
.?AV?$COsFactoryT@VIAccessCodes@@VCAccessCodesIfsv2@@@@
.?AV?$COsFactoryT@VIAllocate@@VCAllocateLinear@@@@
.?AV?$COsFactoryT@VIAuditLog@@VCAuditLogXDR@@@@
.?AV?$COsFactoryT@VIBatterySensor@@VCNTXV4BatterySensor@@@@
.?AV?$COsFactoryT@VIBatterySensor@@VCSimulatedBatterySensor@@@@
.?AV?$COsFactoryT@VICardProcessing@@VCCardInformation@@@@
.?AV?$COsFactoryT@VICardProcessing@@VCCardValidation@@@@
.?AV?$COsFactoryT@VICardProcessing@@VCNSROCardValidation@@@@
.?AV?$COsFactoryT@VICommandExecute@@VCNSROCommandSetExecute@@@@
.?AV?$COsFactoryT@VICommandSetImplementation@@VCSPSCommandSetImpl@@@@
.?AV?$COsFactoryT@VICommandSet@@VCNdlCommandSet@@@@
.?AV?$COsFactoryT@VICryptoModule@@VCCryptoflexCryptoModule@@@@
.?AV?$COsFactoryT@VICryptoModule@@VCNSROEmptyCryptoModule@@@@
.?AV?$COsFactoryT@VICryptoModule@@VCSoftCryptoModule@@@@
.?AV?$COsFactoryT@VIDataFormat@@VCNSRODataFormat@@@@
.?AV?$COsFactoryT@VIDisplay@@VCGraphicDisplay@@@@
.?AV?$COsFactoryT@VIDisplay@@VCLedDisplay@@@@
.?AV?$COsFactoryT@VIDisplay@@VCTextDisplay@@@@
.?AV?$COsFactoryT@VIEodFileFormat@@VCNdlEodAdditionalFileFormat@@@@
.?AV?$COsFactoryT@VIEodFileFormat@@VCNdlEodFormattedFileFormat@@@@
.?AV?$COsFactoryT@VIEodFileFormat@@VCValMasterConfFormat@@@@
.?AV?$COsFactoryT@VIEodMgrController@@VCEodMgrController@@@@
.?AV?$COsFactoryT@VIEodMgrController@@VCValEodMgrController@@@@
.?AV?$COsFactoryT@VIEquipmentAndSpsAuthentication@@VCAuthenticationIFSV2@@@@
.?AV?$COsFactoryT@VIFileLog@@VCEventMgrLogXDR@@@@
.?AV?$COsFactoryT@VIFileMgrController@@VCFileMgrController@@@@
.?AV?$COsFactoryT@VIFileMgrController@@VCValFileMgrController@@@@
.?AV?$COsFactoryT@VIFileMgrSpecific@@VCFileMgrXDR@@@@
.?AV?$COsFactoryT@VIGraphicDevice@@VCGraphicDevice_WinCEGDI@@@@
.?AV?$COsFactoryT@VIInstallRule@@VCInstallRuleApp@@@@
.?AV?$COsFactoryT@VIInstallRule@@VCInstallRuleDat@@@@
.?AV?$COsFactoryT@VIInstallRule@@VCInstallRuleFpm@@@@
.?AV?$COsFactoryT@VIInstallRule@@VCInstallRuleLoader@@@@
.?AV?$COsFactoryT@VIInstallRule@@VCInstallRuleReg@@@@
.?AV?$COsFactoryT@VIInstallRule@@VCInstallRuleSnd@@@@
.?AV?$COsFactoryT@VIInstallRule@@VCInstallRuleWeb@@@@
.?AV?$COsFactoryT@VIInstallRule@@VCInstallRuleWin@@@@
.?AV?$COsFactoryT@VILedDevice@@VCLedDevice_IO@@@@
.?AV?$COsFactoryT@VILedDevice@@VCLedDevice_NTX@@@@
.?AV?$COsFactoryT@VIMaintenanceMgrController@@VCMaintenanceMgrController@@@@
.?AV?$COsFactoryT@VIMaintenanceMgr@@VCMaintenanceMgr@@@@
.?AV?$COsFactoryT@VIMaintenanceTest@@VCAuditRegisterTest@@@@
.?AV?$COsFactoryT@VIMaintenanceTest@@VCBatteryTest@@@@
.?AV?$COsFactoryT@VIMaintenanceTest@@VCCryptoModuleTest@@@@
.?AV?$COsFactoryT@VIMaintenanceTest@@VCDateTimeTest@@@@
.?AV?$COsFactoryT@VIMaintenanceTest@@VCEODVersionTest@@@@
.?AV?$COsFactoryT@VIMaintenanceTest@@VCHostComputerTest@@@@
.?AV?$COsFactoryT@VIMaintenanceTest@@VCLedDisplayTest@@@@
.?AV?$COsFactoryT@VIMaintenanceTest@@VCMediaRwTest@@@@
.?AV?$COsFactoryT@VIMaintenanceTest@@VCMemoryTest@@@@
.?AV?$COsFactoryT@VIMaintenanceTest@@VCModeTest@@@@
.?AV?$COsFactoryT@VIMaintenanceTest@@VCNSROMediaRwTest@@@@
.?AV?$COsFactoryT@VIMaintenanceTest@@VCRebootTest@@@@
.?AV?$COsFactoryT@VIMaintenanceTest@@VCSessionMgmt@@@@
.?AV?$COsFactoryT@VIMaintenanceTest@@VCSpeakerTest@@@@
.?AV?$COsFactoryT@VIMaintenanceTest@@VCStandaloneMode@@@@
.?AV?$COsFactoryT@VIMaintenanceTest@@VCStatusTest@@@@
.?AV?$COsFactoryT@VIMaintenanceTest@@VCTemperatureTest@@@@
.?AV?$COsFactoryT@VIMaintenanceTest@@VCVersionTestBase@@@@
.?AV?$COsFactoryT@VIMaintenanceTest@@VCVersionTestNSRO@@@@
.?AV?$COsFactoryT@VIMediaRwAuthentication@@VCBasicAuthentication@@@@
.?AV?$COsFactoryT@VIMediaRwAuthentication@@VCIFSV2Authentication@@@@
.?AV?$COsFactoryT@VIMediaRwProxy@@VCThalesV3RwProxy@@@@
.?AV?$COsFactoryT@VIMediaRwProxy@@VCThalesV3RwProxyKeyLost@@@@
.?AV?$COsFactoryT@VIMediaRw@@VCMediaRw@@@@
.?AV?$COsFactoryT@VIMmiMgrController@@VCNSROMmiMgrController@@@@
.?AV?$COsFactoryT@VIMode@@VCModeInService@@@@
.?AV?$COsFactoryT@VIMode@@VCModeMaintenance@@@@
.?AV?$COsFactoryT@VIMode@@VCModeOutOfOrder@@@@
.?AV?$COsFactoryT@VIMode@@VCModeOutOfService@@@@
.?AV?$COsFactoryT@VIMode@@VCModeStandBy@@@@
.?AV?$COsFactoryT@VIPackageController@@VCValPackageController@@@@
.?AV?$COsFactoryT@VIPersistentDevice@@VCPersistentDeviceFileMapping@@@@
.?AV?$COsFactoryT@VIPersistentDevice@@VCPersistentDeviceSRAM@@@@
.?AV?$COsFactoryT@VISpeakerDevice@@VCSpeakerDevice_OnBoard@@@@
.?AV?$COsFactoryT@VISpecificEodMgr@@VCSpecificEodMgr1@@@@
.?AV?$COsFactoryT@VISpsProxy@@VCSpsProxyCorba@@@@
.?AV?$COsFactoryT@VIStateMachine@@VCNSROInitialization@@@@
.?AV?$COsFactoryT@VIStatusController@@VCNSROStatusController@@@@
.?AV?$COsFactoryT@VIStatusController@@VCValStatusController@@@@
.?AV?$COsFactoryT@VIStatusPersistentOrigin@@VCValStatusPersistentOrigin@@@@
.?AV?$COsFactoryT@VIStatusTarget@@VCValStatusTargetEvtMgr@@@@
.?AV?$COsFactoryT@VITemperatureSensor@@VCNTXV4TemperatureSensor@@@@
.?AV?$COsFactoryT@VITemperatureSensor@@VCSimulatedTemperatureSensor@@@@
.?AV?$COsFactoryT@VITicketProcessing@@VCTicketProcessing@@@@
.?AV?$COsFactoryT@VITimeParameters@@VCValEodTimeParameters@@@@
.?AV?$COsFactoryT@VITimeSyncProxy@@VCTimeSyncProxySntp@@@@
.?AV?$COsFactoryT@VITplTransactionLogger@@VCTransactionLogger@@@@
.?AV?$COsFactoryT@VITpl@@VCNdlTpl@@@@
.?AV?$COsFactoryT@VITransactionLogger@@VCTransactionLoggerXDR@@@@
.?AV?$COsFactoryT@VIWatchdog@@VCHardwareWatchdog_NTX@@@@
.?AV?$COsFutureT_@_N@@
.?AV?$COsFutureT@_N@@
.?AV?$COsFutureT_@USUploadResult@@@@
.?AV?$COsFutureT@USUploadResult@@@@
.?AV?$COsFutureT_@W4EStatus@CFtpClient@@@@
.?AV?$COsFutureT@W4EStatus@CFtpClient@@@@
.?AVCOsMessage@@
.?AVCOsMessageBroker@@
.?AVCOsMessageIn@@
.?AVCOsMessageOut@@
.?AVCOsMsgQueue@@
.?AV?$COsMsgQueueT@PAVCOsTimer@@@@
.?AV?$COsMsgQueueT@PAVIOsAsyncMethodRequest@@@@
.?AVCOsMsgQueueTransport@@
.?AVCOsMutex@@
.?AVCOsObject@@
.?AV?$COsObjectTypeT@VCDiskMon@@@@
.?AV?$COsObjectTypeT@VCEodRWMutex@@@@
.?AV?$COsObjectTypeT@VCFtpClient@@@@
.?AV?$COsObjectTypeT@VCOsBinarySem@@@@
.?AV?$COsObjectTypeT@VCOsCondition@@@@
.?AV?$COsObjectTypeT@VCOsCountingSem@@@@
.?AV?$COsObjectTypeT@VCOsEventObserver@@@@
.?AV?$COsObjectTypeT@VCOsEventProvider@@@@
.?AV?$COsObjectTypeT@VCOsMessageBroker@@@@
.?AV?$COsObjectTypeT@VCOsMsgQueue@@@@
.?AV?$COsObjectTypeT@VCOsMutex@@@@
.?AV?$COsObjectTypeT@VCOsObjQueue@@@@
.?AV?$COsObjectTypeT@VCOsRWMutex@@@@
.?AV?$COsObjectTypeT@VCOsSerialCom@@@@
.?AV?$COsObjectTypeT@VCOsServer@@@@
.?AV?$COsObjectTypeT@VCOsServerStub@@@@
.?AV?$COsObjectTypeT@VCOsSync@@@@
.?AV?$COsObjectTypeT@VCOsTcpClientCom@@@@
.?AV?$COsObjectTypeT@VCOsTcpServerCom@@@@
.?AV?$COsObjectTypeT@VCOsThread@@@@
.?AV?$COsObjectTypeT@VCOsTimer@@@@
.?AV?$COsObjectTypeT@VCOsUdpCom@@@@
.?AVCOsObjQueue@@
.?AV?$COsObjQueueT@V?$COsHandleT@VIIFSEvent@@@@@@
.?AVCOsQueue@@
.?AVCOsRefCount@@
.?AVCOsRegistry@@
.?AVCOsRemoteException@@
.?AVCOsRWMutex@@
.?AVCOsSem@@
.?AVCOsSerialCom@@
.?AVCOsSerialComTransport@@
.?AVCOsServer@@
.?AVCOsServerStub@@
.?AVCOsSingletonManager@@
.?AV?$COsSingletonT@VCCommonThreadedTimersThread@@@@
.?AV?$COsSingletonT@VCCryptoflexCommands@@@@
.?AV?$COsSingletonT@VCCryptoflexThalesCscrw0@@@@
.?AV?$COsSingletonT@VCCryptoflexThalesCscrw1@@@@
.?AV?$COsSingletonT@VCCryptoflexThalesCscrw2@@@@
.?AV?$COsSingletonT@VCCryptoflexThalesCscrw3@@@@
.?AV?$COsSingletonT@VCEodManager@@@@
.?AV?$COsSingletonT@VCEventProcessor@@@@
.?AV?$COsSingletonT@VCOsClock@@@@
.?AV?$COsSingletonT@VCOsFileLockManager@@@@
.?AV?$COsSingletonT@VCOsLog@@@@
.?AV?$COsSingletonT@VCOsObjectCatalogue@@@@
.?AV?$COsSingletonT@VCOsTheEventProviders@@@@
.?AV?$COsSingletonT@VCOsTheRegistry@@@@
.?AV?$COsSingletonT@VCOsWatchableManager@@@@
.?AV?$COsSingletonT@VCSecurityMgr@@@@
.?AV?$COsSingletonT@VCTheAuditRegisterMgr@@@@
.?AV?$COsSingletonT@VCTheBatteryMonitor@@@@
.?AV?$COsSingletonT@VCTheCardProcessingMgr@@@@
.?AV?$COsSingletonT@VCTheDiskMonitor@@@@
.?AV?$COsSingletonT@VCTheDisplayManager@@@@
.?AV?$COsSingletonT@VCTheDummyThreads@@@@
.?AV?$COsSingletonT@VCTheEventMgr@@@@
.?AV?$COsSingletonT@VCTheFileMgr@@@@
.?AV?$COsSingletonT@VCTheHostComputerMgr@@@@
.?AV?$COsSingletonT@VCTheIICProxy@@@@
.?AV?$COsSingletonT@VCTheLogger@@@@
.?AV?$COsSingletonT@VCTheMainController@@@@
.?AV?$COsSingletonT@VCTheMaintenanceMgr@@@@
.?AV?$COsSingletonT@VCTheMediaRwMgr@@@@
.?AV?$COsSingletonT@VCTheMMIManager@@@@
.?AV?$COsSingletonT@VCTheModeManager@@@@
.?AV?$COsSingletonT@VCThePackageManager@@@@
.?AV?$COsSingletonT@VCThePersistentContext@@@@
.?AV?$COsSingletonT@VCTheSpeakerManager@@@@
.?AV?$COsSingletonT@VCTheSpsExchanger@@@@
.?AV?$COsSingletonT@VCTheStatusManager@@@@
.?AV?$COsSingletonT@VCTheTemperatureMonitor@@@@
.?AV?$COsSingletonT@VCTheTicketProcessingMgr@@@@
.?AV?$COsSingletonT@VCTheTimeMonitoring@@@@
.?AV?$COsSingletonT@VCTheTransactionDispatcher@@@@
.?AV?$COsSingletonT@VCTheTransactionLogMgr@@@@
.?AVCOsStubMethod@@
.?AV?$COsStubMethodT@VCRequestServer@@@@
.?AVCOsSync@@
.?AVCOsTcpClientCom@@
.?AVCOsTcpServerCom@@
.?AVCOsTcpTransport@@
.?AVCOsTcpTransportServer@@
.?AVCOsTheRegistry@@
.?AVCOsThread@@
.?AVCOsTimeout@@
.?AVCOsTimer@@
.?AVCOsTransport@@
.?AVCOsUdpCom@@
.?AVCOsUdpTransport@@
.?AVCOsWatchable@@
.?AVCOsWatchableManager@@
.?AVCOsWatchableServer@@
.?AVCOutputStream@COsLog@@
.?AVCRecBuf@COsUdpCom@@
.?AVCSerialOutput@COsLog@@
.?AVCString@COsRegistry@@
.?AVCTcpClientOutput@COsLog@@
.?AVCTcpServerOutput@COsLog@@
.?AVCTransactionChannel@COsTcpServerCom@@
.?AVCTransactionChannelThread@COsTcpServerCom@@
.?AVCWinDbgOutput@COsLog@@
.?AVExBufferOverflow@COsMessageOut@@
.?AVExBufferUnderflow@COsMessageIn@@
.?AVExCantInitialize@COsMessageBroker@@
.?AVExCantInitialize@COsSerialCom@@
.?AVExCantInitialize@COsTcpClientCom@@
.?AVExCantInitialize@COsTcpServerCom@@
.?AVExCantInitialize@COsUdpCom@@
.?AVExCantInitialize@COutputStream@COsLog@@
.?AVExCantJoin@COsThread@@
.?AVExCantStart@COsThread@@
.?AVExCantSubscribe@COsEventProvider@@
.?AVExCantSubscribe@COsTheEventProviders@@
.?AVExExitedWithUnhandledException@COsThread@@
.?AV?$ExInstanceNotCreated@VCOsBaseShell@@@@
.?AVExInvokeTimeout@COsMessageBroker@@
.?AVExMessageMismatch@COsMessageBroker@@
.?AVExNoTransport@COsMessageBroker@@
.?AVExNotReady@?$COsFutureT@_N@@
.?AVExNotReady@?$COsFutureT@USUploadResult@@@@
.?AVExNotReady@?$COsFutureT@W4EStatus@CFtpClient@@@@
.?AVExPeerNotConnected@COsMessageBroker@@
.?AVExRemoteUnhandledException@COsMessageBroker@@
.?AVExRemoteUnknownMethodException@COsMessageBroker@@
.?AVExRemoteUnknownServerStubException@COsMessageBroker@@
.?AVExRunAborted@COsThread@@
.?AVExUnknownRemoteException@COsMessageBroker@@
CEventController::onEvent(COsEventProvider &Provider,const CEvtIFSEvent &EvtEvent)
<class COsBi
class COsFutureT<bool>::CEvtFutureIsReady
class COsFutureT<struct SUploadResult>::CEvtFutureIsReady
class COsFutureT<struct SUploadRH
class COsMessageBroker::CEvtPeerConnected
class COsMessageBroker::CEvtPeerNotConnected
class COsMutex
class COsObjectTypeT<class CDiskMon>
class COsObjectTypeT<class CEodRWMutex>
class COsObjectTypeT<class COsBinarySem>
class COsObjectTypeT<class COsCondition>
class COsObjectTypeT<class COsCountingSem>
class COsObjectTypeT<class COsEventObserver>
class COsObjectTypeT<class COsEventProvider>
class COsObjectTypeT<class COsMessageBroker>
class COsObjectTypeT<class COsMsgQueue>
class COsObjectTypeT<class COsMutex>
class COsObjectTypeT<class COsObjQueue>
class COsObjectTypeT<class COsRWMutex>
class COsObjectTypeT<class COsServer>
class COsObjectTypeT<class COsServerStub>
class COsObjectTypeT<class COsSync>
class COsObjectTypeT<class COsThread>
class COsObjectTypeT<class COsTimer>
class COsObjectTypeT<class COsUdpCom>
class COsRegistry::CEvtRegistryUpdated
class COsSync
class COsThread
class COsTimer::CEvtTimerHasExpired
class COsUdpCom::CEvtReadCompleted
class COsWatchableManager::CEvtWatchdogNotRefreshed
CMaintenanceMgr::DoInitInstance(): COsMessageBroker() failed
COsBaseShell
COsBaseSingleton::COsBaseSingleton: Singleton "
COsBinarySem
COsBinarySem0
COsBinarySem1
COsBinarySem10
COsBinarySem11
COsBinarySem12
COsBinarySem13
COsBinarySem14
COsBinarySem15
COsBinarySem16
COsBinarySem17
COsBinarySem18
COsBinarySem19
COsBinarySem2
COsBinarySem20
COsBinarySem29
COsBinarySem3
COsBinarySem30
COsBinarySem31
COsBinarySem32
COsBinarySem4
COsBinarySem5
COsBinarySem6
COsBinarySem7
COsBinarySem8
COsBinarySem9
COsC
COsClientProxy
COsClock
COsCondition
COsCondition0
COsCondition1
COsCondition10
COsCondition11
COsCondition12
COsCondition2
COsCondition21
COsCondition22
COsCondition23
COsCondition3
COsCondition4
COsCondition5
COsCondition6
COsCondition7
COsCondition8
COsCondition9
COsCountingSem
COsCountingSem0
COsCountingSem1
COsCountingSem10
COsCountingSem11
COsCountingSem12
COsCountingSem13
COsCountingSem14
COsCountingSem15
COsCountingSem16
COsCountingSem17
COsCountingSem18
COsCountingSem19
COsCountingSem2
COsCountingSem20
COsCountingSem21
COsCountingSem22
COsCountingSem23
COsCountingSem24
COsCountingSem25
COsCountingSem26
COsCountingSem27
COsCountingSem28
COsCountingSem29
COsCountingSem3
COsCountingSem30
COsCountingSem31
COsCountingSem32
COsCountingSem33
COsCountingSem34
COsCountingSem35
COsCountingSem36
COsCountingSem37
COsCountingSem4
COsCountingSem46
COsCountingSem47
COsCountingSem48
COsCountingSem49
COsCountingSem5
COsCountingSem50
COsCountingSem51
COsCountingSem6
COsCountingSem7
COsCountingSem8
COsCountingSem9
COsEvent
COsEventObserver
COsEventObserver1
COsEventObserver10
COsEventObserver11
COsEventObserver12
COsEventObserver13
COsEventObserver14
COsEventObserver15
COsEventObserver16
COsEventObserver17
COsEventObserver18
COsEventObserver19
COsEventObserver2
COsEventObserver20
COsEventObserver21
COsEventObserver22
COsEventObserver23
COsEventObserver24
COsEventObserver25
COsEventObserver26
COsEventObserver27
COsEventObserver28
COsEventObserver29
COsEventObserver3
COsEventObserver30
COsEventObserver31
COsEventObserver32
COsEventObserver33
COsEventObserver34
COsEventObserver35
COsEventObserver36
COsEventObserver37
COsEventObserver38
COsEventObserver39
COsEventObserver4
COsEventObserver40
COsEventObserver41
COsEventObserver42
COsEventObserver43
COsEventObserver44
COsEventObserver45
COsEventObserver46
COsEventObserver47
COsEventObserver48
COsEventObserver49
COsEventObserver5
COsEventObserver50
COsEventObserver51
COsEventObserver52
COsEventObserver53
COsEventObserver54
COsEventObserver55
COsEventObserver56
COsEventObserver57
COsEventObserver58
COsEventObserver59
COsEventObserver6
COsEventObserver60
COsEventObserver61
COsEventObserver62
COsEventObserver63
COsEventObserver64
COsEventObserver65
COsEventObserver66
COsEventObserver67
COsEventObserver68
COsEventObserver69
COsEventObserver7
COsEventObserver70
COsEventObserver71
COsEventObserver72
COsEventObserver73
COsEventObserver74
COsEventObserver75
COsEventObserver76
COsEventObserver77
COsEventObserver78
COsEventObserver79
COsEventObserver8
COsEventObserver80
COsEventObserver81
COsEventObserver82
COsEventObserver83
COsEventObserver84
COsEventObserver85
COsEventObserver86
COsEventObserver87
COsEventObserver88
COsEventObserver89
COsEventObserver9
COsEventObserver90
COsEventObserver91
COsEventObserver92
COsEventProv
COsEventProvider
COsEventProvider:
COsEventProvider0
COsEventProvider1
COsEventProvider10
COsEventProvider100
COsEventProvider108
COsEventProvider109
COsEventProvider11
COsEventProvider110
COsEventProvider111
COsEventProvider112
COsEventProvider113
COsEventProvider114
COsEventProvider117
COsEventProvider118
COsEventProvider119
COsEventProvider12
COsEventProvider120
COsEventProvider121
COsEventProvider122
COsEventProvider123
COsEventProvider124
COsEventProvider125
COsEventProvider126
COsEventProvider13
COsEventProvider131
COsEventProvider132
COsEventProvider133
COsEventProvider134
COsEventProvider135
COsEventProvider139
COsEventProvider14
COsEventProvider140
COsEventProvider142
COsEventProvider15
COsEventProvider16
COsEventProvider162
COsEventProvider163
COsEventProvider167
COsEventProvider168
COsEventProvider169
COsEventProvider17
COsEventProvider170
COsEventProvider171
COsEventProvider172
COsEventProvider174
COsEventProvider175
COsEventProvider176
COsEventProvider18
COsEventProvider19
COsEventProvider2
COsEventProvider20
COsEventProvider21
COsEventProvider22
COsEventProvider23
COsEventProvider24
COsEventProvider25
COsEventProvider26
COsEventProvider27
COsEventProvider28
COsEventProvider29
COsEventProvider3
COsEventProvider30
COsEventProvider31
COsEventProvider32
COsEventProvider33
COsEventProvider34
COsEventProvider35
COsEventProvider36
COsEventProvider37
COsEventProvider38
COsEventProvider39
COsEventProvider4
COsEventProvider40
COsEventProvider41
COsEventProvider42
COsEventProvider43
COsEventProvider44
COsEventProvider45
COsEventProvider46
COsEventProvider47
COsEventProvider48
COsEventProvider49
COsEventProvider5
COsEventProvider50
COsEventProvider51
COsEventProvider52
COsEventProvider53
COsEventProvider54
COsEventProvider55
COsEventProvider56
COsEventProvider57
COsEventProvider58
COsEventProvider59
COsEventProvider6
COsEventProvider60
COsEventProvider61
COsEventProvider62
COsEventProvider63
COsEventProvider64
COsEventProvider65
COsEventProvider66
COsEventProvider67
COsEventProvider68
COsEventProvider69
COsEventProvider7
COsEventProvider70
COsEventProvider71
COsEventProvider72
COsEventProvider73
COsEventProvider74
COsEventProvider75
COsEventProvider76
COsEventProvider77
COsEventProvider78
COsEventProvider79
COsEventProvider8
COsEventProvider80
COsEventProvider81
COsEventProvider82
COsEventProvider83
COsEventProvider84
COsEventProvider85
COsEventProvider86
COsEventProvider87
COsEventProvider88
COsEventProvider89
COsEventProvider9
COsEventProvider90
COsEventProvider91
COsEventProvider92
COsEventProvider93
COsEventProvider94
COsEventProvider95
COsEventProvider96
COsEventProvider99
COsEventProvider: subscribe() failed (this =
COsEventProviderT:
COsExplicitSingletonT<
COsExplicitSingletonT<>::COsExplicitSingletonT: ExplicitSingleton "
COsFactoriesT<T>::create():
COsFileLockManager
COsFutureT<T>(const COsFutureT<T>&) (this =
COsFutureT<T>: get() failed (pFuture_ =
~COsFutureT<T>() (this =
~COsFutureT_<T>() (this =
COsFutureT<T>() (this =
COsFutureT_<T>() (this =
COsLog
COsLog::COutputStream: ctor failed (this =
COsM%
COsMessageBroker
COsMessageBroker:
COsMessageBroker:
COsMessageBroker: COsMessageBroker() failed (this =
COsMessageBroker::deleteServerStubs():
COsMessageBroker::deleteServerStubs(): m_createdServerStubsMap.size() =
: ~COsMessageBroker(): enter
: ~COsMessageBroker(): succeeded
COsMsgQueue
COsMsgQueue0
COsMutex
COsMutex0
COsMutex1
COsMutex10
COsMutex100
COsMutex101
COsMutex102
COsMutex103
COsMutex104
COsMutex105
COsMutex106
COsMutex108
COsMutex109
COsMutex11
COsMutex110
COsMutex111
COsMutex113
COsMutex114
COsMutex115
COsMutex116
COsMutex117
COsMutex118
COsMutex119
COsMutex12
COsMutex120
COsMutex121
COsMutex122
COsMutex123
COsMutex124
COsMutex125
COsMutex126
COsMutex127
COsMutex128
COsMutex129
COsMutex13
COsMutex130
COsMutex131
COsMutex132
COsMutex133
COsMutex134
COsMutex135
COsMutex136
COsMutex137
COsMutex138
COsMutex139
COsMutex14
COsMutex140
COsMutex141
COsMutex142
COsMutex143
COsMutex144
COsMutex145
COsMutex146
COsMutex147
COsMutex148
COsMutex149
COsMutex15
COsMutex150
COsMutex151
COsMutex152
COsMutex153
COsMutex154
COsMutex155
COsMutex156
COsMutex157
COsMutex158
COsMutex159
COsMutex16
COsMutex160
COsMutex161
COsMutex162
COsMutex163
COsMutex164
COsMutex165
COsMutex166
COsMutex168
COsMutex169
COsMutex17
COsMutex170
COsMutex171
COsMutex172
COsMutex173
COsMutex174
COsMutex175
COsMutex176
COsMutex177
COsMutex178
COsMutex179
COsMutex18
COsMutex180
COsMutex181
COsMutex182
COsMutex183
COsMutex184
COsMutex185
COsMutex186
COsMutex187
COsMutex188
COsMutex189
COsMutex19
COsMutex190
COsMutex191
COsMutex192
COsMutex193
COsMutex194
COsMutex195
COsMutex196
COsMutex197
COsMutex198
COsMutex199
COsMutex2
COsMutex20
COsMutex200
COsMutex201
COsMutex202
COsMutex203
COsMutex204
COsMutex205
COsMutex206
COsMutex207
COsMutex209
COsMutex21
COsMutex210
COsMutex211
COsMutex212
COsMutex213
COsMutex214
COsMutex215
COsMutex216
COsMutex217
COsMutex218
COsMutex219
COsMutex22
COsMutex220
COsMutex221
COsMutex222
COsMutex223
COsMutex224
COsMutex225
COsMutex226
COsMutex227
COsMutex228
COsMutex229
COsMutex23
COsMutex230
COsMutex231
COsMutex232
COsMutex233
COsMutex234
COsMutex235
COsMutex236
COsMutex237
COsMutex238
COsMutex239
COsMutex24
COsMutex240
COsMutex241
COsMutex242
COsMutex243
COsMutex244
COsMutex245
COsMutex246
COsMutex247
COsMutex248
COsMutex249
COsMutex25
COsMutex250
COsMutex251
COsMutex252
COsMutex253
COsMutex254
COsMutex255
COsMutex256
COsMutex257
COsMutex258
COsMutex259
COsMutex26
COsMutex260
COsMutex261
COsMutex262
COsMutex263
COsMutex264
COsMutex265
COsMutex266
COsMutex267
COsMutex268
COsMutex269
COsMutex27
COsMutex270
COsMutex271
COsMutex272
COsMutex273
COsMutex274
COsMutex275
COsMutex276
COsMutex277
COsMutex279
COsMutex28
COsMutex280
COsMutex281
COsMutex282
COsMutex283
COsMutex284
COsMutex285
COsMutex286
COsMutex287
COsMutex288
COsMutex289