blob: 9d17e90ab53685746c2e2d79fda3d2012750e61c (
plain)
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
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
|
; BEGIN COPYRIGHT BLOCK
; Copyright (C) 2001 Sun Microsystems, Inc. Used by permission.
; Copyright (C) 2005 Red Hat, Inc.
; All rights reserved.
; END COPYRIGHT BLOCK
;
DESCRIPTION 'Fedora Directory Server 7 Utility Library'
EXPORTS
slapd_log_error_proc @2
slapd_log_audit_proc @3
ldapi_init_extended_ops @4
audit_log_openf @5
slapi_log_error @6
slapi_log_access @7
g_set_detached @8
access_log_openf @9
error_log_openf @10
slapi_ch_strdup @11
slapi_ch_malloc @12
slapi_ch_calloc @13
slapi_ch_realloc @14
slapi_ch_free @15
slapi_sdn_scope_test @16
slapi_pblock_get @17
slapi_pblock_set @18
slapi_str2entry @19
slapi_entry2str @20
slapi_entry_alloc @21
slapi_entry_free @22
slapi_entry_dup @23
slapi_entry_get_dn @24
slapi_entry_set_dn @25
slapi_entry_attr_find @26
slapi_entry_first_attr @27
slapi_entry_next_attr @28
slapi_entry_attr_merge @29
slapi_entry_schema_check @30
slapi_entry_add_values @31
slapi_entry_delete_values @32
g_get_global_oc_nolock @34
config_set_maxbersize @35
g_get_global_lastmod @36
current_time @37
slapi_attr_free @38
attr_syntax_create @39
valueset_get_valuearray @40
attrlist_merge @41
attrlist_find @42
attrlist_delete @43
slapi_register_plugin @44
csn_max @45
slapi_dn_normalize @46
slapi_dn_ignore_case @47
slapi_dn_normalize_case @48
slapi_dn_parent @49
slapi_dn_issuffix @50
slapi_attr_get_valueset @51
slapi_read_buffer @52
slapi_write_buffer @53
add_control @54
pblock_init @56
pblock_init_common @57
slapi_pblock_get_common @58
slapi_valueset_count @59
slapi_mtn_get_backend_name @60
get_timestring @61
free_timestring @62
slapi_op_abandoned @63
slapi_filter_get_choice @64
slapi_filter_get_ava @65
slapi_filter_get_type @66
slapi_filter_get_subfilt @67
slapi_filter_list_first @68
slapi_filter_list_next @69
slapi_filter_join @70
slapi_filter_free @71
slapi_filter_test @72
slapi_access_allowed @73
slapi_acl_check_mods @74
dse_search @75
slapi_pw_find @76
; send_read_referrals @77
; ref_array_dup @78
; ref_array_dup_free @79
slapi_dn_beparent @80
slapi_ldap_init @81
slapi_ldap_unbind @82
slapi_dn_isroot @83
slapi_dn_isbesuffix @84
slapi_value_new_berval @85
plugin_call_plugins @86
slapi_mtn_be_disable @87
slapi_be_new @88
get_operation_object_type @89
be_flushall @90
slapi_be_select @91
charray_free @92
charray_dup @93
slapi_str2filter @94
charray_add @95
value_done @96
rdn2ava @97
pw_encodevals @98
slapi_valueset_set_from_smod @99
ava_done @100
pw_name2scheme @101
generate_componentid @102
g_set_deftime @103
g_set_defsize @104
plugin_setup @105
slapi_new_mutex @106
slapi_destroy_mutex @107
slapi_lock_mutex @108
slapi_unlock_mutex @109
slapi_valueset_set_valueset @110
dse_modify @111
plugin_call_acl_plugin @112
get_filter @113
be_unbindall @114
plugin_call_exop_plugins @115
filter_normalize @116
plugin_call_acl_mods_access @117
normalize_oc @118
ref_adjust @119
config_get_maxbersize @120
entry_replace_values @121
filter_strcpy_special @122
be_addsuffix @123
slapi_be_getsuffix @124
slapi_entry_attr_hasvalue @125
sym_load @126
str2charray @127
charray_merge @128
libldap_init_debug_level @129
slapi_seq_callback @130
slapi_be_getentrypoint @131
write_audit_log_entry @132
rwl_new @133
slapi_send_ldap_search_entry @134
slapi_send_ldap_result @135
slapi_send_ldap_referral @136
g_log_init @137
slapi_get_first_backend @138
slapi_get_next_backend @139
be_cleanupall @140
slapi_attr_new @141
slapi_acl_verify_aci_syntax @142
plugin_call_acl_mods_update @143
plugin_call_acl_verify_syntax @144
poll_current_time @145
slapi_dn_isparent @146
freepmods @147
get_ldapmessage_controls @148
init_controls @149
slapi_control_present @150
plugin_closeall @151
plugin_startall @152
internal_res_callback @153
internal_srch_entry_callback @154
internal_ref_entry_callback @155
slapi_search_internal_callback @156
slapi_search_internal @157
slapi_modify_internal @158
normalize_mods2bvals @159
slapi_add_internal @160
slapi_delete_internal @161
slapi_modrdn_internal @162
slapi_compare_internal @163
slapi_free_search_results_internal @164
send_ldap_result @165
send_ldapv3_referral @166
send_ldap_referral @167
send_ldap_search_entry @168
slapi_mtn_be_enable @169
slapi_attr_get_oid_copy @170
set_db_default_result_handlers @171
g_get_num_bytes_sent @172
g_set_num_bytes_sent @173
g_get_num_entries_sent @174
g_set_num_entries_sent @175
g_get_num_sent_mutex @176
g_set_num_sent_mutex @177
g_get_default_referral @178
g_set_default_referral @179
slapi_ch_bvdup @180
rwl_free @181
get_server_dataversion @182
get_localhost_DNS @183
get_localhost_DN @184
slapi_pblock_new @185
slapi_pblock_destroy @186
slapi_ch_bvecdup @187
slapi_mr_filter_index @188
slapi_mr_indexer_create @189
slapi_berval_cmp @190
filter_print @191
write_controls @192
modify_schema_dse @193
read_schema_dse @194
attr_syntax_add @195
addlenstr @196
config_set_versionstring @197
slapi_entry_attr_replace @198
slapi_be_select_by_instance_name @199
slapd_ssl_init @200
slapd_SSL_client_init @201
format_localTime @202
parse_localTime @203
strntoul @204
time_plus_sec @205
read_localTime @206
get_entry @207
slapi_get_supported_controls_copy @208
attrlist_replace @209
update_pw_retry @210
g_get_global_snmp_vars @211
snmp_collator_start @212
snmp_collator_stop @213
config_set_schema_ignore_trailing_spaces @214
send_nobackend_ldap_result @215
set_dll_entry_points @216
slapi_add_entry_internal @217
dse_register_callback @218
slapi_entry_init @219
slapd_ldap_debug @220 DATA
slapd_ssl_init2 @221
slapd_SSL_client_bind_s @222
slapd_ssl_getCipherSuiteInfo @223
slapi_mods_dump @224
g_get_slapd_security_on @225
slapi_register_supported_control @226
slapi_get_supported_controls @227
slapi_register_supported_saslmechanism @228
slapi_get_supported_saslmechanisms_copy @229
slapi_get_supported_saslmechanisms @230
bervalarray_add_berval_fast @231
slapi_get_supported_extended_ops_copy @232
slapi_get_supported_extended_ops @233
slapi_be_logchanges @234
slapi_rdn_remove_attr @235
slapd_security_library_is_initialized @236
slapi_ch_bvfree @237
slapi_config_register_callback @238
slapi_entry_has_children @239
slapi_config_remove_callback @240
entry_apply_mods @241
slapi_entry_set_flag @242
slapi_entry_clear_flag @243
write_localTime @244
get_entry_object_type @245
factory_create_extension @246
factory_destroy_extension @247
factory_register_type @248
g_get_access_log @249
g_get_error_log @250
get_entry_point @251
set_snmp_interaction_row @252
slapi_attr_get_type @254
slapi_attr_get_oid @255
slapi_attr_get_values @256
slapi_attr_get_flags @257
slapi_attr_flag_is_set @258
slapi_attr_value_cmp @259
plugin_syntax_find @260
plugin_syntax2oid @261
plugin_call_syntax_filter_ava @262
plugin_call_syntax_filter_sub @263
slapi_call_syntax_values2keys @264
slapi_call_syntax_assertion2keys_ava @265
slapi_call_syntax_assertion2keys_sub @266
slapi_attr_value_find @267
slapi_attr_type2plugin @268
slapd_re_comp @269
slapd_re_exec @270
slapd_re_modw @271
slapd_re_subs @272
FrontendConfig_init @273
slapi_entry_get_dn_const @274
slapi_register_object_extension @275
slapi_get_object_extension @276
slapi_be_delete_onexit @277
slapi_be_exist @278
slapi_sdn_add_rdn @279
slapi_mods_add_string @280
lenstr_free @281
lenstr_new @282
plugin_call_syntax_get_compare_fn @283
slapi_attr_type_cmp @284
slapi_attr_basetype @285
snmp_collator_update @286
escape_string @287
eq_start @288
eq_stop @289
slapi_rdn2typeval @290
slapi_entry_rdn_values_present @291
slapi_entry_attr_get_long @292
slapi_dn_plus_rdn @293
; ref_array_replace @294
slapi_setbit_uchar @295
slapi_unsetbit_uchar @296
slapi_isbitset_uchar @297
slapi_setbit_int @298
slapi_unsetbit_int @299
referrals_free @300
slapi_isbitset_int @301
slapi_be_private @302
; ref_array_moddn @304
g_set_current_conn_count_mutex @305
g_get_current_conn_count_mutex @306
g_get_current_conn_count @307
g_increment_current_conn_count @308
g_decrement_current_conn_count @309
g_set_accesslog_level @310
slapi_entry_add_rdn_values @311
slapd_re_init @312
slapd_re_lock @313
slapd_re_unlock @314
escape_string_with_punctuation @315
getFrontendConfig @316
log_set_numlogsperdir @317
log_set_logsize @318
log_set_rotationtime @319
log_set_rotationtimeunit @320
log_set_maxdiskspace @321
log_set_mindiskspace @322
log_set_expirationtime @323
log_set_expirationtimeunit @324
log_update_accesslogdir @325
log_update_errorlogdir @326
dse_remove_callback @327
log_get_loglist @328
log_update_auditlogdir @329
g_get_audit_log @330
dse_new @331
dse_deletedse @332
dse_read_file @333
slapi_attr_get_bervals_copy @334
strarray2str @335
operation_out_of_disk_space @336
dse_delete @337
oc_lock_read @338
oc_lock_write @339
oc_unlock @340
slapi_entry_attr_set_long @341
slapi_entry_attr_delete @342
slapi_entry_attr_get_charptr @343
slapi_entry_attr_set_charptr @344
slapi_entry_attr_get_int @345
slapi_get_global_syntax_plugins @346
slapi_get_global_mr_plugins @347
slapi_new_condvar @348
slapi_destroy_condvar @349
slapi_wait_condvar @350
slapi_notify_condvar @351
defbackend_init @352
defbackend_get_backend @353
log_set_logging @354
slapi_pwpolicy_make_response_control @355
delete_passwdPolicy @356
g_get_user_backend @357
new_passwdPolicy @358
slapi_dn_normalize_to_end @359
slapi_ch_free_string @360
send_ldap_search_entry_ext @361
send_ldap_result_ext @362
slapd_pr_strerror @363
slapd_system_strerror @364
cool_charray_free @365
cool_charray_dup @366
ldapi_register_extended_op @367
config_set_attrname_exceptions @368
g_get_deftime @369
g_get_defsize @370
pw_val2scheme @371
slapi_attr_add_value @372
be_getconfigdn @373
be_getmonitordn @374
be_nbackends_public @375
entry_add_rdn_csn @376
slapd_versatile_strerror @377
config_set_enquote_sup_oc @378
config_get_enquote_sup_oc @379
log_access_flush @380
be_writeconfig @381
plugin_extended_op_oid2string @382
slapi_eq_get_arg @383
g_set_shutdown @384
g_get_shutdown @385
compute_init @386
compute_terminate @387
slapi_compute_add_evaluator @388
be_new_internal @389
slapi_schema_expand_objectclasses @390
slapi_compute_add_search_rewriter @391
g_get_global_mrl @392
g_set_global_mrl @393
slapi_matchingrule_new @394
slapi_matchingrule_free @395
slapi_matchingrule_register @396
slapi_matchingrule_unregister @397
slapi_matchingrule_get @398
slapi_matchingrule_set @399
config_set_port @400
slapi_ch_smprintf @401
config_set_secureport @402
config_set_SSLclientAuth @403
config_set_workingdir @404
config_set_localhost @405
config_set_listenhost @406
config_set_securelistenhost @407
config_set_srvtab @408
config_set_sizelimit @409
config_set_pw_storagescheme @410
slapi_filter_test_ext @411
config_set_pw_change @412
config_set_pw_history @413
config_set_pw_must_change @414
config_set_pw_syntax @415
config_set_pw_minlength @416
config_set_pw_maxfailure @417
config_set_pw_inhistory @418
config_set_pw_lockduration @419
config_set_pw_resetfailurecount @420
config_set_pw_exp @421
config_set_pw_unlock @422
config_set_pw_lockout @423
config_set_lastmod @424
config_set_nagle @425
config_set_accesscontrol @426
config_set_result_tweak @427
config_set_pw_gracelimit @428
; Available for reuse @429
config_set_security @430
config_set_pwpolicy_local @431
config_set_readonly @432
config_set_schemacheck @433
config_set_rootdn @434
config_set_rootpw @435
config_set_rootpwstoragescheme @436
slapi_build_control @437
slapi_entry_get_ndn @438
dse_unset_dont_ever_write_dse_files @439
config_set_instancedir @440
config_set_encryptionalias @441
config_set_threadnumber @442
config_set_maxthreadsperconn @443
slapi_eq_repeat @444
config_set_reservedescriptors @445
config_set_ioblocktimeout @446
config_set_idletimeout @447
config_set_groupevalnestlevel @448
config_set_defaultreferral @449
config_set_userat @450
config_set_timelimit @451
config_set_useroc @452
config_set_accesslog @453
config_set_errorlog @454
config_set_auditlog @455
config_set_pw_maxage @456
config_set_pw_minage @457
config_set_pw_warning @458
config_set_errorlog_level @459
config_set_accesslog_level @460
compute_rewrite_search_filter @461
slapi_entry_get_sdn_const @462
dse_set_dont_ever_write_dse_files @463
slapi_eq_once @464
config_get_port @465
config_get_pw_is_global_policy @466
config_get_secureport @467
config_get_SSLclientAuth @468
config_get_workingdir @469
config_get_localhost @470
config_get_listenhost @471
config_get_securelistenhost @472
config_get_srvtab @473
config_get_sizelimit @474
config_get_pw_storagescheme @475
slapi_eq_cancel @476
config_get_pw_change @477
config_get_pw_history @478
config_get_pw_must_change @479
config_get_pw_syntax @480
config_get_pw_minlength @481
config_get_pw_maxfailure @482
config_get_pw_inhistory @483
config_get_pw_lockduration @484
config_get_pw_resetfailurecount @485
config_get_pw_exp @486
config_get_pw_unlock @487
config_get_pw_lockout @488
config_get_lastmod @489
config_get_nagle @490
config_get_accesscontrol @491
config_get_result_tweak @492
config_get_conntablesize @493
config_get_pw_gracelimit @494
config_get_security @495
slapi_config_get_readonly @496
config_get_schemacheck @497
config_get_rootdn @498
config_get_rootpw @499
config_get_rootpwstoragescheme @500
slapi_entry_set_sdn @501
slapi_sdn_copy @502
config_set_basedn @503
config_get_instancedir @504
config_get_encryptionalias @505
config_get_threadnumber @506
config_get_maxthreadsperconn @507
config_get_basedn @508
config_get_reservedescriptors @509
config_get_ioblocktimeout @510
config_get_idletimeout @511
config_get_groupevalnestlevel @512
config_get_defaultreferral @513
config_get_userat @514
config_get_timelimit @515
config_get_useroc @516
config_get_accesslog @517
config_get_errorlog @518
config_get_auditlog @519
config_get_pw_maxage @520
config_get_pw_minage @521
config_get_pw_warning @522
config_get_errorlog_level @523
config_get_accesslog_level @524
slapi_sdn_compare @525
slapi_sdn_dup @526
slapi_sdn_set_dn_passin @527
slapi_entry_get_sdn @528
slapi_sdn_get_ndn_len @529
charray_inlist @530
config_set_referral_mode @531
config_get_referral_mode @532
config_check_referral_mode @533
attr_set_deletion_csn @534
slapi_mod_dump @535
config_is_slapd_lite @536
config_set_slapd_type @537
config_get_versionstring @538
slapi_is_rootdse @539
slapi_find_matching_paren @540
str2simple @541
substr_dn_normalize @542
get_data_source @543
slapi_sdn_get_backend_parent @544
slapi_sdn_new_dn_passin @545
slapi_sdn_isempty @546
slapi_sdn_isparent @547
attr_value_find_wsi @548
entry_computed_attr_init @549
slapi_attr_init @550
slapi_value_init @551
valueset_isempty @552
valueset_add_string @553
attr_done @554
operation_clear_flag @555
operation_set_flag @556
slapi_sdn_get_rdn @557
slapi_sdn_set_rdn @558
slapi_sdn_set_parent @559
slapi_entry_delete_string @560
attr_get_deletion_csn @561
entry_add_present_attribute_wsi @562
slapi_value_get_length @563
operation_parameters_dup @564
operation_parameters_free @565
operation_is_flag_set @566
counters_as_entry @567
counters_to_errors_log @568
counters_as_entry @567
counters_to_errors_log @568
slapi_value_new_string @569
charray_utf8_inlist @570
charray_get_index @571
; LDAPU ENTRY POINTS
ldapu_member_certificate_match @580
; ref_register_callback @581
; ref_remove_callback @582
slapi_is_encoded @583
slapi_encode @584
; UniqueID ENTRY POINTS
slapi_uniqueIDNew @585
slapi_uniqueIDDestroy @586
slapi_uniqueIDCompare @587
slapi_uniqueIDFormat @588
slapi_uniqueIDScan @589
slapi_uniqueIDIsUUID @590
slapi_uniqueIDSize @591
slapi_uniqueIDDup @592
uniqueIDGenInit @593
uniqueIDGenCleanup @594
slapi_uniqueIDCompareString @595
slapi_uniqueIDGenerate @596
slapi_uniqueIDGenerateString @597
slapi_uniqueIDGenerateFromName @600
slapi_uniqueIDGenerateFromNameString @601
; MORE ENTRY ENTRY POINTS
slapi_entry_get_uniqueid @602
slapi_entry_set_uniqueid @603
slapi_entry_merge_values_sv @604
; Slapi_DN entry points
slapi_sdn_new @605
slapi_sdn_init @606
slapi_sdn_new_dn_byval @607
slapi_sdn_new_ndn_byval @608
; slapi_sdn_new_cndn_byval @609
slapi_sdn_new_dn_byref @610
slapi_sdn_new_ndn_byref @611
; slapi_sdn_new_cndn_byref @612
slapi_sdn_set_dn_byval @613
slapi_sdn_set_dn_byref @614
slapi_sdn_set_ndn_byval @615
slapi_sdn_set_ndn_byref @616
; slapi_sdn_set_cndn_byval @617
; slapi_sdn_set_cndn_byref @618
slapi_sdn_done @619
slapi_sdn_free @620
slapi_sdn_get_dn @621
slapi_sdn_get_ndn @622
; slapi_sdn_get_cndn @623
slapi_sdn_get_parent @624
; Slapi_Mod & Slapi_Mods entry points
slapi_mods_init @625
slapi_mods_insert_at @626
slapi_mods_insert_before @627
slapi_mods_insert_after @628
slapi_mods_add @629
slapi_mods_add_ldapmod @630
slapi_mods_add_modbvps @631
slapi_mods_remove @632
slapi_mods_get_first_mod @633
slapi_mods_get_next_mod @634
slapi_mods_iterator_backone @635
slapi_mods_get_ldapmods_byref @636
slapi_mods_get_num_mods @637
slapi_mod_init @638
slapi_mod_add_value @639
slapi_mod_remove_value @640
slapi_mod_get_first_value @641
slapi_mod_get_next_value @642
slapi_mod_get_num_values @643
entry_purge_state_information @644
attr_set_csn @645
entry_get_dncsn @646
entry_get_dncsnset @647
entry_add_dncsn @648
value_contains_csn @649
csnset_get_previous_csn @650
task_init @651
attrlist_merge_valuearray @652
slapi_value_new_value @653
entry_get_maxcsn @654
entry_set_maxcsn @655
entry_assign_operation_csn @656
slapi_operation_set_csngen_handler @657
slapi_operation_set_replica_attr_handler @658
slapi_operation_get_replica_attr @659
plugin_call_syntax_filter_sub_sv @664
plugin_call_syntax_filter_ava_sv @665
slapi_pw_find_sv @666
csn_new_by_string @667
csn_set_replicaid @668
valuearray_get_bervalarray @670
slapi_call_syntax_values2keys_sv @671
valuearray_init_bervalarray @672
slapi_valueset_free @673
slapi_entry_add_values_sv @674
entry_set_csn @675
csn_as_string @676
entry_attr_find_wsi @678
csn_get_time @679
csn_new @680
csn_set_time @681
csn_get_seqnum @682
csn_free @683
slapi_search_internal_get_entry @684
csn_compare @685
csn_set_seqnum @686
csn_dup @687
slapi_valueset_first_value @688
slapi_valueset_next_value @689
slapi_valueset_done @690
slapi_utf8StrToLower @691
slapi_utf8ToLower @692
slapi_utf8isUpper @693
slapi_utf8StrToUpper @694
slapi_utf8ToUpper @695
slapi_utf8isLower @696
slapi_utf8casecmp @697
slapi_utf8ncasecmp @698
slapi_has8thBit @699
slapi_sdn_init_dn_byref @700
slapi_sdn_init_dn_byval @701
slapi_sdn_init_dn_passin @702
slapi_attr_first_value @703
slapi_attr_next_value @704
slapi_value_get_berval @705
slapi_attr_get_numvalues @706
value_get_csn @707
value_update_csn @708
slapi_value_set_berval @709
slapi_mods_init_byref @711
slapi_mods_init_passin @712
slapi_value_new @713
slapi_value_free @714
value_add_csn @715
value_remove_csn @716
slapi_sdn_issuffix @717
slapi_mods_new @718
slapi_mods_free @719
slapi_mods_insert_smod_at @720
slapi_mods_insert_smod_before @721
slapi_mods_insert_smod_after @722
slapi_mods_add_smod @723
slapi_mods_get_first_smod @724
slapi_mods_get_next_smod @725
slapi_mod_new @726
slapi_mod_init_byref @727
slapi_mod_init_passin @728
slapi_value_init_string @729
slapi_mod_get_ldapmod_passout @730
slapi_mod_get_type @731
slapi_mod_get_operation @732
slapi_mod_set_type @733
slapi_mod_set_operation @734
slapi_mod_get_ldapmod_byref @735
slapi_mod_free @736
csn_time_difference @737
slapi_mod_isvalid @738
slapi_entry_size @739
attr_first_deleted_value @740
attr_next_deleted_value @741
slapi_mods_get_ldapmods_passout @742
slapi_value_init_berval @743
entry_add_dncsn_ext @744
slapi_value_set @745
operation_get_csn @750
entry_apply_mods_wsi @751
slapi_mod_done @752
slapi_mods_done @753
operation_set_csn @754
; entry_update_deleted_attribute @755
entry_first_deleted_attribute @756
entry_next_deleted_attribute @757
; config_get_storestateinfo @758
; config_set_storestateinfo @759
slapi_value_set_string @760
slapi_is_loglevel_set @761
operation_set_target_spec @762
operation_set_target_spec_str @763
operation_get_target_spec @764
operation_set_abandoned_op @765
operation_get_abandoned_op @766
slapi_value_get_string @767
slapi_value_get_int @768
slapi_value_set_int @769
slapi_add_internal_pb @770
slapi_add_internal_set_pb @771
slapi_modify_internal_set_pb @772
slapi_modify_internal_pb @773
slapi_modrdn_internal_pb @774
slapi_rename_internal_set_pb @775
slapi_delete_internal_set_pb @776
slapi_delete_internal_pb @777
slapi_search_internal_pb @778
slapi_search_internal_set_pb @779
slapi_search_internal_callback_pb @780
plugin_build_operation_action_bitmap @781
plugin_get_server_plg @782
slapi_add_pwd_control @783
pw_mod_allowchange_aci @784
do_add @785
do_modify @786
do_delete @787
do_modrdn @788
op_shared_search @789
slapi_mod_init_byval @790
slapi_add_entry_internal_set_pb @792
config_set_return_exact_case @793
slapi_rdn_new @794
slapi_rdn_new_dn @795
slapi_rdn_new_sdn @796
slapi_rdn_new_rdn @797
slapi_rdn_init @798
slapi_rdn_init_dn @799
slapi_rdn_init_sdn @800
slapi_rdn_init_rdn @801
slapi_rdn_set_dn @802
slapi_rdn_set_sdn @803
slapi_rdn_set_rdn @804
slapi_rdn_free @805
slapi_rdn_done @806
slapi_rdn_get_first @807
slapi_rdn_get_next @808
slapi_rdn_get_index @809
slapi_rdn_contains @810
slapi_rdn_add @811
slapi_rdn_remove_index @812
slapi_rdn_remove @813
slapi_rdn_isempty @814
slapi_rdn_get_num_components @815
slapi_rdn_compare @816
slapi_rdn_get_rdn @817
slapi_rdn_get_nrdn @819
slapi_value_dup @820
slapi_value_set_value @821
rel2abspath @822
slapi_value_compare @823
attr_get_present_values @824
dl_get @825
dl_new @826
dl_free @827
dl_init @828
dl_cleanup @829
dl_add @830
dl_get_first @831
dl_get_next @832
dl_delete @833
dl_get_count @834
slapi_entry2mods @837
slapi_mods2entry @838
operation_parameters_new @839
operation_parameters_done @840
slapi_ch_start_recording @841
slapi_ch_stop_recording @842
snmp_as_entry @843
slapi_filter_compare @844
; probably temporary:
set_hash_filters @845
operation_new @846
operation_free @847
operation_set_type @848
slapi_mods_add_mod_values @849
slapi_sdn_init_ndn_byref @850
slapi_sdn_init_ndn_byval @851
objset_new @852
objset_delete @853
objset_add_obj @854
objset_remove_obj @855
objset_find @856
objset_first_obj @857
objset_next_obj @858
objset_is_empty @859
object_new @860
object_acquire @861
object_release @862
object_get_data @863
slapi_UTF8STRTOLOWER @864
slapi_UTF8TOLOWER @865
slapi_UTF8ISUPPER @866
slapi_UTF8STRTOUPPER @867
slapi_UTF8TOUPPER @868
slapi_UTF8ISLOWER @869
slapi_UTF8CASECMP @870
slapi_UTF8NCASECMP @871
slapi_apib_get_interface @872
slapi_apib_unregister @873
slapi_apib_register @874
slapi_attr_types_equivalent @875
dse_read_next_entry @895
config_set_entry @896
config_set @897
init_schema_dse @898
PL_HashTableLookup_const @899
; dse_add_entry_pb @900
vattr_init @901
vattr_cleanup @902
slapi_vattrspi_register @903
plugin_get_by_name @904
objset_size @905
slapi_attr_dup @906
slapi_entry_add_value @907
slapi_entry_add_string @908
; be_create_instance @909
; be_remove_instance @910
mapping_tree_init @911
slapi_mapping_tree_select @912
slapi_sdn_isgrandparent @913
config_set_storagescheme @914
slapi_berval_get_string_copy @918
slapi_vattr_value_compare @919
slapi_vattr_value_compare_sp @920
slapi_vattr_values_get_sp @921
slapi_vattr_values_get @922
slapi_vattr_values_free @923
slapi_vattr_list_attrs @924
slapi_vattr_attrs_free @925
slapi_vattrspi_regattr @926
slapi_be_get_instance_info @927
slapi_be_set_instance_info @928
slapi_be_setentrypoint @929
plugin_get_dn @930
operation_get_type @931
slapi_be_set_flag @932
slapi_be_is_flag_set @933
free_pw_scheme @934
slapi_vattrspi_add_type @935
mapping_tree_free @936
slapi_get_mapping_tree_node_by_dn @937
slapi_get_mapping_tree_node_configdn @938
slapi_valueset_init @939
slapi_valueset_add_value @940
slapi_filter_get_attribute_type @941
slapi_filter_apply @942
slapi_attr_syntax_normalize @943
charray_remove @946
; csn_next_in_sequence @947
csngen_new @948
csngen_free @949
csngen_new_csn @950
csngen_abort_csn @951
csngen_adjust_time @952
csngen_is_local_csn @953
csngen_register_callbacks @954
csngen_unregister_callbacks @955
csngen_update_time @956
csngen_get_state @957
csn_init_by_csn @958
csn_init_by_string @959
csn_get_replicaid @960
csn_string_size @961
csn_as_attr_option_string @962
slapi_get_mapping_tree_node_root @963
slapi_get_mapping_tree_config_root @964
mapping_tree_get_extension_type @965
slapi_mapping_tree_node_is_set @966
slapi_entry_flag_is_set @967
slapi_task_status_changed @968
slapi_valueset_new @969
slapi_be_issuffix @970
slapi_be_addsuffix @971
slapi_reslimit_register @972
slapi_reslimit_get_integer_limit @973
reslimit_cleanup @974
search_register_reslimits @975
bind_credentials_set @976
bind_credentials_clear @977
pw_add_allowchange_aci @978
slapi_valueset_add_value_ext @979
is_abspath @980
slapi_dup_control @981
slapi_get_first_suffix @982
slapi_get_next_suffix @983
slapi_is_root_suffix @984
slapi_be_get_name @985
slapi_entry2str_with_options @986
slapi_destructive_rename @987
slapi_moddn_get_newdn @988
plugin_get_default_component_id @989
slapi_be_gettype @990
csnset_get_first_csn @991
csnset_get_next_csn @992
value_get_csnset @993
entry_add_deleted_attribute_wsi @994
attr_add_deleted_value @995
slapi_disconnect_server @996
eq_init @997
slapi_set_object_extension @998
task_shutdown @999
slapi_mtn_set_referral @1000
slapi_mtn_set_state @1001
slapi_mtn_get_referral @1002
slapi_mtn_get_state @1003
slapi_mtn_be_started @1004
slapi_mtn_be_stopping @1005
slapi_start_bulk_import @1006
slapi_stop_bulk_import @1007
slapi_import_entry @1008
slapi_entry_add_valueset @1009
vattr_typethang_get_flags @1010
vattr_typethang_get_name @1011
vattr_typethang_next @1012
vattr_typethang_first @1013
charray_subtract @1014
slapi_schema_list_attribute_names @1015
config_get_ds4_compatible_schema @1016
config_set_ds4_compatible_schema @1017
pw_apply_mods @1018
pw_set_componentID @1019
pw_get_componentID @1020
parse_genTime @1021
format_genTime @1022
be_set_sizelimit @1023
be_set_timelimit @1024
slapi_be_free @1025
slapi_be_Unlock @1026
slapi_task_log_status @1027
slapi_task_log_notice @1028
plugin_add_descriptive_attributes @1029
slapi_get_rootdn @1030
slapi_mtn_be_set_readonly @1031
slapi_be_set_readonly @1032
slapi_be_get_readonly @1033
slapi_op_get_type @1034
slapi_entry_attr_get_ulong @1035
slapi_entry_attr_get_uint @1036
slapi_entry_attr_set_int @1037
slapi_entry_attr_set_ulong @1038
slapi_entry_attr_set_uint @1039
slapi_value_get_ulong @1040
slapi_value_get_uint @1041
config_set_rewrite_rfc1274 @1042
config_get_rewrite_rfc1274 @1043
slapi_mapping_tree_find_backend_for_sdn @1044
slapi_register_backend_state_change @1045
slapi_unregister_backend_state_change @1046
slapd_ssl_handshakeCallback @1047
slapd_ssl_badCertHook @1048
slapd_ssl_peerCertificate @1049
slapd_ssl_getChannelInfo @1050
pblock_done @1051
pw_rever_decode @1052
slapd_ssl_listener_is_initialized @1053
op_shared_log_error_access @1054
slapd_ssl_importFD @1055
slapd_ssl_resetHandshake @1056
slapi_build_control_from_berval @1057
; MORE ENTRY ENTRY POINTS
slapi_entry_delete_values_sv @1058
slapi_entry_attr_replace_sv @1059
valuearray_free @1061
slapd_Client_auth @1062
slapi_rand_r @1063
slapi_rand @1064
slapi_copy @1065
slapd_get_tmp_dir @1066
slapi_call_syntax_assertion2keys_ava_sv @1067
slapi_call_syntax_assertion2keys_sub_sv @1068
slapi_value_get_long @1069
valuearray_add_valuearray @1070
pw_rever_encode @1071
slapd_nss_init @1072
slapd_pk11_configurePKCS11 @1073
slapd_pk11_freeSlot @1074
slapd_pk11_freeSymKey @1075
slapd_pk11_findSlotByName @1076
slapd_pk11_createPBEAlgorithmID @1077
slapd_pk11_pbeKeyGen @1078
slapd_pk11_algtagToMechanism @1079
slapd_pk11_paramFromAlgid @1080
slapd_pk11_mapPBEMechanismToCryptoMechanism @1081
slapd_pk11_getBlockSize @1082
slapd_pk11_createContextBySymKey @1083
slapd_pk11_cipherOp @1084
slapd_pk11_finalize @1085
slapd_pk11_getInternalKeySlot @1086
slapd_pk11_getInternalSlot @1087
slapd_pk11_authenticate @1088
slapd_pk11_setSlotPWValues @1089
slapd_pk11_isFIPS @1090
slapd_pk11_findCertFromNickname @1091
slapd_pk11_findKeyByAnyCert @1092
slapd_pk11_fortezzaHasKEA @1093
filter_flag_is_set @1094
slapd_sasl_ext_client_bind @1095
checkPrefix @1096
DS_Sleep @1097
slapi_mtn_get_dn @1098
dl_add_index @1099
dl_replace @1100
send_referrals_from_entry @1101
escape_filter_value @1102
slapd_pk11_destroyContext @1103
secoid_destroyAlgorithmID @1104
op_shared_is_allowed_attr @1105
get_config_DN @1106
slapi_sdn_init_dn_ndn_byref @1107
check_log_max_size @1108
attrlist_find_ex @1109
slapi_entry_vattrcache_merge_sv @1110
slapi_entry_vattrcache_find_values_and_type_ex @1111
slapi_entry_vattrcache_watermark_isvalid @1112
slapi_entry_vattrcache_watermark_set @1113
slapi_entry_vattrcache_watermark_invalidate @1114
slapi_entrycache_vattrcache_watermark_invalidate @1115
slapi_filter_test_simple @1116
slapi_register_role_check @1117
slapi_role_check @1118
slapi_valueset_find @1119
slapi_vattr_filter_test @1120
slapi_attr_set_valueset @1121
slapi_vattrcache_iscacheable @1122
slapi_value_new_string_passin @1123
slapi_value_init_string_passin @1124
slapi_value_set_string_passin @1125
slapi_entry_attr_has_syntax_value @1126
plugin_call_entryfetch_plugins @1127
plugin_call_entrystore_plugins @1128
config_get_buildnum @1129
plugin_print_versions @1130
slapi_ch_array_free @1131
slapi_vattrcache_cache_all @1132
slapi_vattrcache_cache_none @1133
slapi_filter_dup @1134
slapi_filter_to_string @1135
slapi_filter_join_ex @1136
slapi_vattr_schema_check_type @1137
slapi_vattr_filter_test_ext @1138
index_subsys_evaluate_filter @1139
slapi_index_entry_list_create @1140
slapi_index_entry_list_add @1141
slapi_index_register_decoder @1142
slapi_index_register_index @1143
slapi_entry_attr_get_charray @1144
getSupportedCiphers @1145
slapi_operation_set_flag @1146
slapi_operation_clear_flag @1147
slapi_operation_is_flag_set @1148
slapi_op_reserved @1149
c_set_shutdown @1150
c_get_shutdown @1151
slapi_vattr_namespace_values_get @1152
slapi_vattr_namespace_value_compare @1153
slapi_vattr_namespace_values_get_sp @1154
slapi_vattr_namespace_value_compare_sp @1155
slapi_vattrspi_register_ex @1156
slapi_filter_changetype @1157
slapi_rand_array @1158
slapi_entries_diff @1159
dup_global_schema_csn @1160
slapd_pk11_CERT_DestroyCertificate @1161
slapd_CERT_ExtractPublicKey @1162
slapd_pk11_FindPrivateKeyFromCert @1163
slapd_pk11_GetInternalKeySlot @1164
slapd_pk11_PubWrapSymKey @1165
slapd_pk11_KeyGen @1166
slapd_pk11_FreeSlot @1167
slapd_pk11_FreeSymKey @1168
slapd_pk11_DestroyContext @1169
slapd_pk11_ParamFromIV @1170
slapd_pk11_PubUnwrapSymKey @1171
slapd_SECKEY_PublicKeyStrength @1172
slapd_pk11_Finalize @1173
slapd_pk11_DigestFinal @1174
sasl_map_config_add @1175
sasl_map_config_delete @1176
sasl_map_domap @1177
sasl_map_init @1178
sasl_map_done @1179
slapd_SECITEM_FreeItem @1180
slapi_op_type_to_string @1181
|