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 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291
|
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/xhtml;charset=UTF-8"/>
<title>Open SCAP Library: /home/pvrabec/project/openscap/openscap-0.5.12/src/XCCDF/public/xccdf.h Source File</title>
<link href="tabs.css" rel="stylesheet" type="text/css"/>
<link href="doxygen.css" rel="stylesheet" type="text/css"/>
</head>
<body>
<!-- Generated by Doxygen 1.6.1 -->
<div class="navigation" id="top">
<div class="tabs">
<ul>
<li><a href="index.html"><span>Main Page</span></a></li>
<li><a href="pages.html"><span>Related Pages</span></a></li>
<li><a href="modules.html"><span>Modules</span></a></li>
<li><a href="annotated.html"><span>Data Structures</span></a></li>
<li class="current"><a href="files.html"><span>Files</span></a></li>
</ul>
</div>
<div class="tabs">
<ul>
<li><a href="files.html"><span>File List</span></a></li>
<li><a href="globals.html"><span>Globals</span></a></li>
</ul>
</div>
<h1>/home/pvrabec/project/openscap/openscap-0.5.12/src/XCCDF/public/xccdf.h</h1><a href="xccdf_8h.html">Go to the documentation of this file.</a><div class="fragment"><pre class="fragment"><a name="l00001"></a>00001
<a name="l00010"></a>00010 <span class="comment">/*</span>
<a name="l00011"></a>00011 <span class="comment"> * Copyright 2009 Red Hat Inc., Durham, North Carolina.</span>
<a name="l00012"></a>00012 <span class="comment"> * Copyright (C) 2010 Tresys Technology, LLC</span>
<a name="l00013"></a>00013 <span class="comment"> * All Rights Reserved.</span>
<a name="l00014"></a>00014 <span class="comment"> *</span>
<a name="l00015"></a>00015 <span class="comment"> * This library is free software; you can redistribute it and/or</span>
<a name="l00016"></a>00016 <span class="comment"> * modify it under the terms of the GNU Lesser General Public</span>
<a name="l00017"></a>00017 <span class="comment"> * License as published by the Free Software Foundation; either</span>
<a name="l00018"></a>00018 <span class="comment"> * version 2.1 of the License, or (at your option) any later version.</span>
<a name="l00019"></a>00019 <span class="comment"> *</span>
<a name="l00020"></a>00020 <span class="comment"> * This library is distributed in the hope that it will be useful, </span>
<a name="l00021"></a>00021 <span class="comment"> * but WITHOUT ANY WARRANTY; without even the implied warranty of</span>
<a name="l00022"></a>00022 <span class="comment"> * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU</span>
<a name="l00023"></a>00023 <span class="comment"> * Lesser General Public License for more details.</span>
<a name="l00024"></a>00024 <span class="comment"> *</span>
<a name="l00025"></a>00025 <span class="comment"> * You should have received a copy of the GNU Lesser General Public</span>
<a name="l00026"></a>00026 <span class="comment"> * License along with this library; if not, write to the Free Software </span>
<a name="l00027"></a>00027 <span class="comment"> * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA</span>
<a name="l00028"></a>00028 <span class="comment"> *</span>
<a name="l00029"></a>00029 <span class="comment"> * Authors:</span>
<a name="l00030"></a>00030 <span class="comment"> * Lukas Kuklinek <lkuklinek@redhat.com></span>
<a name="l00031"></a>00031 <span class="comment"> * Josh Adams <jadams@tresys.com></span>
<a name="l00032"></a>00032 <span class="comment"> */</span>
<a name="l00033"></a>00033
<a name="l00034"></a>00034 <span class="preprocessor">#ifndef XCCDF_H_</span>
<a name="l00035"></a>00035 <span class="preprocessor"></span><span class="preprocessor">#define XCCDF_H_</span>
<a name="l00036"></a>00036 <span class="preprocessor"></span>
<a name="l00037"></a>00037 <span class="preprocessor">#include <stdbool.h></span>
<a name="l00038"></a>00038 <span class="preprocessor">#include <time.h></span>
<a name="l00039"></a>00039 <span class="preprocessor">#include "<a class="code" href="oscap_8h.html" title="General OpenScap functions and types.">oscap.h</a>"</span>
<a name="l00040"></a>00040
<a name="l00041"></a>00041 <span class="comment">/*--------------------*\</span>
<a name="l00042"></a>00042 <span class="comment">| Enumerations |</span>
<a name="l00043"></a>00043 <span class="comment">\*--------------------*/</span>
<a name="l00044"></a>00044
<a name="l00053"></a><a class="code" href="group__XCCDF.html#ga1c722a7917110bdb164e21e75ed6cfa6">00053</a> <span class="keyword">typedef</span> <span class="keyword">enum</span> {
<a name="l00054"></a><a class="code" href="group__XCCDF.html#gga1c722a7917110bdb164e21e75ed6cfa6a0ef521155e714e3e622bff44fe79f3f6">00054</a> <a class="code" href="group__XCCDF.html#gga1c722a7917110bdb164e21e75ed6cfa6a0ef521155e714e3e622bff44fe79f3f6" title="Type constant for xccdf_benchmark.">XCCDF_BENCHMARK</a> = 0x0100,
<a name="l00055"></a><a class="code" href="group__XCCDF.html#gga1c722a7917110bdb164e21e75ed6cfa6abf32d9bbbebc66723858461496c792cc">00055</a> <a class="code" href="group__XCCDF.html#gga1c722a7917110bdb164e21e75ed6cfa6abf32d9bbbebc66723858461496c792cc" title="Type constant for xccdf_profile.">XCCDF_PROFILE</a> = 0x0200,
<a name="l00056"></a><a class="code" href="group__XCCDF.html#gga1c722a7917110bdb164e21e75ed6cfa6a3fc8dca887dde22f91a0e4042ae3fbbd">00056</a> <a class="code" href="group__XCCDF.html#gga1c722a7917110bdb164e21e75ed6cfa6a3fc8dca887dde22f91a0e4042ae3fbbd" title="Type constant for xccdf_result.">XCCDF_RESULT</a> = 0x0400,
<a name="l00057"></a><a class="code" href="group__XCCDF.html#gga1c722a7917110bdb164e21e75ed6cfa6a9fccd734c6c6d7d097f7627dd5a2c223">00057</a> <a class="code" href="group__XCCDF.html#gga1c722a7917110bdb164e21e75ed6cfa6a9fccd734c6c6d7d097f7627dd5a2c223" title="Type constant for xccdf_rule.">XCCDF_RULE</a> = 0x1000,
<a name="l00058"></a><a class="code" href="group__XCCDF.html#gga1c722a7917110bdb164e21e75ed6cfa6a1d7db7ee915a14499fedb8903288bd82">00058</a> <a class="code" href="group__XCCDF.html#gga1c722a7917110bdb164e21e75ed6cfa6a1d7db7ee915a14499fedb8903288bd82" title="Type constant for xccdf_group.">XCCDF_GROUP</a> = 0x2000,
<a name="l00059"></a><a class="code" href="group__XCCDF.html#gga1c722a7917110bdb164e21e75ed6cfa6ac67ed74fcb8f85bf90050450764c6d50">00059</a> <a class="code" href="group__XCCDF.html#gga1c722a7917110bdb164e21e75ed6cfa6ac67ed74fcb8f85bf90050450764c6d50" title="Type constant for xccdf_value.">XCCDF_VALUE</a> = 0x4000,
<a name="l00060"></a>00060
<a name="l00062"></a><a class="code" href="group__XCCDF.html#gga1c722a7917110bdb164e21e75ed6cfa6ad455a82154d39675b0bdf9e41753edcb">00062</a> <a class="code" href="group__XCCDF.html#gga1c722a7917110bdb164e21e75ed6cfa6ad455a82154d39675b0bdf9e41753edcb" title="Represents selectable items, i.e. rules and groups (see xccdf_item).">XCCDF_CONTENT</a> = <a class="code" href="group__XCCDF.html#gga1c722a7917110bdb164e21e75ed6cfa6a9fccd734c6c6d7d097f7627dd5a2c223" title="Type constant for xccdf_rule.">XCCDF_RULE</a> | <a class="code" href="group__XCCDF.html#gga1c722a7917110bdb164e21e75ed6cfa6a1d7db7ee915a14499fedb8903288bd82" title="Type constant for xccdf_group.">XCCDF_GROUP</a>,
<a name="l00064"></a><a class="code" href="group__XCCDF.html#gga1c722a7917110bdb164e21e75ed6cfa6a9fe7677d34eab1ed353ea67672cee4a7">00064</a> <a class="code" href="group__XCCDF.html#gga1c722a7917110bdb164e21e75ed6cfa6a9fe7677d34eab1ed353ea67672cee4a7" title="Represents items as described in the XCCDF documentation (see xccdf_item).">XCCDF_ITEM</a> = <a class="code" href="group__XCCDF.html#gga1c722a7917110bdb164e21e75ed6cfa6a9fccd734c6c6d7d097f7627dd5a2c223" title="Type constant for xccdf_rule.">XCCDF_RULE</a> | <a class="code" href="group__XCCDF.html#gga1c722a7917110bdb164e21e75ed6cfa6a1d7db7ee915a14499fedb8903288bd82" title="Type constant for xccdf_group.">XCCDF_GROUP</a> | <a class="code" href="group__XCCDF.html#gga1c722a7917110bdb164e21e75ed6cfa6ac67ed74fcb8f85bf90050450764c6d50" title="Type constant for xccdf_value.">XCCDF_VALUE</a>,
<a name="l00066"></a><a class="code" href="group__XCCDF.html#gga1c722a7917110bdb164e21e75ed6cfa6a44b500977f0ffcef546fbf03ca8d06ad">00066</a> <a class="code" href="group__XCCDF.html#gga1c722a7917110bdb164e21e75ed6cfa6a44b500977f0ffcef546fbf03ca8d06ad" title="Represents an object, profile, result or whole benchmark (see xccdf_item).">XCCDF_OBJECT</a> = <a class="code" href="group__XCCDF.html#gga1c722a7917110bdb164e21e75ed6cfa6a9fe7677d34eab1ed353ea67672cee4a7" title="Represents items as described in the XCCDF documentation (see xccdf_item).">XCCDF_ITEM</a> | <a class="code" href="group__XCCDF.html#gga1c722a7917110bdb164e21e75ed6cfa6abf32d9bbbebc66723858461496c792cc" title="Type constant for xccdf_profile.">XCCDF_PROFILE</a> | <a class="code" href="group__XCCDF.html#gga1c722a7917110bdb164e21e75ed6cfa6a0ef521155e714e3e622bff44fe79f3f6" title="Type constant for xccdf_benchmark.">XCCDF_BENCHMARK</a> | <a class="code" href="group__XCCDF.html#gga1c722a7917110bdb164e21e75ed6cfa6a3fc8dca887dde22f91a0e4042ae3fbbd" title="Type constant for xccdf_result.">XCCDF_RESULT</a>,
<a name="l00067"></a>00067 } <a class="code" href="group__XCCDF.html#ga1c722a7917110bdb164e21e75ed6cfa6" title="Type of an XCCDF object.">xccdf_type_t</a>;
<a name="l00068"></a>00068
<a name="l00070"></a><a class="code" href="group__XCCDF.html#ga11b376c782488525bddcfafa3bb92b96">00070</a> <span class="keyword">typedef</span> <span class="keyword">enum</span> {
<a name="l00071"></a><a class="code" href="group__XCCDF.html#gga11b376c782488525bddcfafa3bb92b96a8f4543fe184618e046ca90ec8e0a1998">00071</a> <a class="code" href="group__XCCDF.html#gga11b376c782488525bddcfafa3bb92b96a8f4543fe184618e046ca90ec8e0a1998" title="No interface hint.">XCCDF_IFACE_HINT_NONE</a>,
<a name="l00072"></a><a class="code" href="group__XCCDF.html#gga11b376c782488525bddcfafa3bb92b96a367db4c2ba698715d5a69fd037a4065f">00072</a> <a class="code" href="group__XCCDF.html#gga11b376c782488525bddcfafa3bb92b96a367db4c2ba698715d5a69fd037a4065f" title="Choice from multiple values.">XCCDF_IFACE_HINT_CHOICE</a>,
<a name="l00073"></a><a class="code" href="group__XCCDF.html#gga11b376c782488525bddcfafa3bb92b96a70b7d8e788d64d124b24860403dfb570">00073</a> <a class="code" href="group__XCCDF.html#gga11b376c782488525bddcfafa3bb92b96a70b7d8e788d64d124b24860403dfb570" title="Text line input widget.">XCCDF_IFACE_HINT_TEXTLINE</a>,
<a name="l00074"></a><a class="code" href="group__XCCDF.html#gga11b376c782488525bddcfafa3bb92b96a11b3e08a8c21cef9580624b8da5ff6b0">00074</a> <a class="code" href="group__XCCDF.html#gga11b376c782488525bddcfafa3bb92b96a11b3e08a8c21cef9580624b8da5ff6b0" title="Textarea.">XCCDF_IFACE_HINT_TEXT</a>,
<a name="l00075"></a><a class="code" href="group__XCCDF.html#gga11b376c782488525bddcfafa3bb92b96ad0e625cc04af8cd74bcee72a45f7dc23">00075</a> <a class="code" href="group__XCCDF.html#gga11b376c782488525bddcfafa3bb92b96ad0e625cc04af8cd74bcee72a45f7dc23" title="Date selection widget.">XCCDF_IFACE_HINT_DATE</a>,
<a name="l00076"></a><a class="code" href="group__XCCDF.html#gga11b376c782488525bddcfafa3bb92b96aeb4a669edb84abd7acf44abfa80cd4a2">00076</a> <a class="code" href="group__XCCDF.html#gga11b376c782488525bddcfafa3bb92b96aeb4a669edb84abd7acf44abfa80cd4a2" title="Date and time selection widget.">XCCDF_IFACE_HINT_DATETIME</a>,
<a name="l00077"></a>00077 } <a class="code" href="group__XCCDF.html#ga11b376c782488525bddcfafa3bb92b96" title="Interface hint.">xccdf_interface_hint_t</a>;
<a name="l00078"></a>00078
<a name="l00080"></a><a class="code" href="group__XCCDF.html#gac0d5c1c85828e13ebb13935551f8da38">00080</a> <span class="keyword">typedef</span> <span class="keyword">enum</span> {
<a name="l00081"></a><a class="code" href="group__XCCDF.html#ggac0d5c1c85828e13ebb13935551f8da38a41b4c71d5a9c3c440076299123030566">00081</a> <a class="code" href="group__XCCDF.html#ggac0d5c1c85828e13ebb13935551f8da38a41b4c71d5a9c3c440076299123030566" title="Status was not specified by benchmark.">XCCDF_STATUS_NOT_SPECIFIED</a>,
<a name="l00082"></a><a class="code" href="group__XCCDF.html#ggac0d5c1c85828e13ebb13935551f8da38a6018d6146ba9010bf4029f8eceb47af7">00082</a> <a class="code" href="group__XCCDF.html#ggac0d5c1c85828e13ebb13935551f8da38a6018d6146ba9010bf4029f8eceb47af7" title="Accepted.">XCCDF_STATUS_ACCEPTED</a>,
<a name="l00083"></a><a class="code" href="group__XCCDF.html#ggac0d5c1c85828e13ebb13935551f8da38aa6bc6ada10d8f60ebaec3fd3a0216dbf">00083</a> <a class="code" href="group__XCCDF.html#ggac0d5c1c85828e13ebb13935551f8da38aa6bc6ada10d8f60ebaec3fd3a0216dbf" title="Deprecated.">XCCDF_STATUS_DEPRECATED</a>,
<a name="l00084"></a><a class="code" href="group__XCCDF.html#ggac0d5c1c85828e13ebb13935551f8da38a8044bda286eec7fbb6e51c7aa03176d0">00084</a> <a class="code" href="group__XCCDF.html#ggac0d5c1c85828e13ebb13935551f8da38a8044bda286eec7fbb6e51c7aa03176d0" title="Draft item.">XCCDF_STATUS_DRAFT</a>,
<a name="l00085"></a><a class="code" href="group__XCCDF.html#ggac0d5c1c85828e13ebb13935551f8da38a0b133c835ed8d86839a86624cb1458ee">00085</a> <a class="code" href="group__XCCDF.html#ggac0d5c1c85828e13ebb13935551f8da38a0b133c835ed8d86839a86624cb1458ee" title="The item is not complete.">XCCDF_STATUS_INCOMPLETE</a>,
<a name="l00086"></a><a class="code" href="group__XCCDF.html#ggac0d5c1c85828e13ebb13935551f8da38a595188ea34d67c177f152b39f6f19b30">00086</a> <a class="code" href="group__XCCDF.html#ggac0d5c1c85828e13ebb13935551f8da38a595188ea34d67c177f152b39f6f19b30" title="Interim.">XCCDF_STATUS_INTERIM</a>
<a name="l00087"></a>00087 } <a class="code" href="group__XCCDF.html#gac0d5c1c85828e13ebb13935551f8da38" title="Status of an XCCDF item.">xccdf_status_type_t</a>;
<a name="l00088"></a>00088
<a name="l00090"></a><a class="code" href="group__XCCDF.html#gaa2d75ea6d3cd6957100f532b2ab8e8a8">00090</a> <span class="keyword">typedef</span> <span class="keyword">enum</span> {
<a name="l00091"></a><a class="code" href="group__XCCDF.html#ggaa2d75ea6d3cd6957100f532b2ab8e8a8a60b3e0dbb7e2d9240331d0b9e8b05ac0">00091</a> <a class="code" href="group__XCCDF.html#ggaa2d75ea6d3cd6957100f532b2ab8e8a8a60b3e0dbb7e2d9240331d0b9e8b05ac0" title="Integer.">XCCDF_TYPE_NUMBER</a> = 1,
<a name="l00092"></a><a class="code" href="group__XCCDF.html#ggaa2d75ea6d3cd6957100f532b2ab8e8a8a0c981ae1fbc6247264dacddde483bc60">00092</a> <a class="code" href="group__XCCDF.html#ggaa2d75ea6d3cd6957100f532b2ab8e8a8a0c981ae1fbc6247264dacddde483bc60" title="String.">XCCDF_TYPE_STRING</a>,
<a name="l00093"></a><a class="code" href="group__XCCDF.html#ggaa2d75ea6d3cd6957100f532b2ab8e8a8a36bd5ebf5a7bf2c7ab8dbf3dacdb1105">00093</a> <a class="code" href="group__XCCDF.html#ggaa2d75ea6d3cd6957100f532b2ab8e8a8a36bd5ebf5a7bf2c7ab8dbf3dacdb1105" title="Boolean.">XCCDF_TYPE_BOOLEAN</a>,
<a name="l00094"></a>00094 } <a class="code" href="group__XCCDF.html#gaa2d75ea6d3cd6957100f532b2ab8e8a8" title="Type of an xccdf_value.">xccdf_value_type_t</a>;
<a name="l00095"></a>00095
<a name="l00097"></a><a class="code" href="group__XCCDF.html#ga4458b04cd1236b95d15ac2d74276c09c">00097</a> <span class="keyword">typedef</span> <span class="keyword">enum</span> {
<a name="l00098"></a><a class="code" href="group__XCCDF.html#gga4458b04cd1236b95d15ac2d74276c09caab8131abf005a13dd6d39c62c258b907">00098</a> <a class="code" href="group__XCCDF.html#gga4458b04cd1236b95d15ac2d74276c09caab8131abf005a13dd6d39c62c258b907" title="Equality.">XCCDF_OPERATOR_EQUALS</a> = 1,
<a name="l00099"></a><a class="code" href="group__XCCDF.html#gga4458b04cd1236b95d15ac2d74276c09ca8e8ee1baa56831472e462dd0957c2cd0">00099</a> <a class="code" href="group__XCCDF.html#gga4458b04cd1236b95d15ac2d74276c09ca8e8ee1baa56831472e462dd0957c2cd0" title="Inequality.">XCCDF_OPERATOR_NOT_EQUAL</a>,
<a name="l00100"></a><a class="code" href="group__XCCDF.html#gga4458b04cd1236b95d15ac2d74276c09ca43cafb160b23591c9fb0d795f4b9a559">00100</a> <a class="code" href="group__XCCDF.html#gga4458b04cd1236b95d15ac2d74276c09ca43cafb160b23591c9fb0d795f4b9a559" title="Greater than.">XCCDF_OPERATOR_GREATER</a>,
<a name="l00101"></a><a class="code" href="group__XCCDF.html#gga4458b04cd1236b95d15ac2d74276c09cad43f722ca5299390afe9297ce3eebd80">00101</a> <a class="code" href="group__XCCDF.html#gga4458b04cd1236b95d15ac2d74276c09cad43f722ca5299390afe9297ce3eebd80" title="Greater than or equal.">XCCDF_OPERATOR_GREATER_EQUAL</a>,
<a name="l00102"></a><a class="code" href="group__XCCDF.html#gga4458b04cd1236b95d15ac2d74276c09caa09376ad100c95360f1a8d6aba52d61a">00102</a> <a class="code" href="group__XCCDF.html#gga4458b04cd1236b95d15ac2d74276c09caa09376ad100c95360f1a8d6aba52d61a" title="Less than.">XCCDF_OPERATOR_LESS</a>,
<a name="l00103"></a><a class="code" href="group__XCCDF.html#gga4458b04cd1236b95d15ac2d74276c09caf28836ccd62954085b11c9d0e79b6370">00103</a> <a class="code" href="group__XCCDF.html#gga4458b04cd1236b95d15ac2d74276c09caf28836ccd62954085b11c9d0e79b6370" title="Less than or equal.">XCCDF_OPERATOR_LESS_EQUAL</a>,
<a name="l00104"></a><a class="code" href="group__XCCDF.html#gga4458b04cd1236b95d15ac2d74276c09cab7b3c51d9f96c9974eba6151fec8b1f0">00104</a> <a class="code" href="group__XCCDF.html#gga4458b04cd1236b95d15ac2d74276c09cab7b3c51d9f96c9974eba6151fec8b1f0" title="Match a regular expression.">XCCDF_OPERATOR_PATTERN_MATCH</a>
<a name="l00105"></a>00105 } <a class="code" href="group__XCCDF.html#ga4458b04cd1236b95d15ac2d74276c09c" title="Operator to be applied on an xccdf_value.">xccdf_operator_t</a>;
<a name="l00106"></a>00106
<a name="l00108"></a><a class="code" href="group__XCCDF.html#gac5b91d8f1c9b08c92226646230e8f676">00108</a> <span class="keyword">typedef</span> <span class="keyword">enum</span> {
<a name="l00109"></a><a class="code" href="group__XCCDF.html#ggac5b91d8f1c9b08c92226646230e8f676a333d8e5e60874d56a59ac71d716fd8a0">00109</a> <a class="code" href="group__XCCDF.html#ggac5b91d8f1c9b08c92226646230e8f676a333d8e5e60874d56a59ac71d716fd8a0" title="Logical and.">XCCDF_OPERATOR_AND</a> = 0x0002,
<a name="l00110"></a><a class="code" href="group__XCCDF.html#ggac5b91d8f1c9b08c92226646230e8f676a7045b79873323f4d9c732c3e7e3aea9c">00110</a> <a class="code" href="group__XCCDF.html#ggac5b91d8f1c9b08c92226646230e8f676a7045b79873323f4d9c732c3e7e3aea9c" title="Logical or.">XCCDF_OPERATOR_OR</a> = 0x0003,
<a name="l00111"></a><a class="code" href="group__XCCDF.html#ggac5b91d8f1c9b08c92226646230e8f676a5bde87babb4e5d2baa7a4f57be60ccaa">00111</a> <a class="code" href="group__XCCDF.html#ggac5b91d8f1c9b08c92226646230e8f676a5bde87babb4e5d2baa7a4f57be60ccaa" title="Logical negation.">XCCDF_OPERATOR_NOT</a> = 0x0100,
<a name="l00112"></a><a class="code" href="group__XCCDF.html#ggac5b91d8f1c9b08c92226646230e8f676af40df111d54e025e4a042a8b8e69ead7">00112</a> <a class="code" href="group__XCCDF.html#ggac5b91d8f1c9b08c92226646230e8f676af40df111d54e025e4a042a8b8e69ead7" title="Logical nand.">XCCDF_OPERATOR_NAND</a> = <a class="code" href="group__XCCDF.html#ggac5b91d8f1c9b08c92226646230e8f676a333d8e5e60874d56a59ac71d716fd8a0" title="Logical and.">XCCDF_OPERATOR_AND</a> | <a class="code" href="group__XCCDF.html#ggac5b91d8f1c9b08c92226646230e8f676a5bde87babb4e5d2baa7a4f57be60ccaa" title="Logical negation.">XCCDF_OPERATOR_NOT</a>,
<a name="l00113"></a><a class="code" href="group__XCCDF.html#ggac5b91d8f1c9b08c92226646230e8f676a35488a3fed3d5c73710e350767d06894">00113</a> <a class="code" href="group__XCCDF.html#ggac5b91d8f1c9b08c92226646230e8f676a35488a3fed3d5c73710e350767d06894" title="Logical nor.">XCCDF_OPERATOR_NOR</a> = <a class="code" href="group__XCCDF.html#ggac5b91d8f1c9b08c92226646230e8f676a7045b79873323f4d9c732c3e7e3aea9c" title="Logical or.">XCCDF_OPERATOR_OR</a> | <a class="code" href="group__XCCDF.html#ggac5b91d8f1c9b08c92226646230e8f676a5bde87babb4e5d2baa7a4f57be60ccaa" title="Logical negation.">XCCDF_OPERATOR_NOT</a>,
<a name="l00114"></a><a class="code" href="group__XCCDF.html#ggac5b91d8f1c9b08c92226646230e8f676a19e8a06128af85b60f95e58531d11a2f">00114</a> <a class="code" href="group__XCCDF.html#ggac5b91d8f1c9b08c92226646230e8f676a19e8a06128af85b60f95e58531d11a2f" title="Mask to strip the negation away (using bitwise and).">XCCDF_OPERATOR_MASK</a> = 0x00ff
<a name="l00115"></a>00115 } <a class="code" href="group__XCCDF.html#gac5b91d8f1c9b08c92226646230e8f676" title="Boolean operators for logical expressions.">xccdf_bool_operator_t</a>;
<a name="l00116"></a>00116
<a name="l00118"></a><a class="code" href="group__XCCDF.html#ga209163661038a6be4066cdec716c997f">00118</a> <span class="keyword">typedef</span> <span class="keyword">enum</span> {
<a name="l00119"></a><a class="code" href="group__XCCDF.html#gga209163661038a6be4066cdec716c997fad84b2c68a3baabe2870dcd78d1f182c9">00119</a> <a class="code" href="group__XCCDF.html#gga209163661038a6be4066cdec716c997fad84b2c68a3baabe2870dcd78d1f182c9" title="Unknown.">XCCDF_UNKNOWN</a> = 1,
<a name="l00120"></a><a class="code" href="group__XCCDF.html#gga209163661038a6be4066cdec716c997fade27a666291796f915a9e7bcedf5581e">00120</a> <a class="code" href="group__XCCDF.html#gga209163661038a6be4066cdec716c997fade27a666291796f915a9e7bcedf5581e" title="Info.">XCCDF_INFO</a>,
<a name="l00121"></a><a class="code" href="group__XCCDF.html#gga209163661038a6be4066cdec716c997facf358c1aa3a0a7d904936cdabc4d30ee">00121</a> <a class="code" href="group__XCCDF.html#gga209163661038a6be4066cdec716c997facf358c1aa3a0a7d904936cdabc4d30ee" title="Low.">XCCDF_LOW</a>,
<a name="l00122"></a><a class="code" href="group__XCCDF.html#gga209163661038a6be4066cdec716c997fa7a9215fbea87e4da7d076c3fe27df452">00122</a> <a class="code" href="group__XCCDF.html#gga209163661038a6be4066cdec716c997fa7a9215fbea87e4da7d076c3fe27df452" title="Medium.">XCCDF_MEDIUM</a>,
<a name="l00123"></a><a class="code" href="group__XCCDF.html#gga209163661038a6be4066cdec716c997fa01f0df0e8b0affd81d2fdcc3069ed5ca">00123</a> <a class="code" href="group__XCCDF.html#gga209163661038a6be4066cdec716c997fa01f0df0e8b0affd81d2fdcc3069ed5ca" title="High.">XCCDF_HIGH</a>
<a name="l00124"></a>00124 } <a class="code" href="group__XCCDF.html#ga209163661038a6be4066cdec716c997f" title="XCCDF error, complexity, disruption, or severity level.">xccdf_level_t</a>;
<a name="l00125"></a>00125
<a name="l00127"></a><a class="code" href="group__XCCDF.html#ga1485899f9bf18c3aa0b0efbb6fe2beb7">00127</a> <span class="keyword">typedef</span> <span class="keyword">enum</span> {
<a name="l00128"></a><a class="code" href="group__XCCDF.html#gga1485899f9bf18c3aa0b0efbb6fe2beb7aa4be3bc31baaaa553747c77f610d17ee">00128</a> <a class="code" href="group__XCCDF.html#gga1485899f9bf18c3aa0b0efbb6fe2beb7aa4be3bc31baaaa553747c77f610d17ee" title="Info.">XCCDF_MSG_INFO</a> = <a class="code" href="group__XCCDF.html#gga209163661038a6be4066cdec716c997fade27a666291796f915a9e7bcedf5581e" title="Info.">XCCDF_INFO</a>,
<a name="l00129"></a><a class="code" href="group__XCCDF.html#gga1485899f9bf18c3aa0b0efbb6fe2beb7a7db5182c3b9f00ed5e18bf813f0158dd">00129</a> <a class="code" href="group__XCCDF.html#gga1485899f9bf18c3aa0b0efbb6fe2beb7a7db5182c3b9f00ed5e18bf813f0158dd" title="Warning.">XCCDF_MSG_WARNING</a> = <a class="code" href="group__XCCDF.html#gga209163661038a6be4066cdec716c997facf358c1aa3a0a7d904936cdabc4d30ee" title="Low.">XCCDF_LOW</a>,
<a name="l00130"></a><a class="code" href="group__XCCDF.html#gga1485899f9bf18c3aa0b0efbb6fe2beb7a1b4d63dd4841db2b261286ff541afdc6">00130</a> <a class="code" href="group__XCCDF.html#gga1485899f9bf18c3aa0b0efbb6fe2beb7a1b4d63dd4841db2b261286ff541afdc6" title="Error.">XCCDF_MSG_ERROR</a> = <a class="code" href="group__XCCDF.html#gga209163661038a6be4066cdec716c997fa01f0df0e8b0affd81d2fdcc3069ed5ca" title="High.">XCCDF_HIGH</a>,
<a name="l00131"></a>00131 } <a class="code" href="group__XCCDF.html#ga1485899f9bf18c3aa0b0efbb6fe2beb7" title="Severity of an xccdf_message.">xccdf_message_severity_t</a>;
<a name="l00132"></a>00132
<a name="l00134"></a><a class="code" href="group__XCCDF.html#ga6cb5c6fdd0ccc42b1c8cec5313df5804">00134</a> <span class="keyword">typedef</span> <span class="keyword">enum</span> {
<a name="l00135"></a><a class="code" href="group__XCCDF.html#gga6cb5c6fdd0ccc42b1c8cec5313df5804af0a9efcbe29a7bf8d296d574a25c170e">00135</a> <a class="code" href="group__XCCDF.html#gga6cb5c6fdd0ccc42b1c8cec5313df5804af0a9efcbe29a7bf8d296d574a25c170e" title="Check the rule and let the result contriburte to the score and appear in reports...">XCCDF_ROLE_FULL</a> = 1,
<a name="l00136"></a><a class="code" href="group__XCCDF.html#gga6cb5c6fdd0ccc42b1c8cec5313df5804a0e3e07c18b7cbb9510af01d608e199a5">00136</a> <a class="code" href="group__XCCDF.html#gga6cb5c6fdd0ccc42b1c8cec5313df5804a0e3e07c18b7cbb9510af01d608e199a5" title="Check the rule and include the result in reports, but do not include it into score...">XCCDF_ROLE_UNSCORED</a>,
<a name="l00137"></a><a class="code" href="group__XCCDF.html#gga6cb5c6fdd0ccc42b1c8cec5313df5804aac45eb8802f220da7ceaa275bd6fc3b2">00137</a> <a class="code" href="group__XCCDF.html#gga6cb5c6fdd0ccc42b1c8cec5313df5804aac45eb8802f220da7ceaa275bd6fc3b2" title="Don&#39;t check the rule, result will be XCCDF_RESULT_UNKNOWN.">XCCDF_ROLE_UNCHECKED</a>
<a name="l00138"></a>00138 } <a class="code" href="group__XCCDF.html#ga6cb5c6fdd0ccc42b1c8cec5313df5804" title="XCCDF role.">xccdf_role_t</a>;
<a name="l00139"></a>00139
<a name="l00141"></a><a class="code" href="group__XCCDF.html#ga70ec25fc378db41df2c7344a06adf6aa">00141</a> <span class="keyword">typedef</span> <span class="keyword">enum</span> {
<a name="l00142"></a><a class="code" href="group__XCCDF.html#gga70ec25fc378db41df2c7344a06adf6aaae0214730758fed2c3c67823a78cfbf3c">00142</a> <a class="code" href="group__XCCDF.html#gga70ec25fc378db41df2c7344a06adf6aaae0214730758fed2c3c67823a78cfbf3c" title="General-purpose warning.">XCCDF_WARNING_GENERAL</a> = 1,
<a name="l00143"></a><a class="code" href="group__XCCDF.html#gga70ec25fc378db41df2c7344a06adf6aaa1656f6eb1421dc7b07c73dac0188e056">00143</a> <a class="code" href="group__XCCDF.html#gga70ec25fc378db41df2c7344a06adf6aaa1656f6eb1421dc7b07c73dac0188e056" title="Warning about possible impacts to functionality.">XCCDF_WARNING_FUNCTIONALITY</a>,
<a name="l00144"></a><a class="code" href="group__XCCDF.html#gga70ec25fc378db41df2c7344a06adf6aaa099d4869a65e646759d4ebdd3ee9fd37">00144</a> <a class="code" href="group__XCCDF.html#gga70ec25fc378db41df2c7344a06adf6aaa099d4869a65e646759d4ebdd3ee9fd37" title="Warning about changes to target system performance.">XCCDF_WARNING_PERFORMANCE</a>,
<a name="l00145"></a><a class="code" href="group__XCCDF.html#gga70ec25fc378db41df2c7344a06adf6aaa0174eadd5eb3c4048b56c7269decbae9">00145</a> <a class="code" href="group__XCCDF.html#gga70ec25fc378db41df2c7344a06adf6aaa0174eadd5eb3c4048b56c7269decbae9" title="Warning about hardware restrictions or possible impacts to hardware.">XCCDF_WARNING_HARDWARE</a>,
<a name="l00146"></a><a class="code" href="group__XCCDF.html#gga70ec25fc378db41df2c7344a06adf6aaa856ad08cebab131e6e0f1e758ea1c6b1">00146</a> <a class="code" href="group__XCCDF.html#gga70ec25fc378db41df2c7344a06adf6aaa856ad08cebab131e6e0f1e758ea1c6b1" title="Warning about legal implications.">XCCDF_WARNING_LEGAL</a>,
<a name="l00147"></a><a class="code" href="group__XCCDF.html#gga70ec25fc378db41df2c7344a06adf6aaadf722287b5497cc6b3973ebfe14beb62">00147</a> <a class="code" href="group__XCCDF.html#gga70ec25fc378db41df2c7344a06adf6aaadf722287b5497cc6b3973ebfe14beb62" title="Warning about regulatory obligations.">XCCDF_WARNING_REGULATORY</a>,
<a name="l00148"></a><a class="code" href="group__XCCDF.html#gga70ec25fc378db41df2c7344a06adf6aaa89d79095e85fdf9dd10850bc460fe134">00148</a> <a class="code" href="group__XCCDF.html#gga70ec25fc378db41df2c7344a06adf6aaa89d79095e85fdf9dd10850bc460fe134" title="Warning about impacts to the mgmt or administration of the target system.">XCCDF_WARNING_MANAGEMENT</a>,
<a name="l00149"></a><a class="code" href="group__XCCDF.html#gga70ec25fc378db41df2c7344a06adf6aaa987e05c90156022a6242e03d4b7bffa8">00149</a> <a class="code" href="group__XCCDF.html#gga70ec25fc378db41df2c7344a06adf6aaa987e05c90156022a6242e03d4b7bffa8" title="Warning about impacts to audit or logging.">XCCDF_WARNING_AUDIT</a>,
<a name="l00150"></a><a class="code" href="group__XCCDF.html#gga70ec25fc378db41df2c7344a06adf6aaa243e43e2be8d3b51ccbfbc3038e8ded4">00150</a> <a class="code" href="group__XCCDF.html#gga70ec25fc378db41df2c7344a06adf6aaa243e43e2be8d3b51ccbfbc3038e8ded4" title="Warning about dependencies between this Rule and other parts of the target system...">XCCDF_WARNING_DEPENDENCY</a>
<a name="l00151"></a>00151 } <a class="code" href="group__XCCDF.html#ga70ec25fc378db41df2c7344a06adf6aa" title="Category of xccdf_warning.">xccdf_warning_category_t</a>;
<a name="l00152"></a>00152
<a name="l00154"></a><a class="code" href="group__XCCDF.html#ga534ac2d5662227cff66913038f4263e1">00154</a> <span class="keyword">typedef</span> <span class="keyword">enum</span> {
<a name="l00155"></a><a class="code" href="group__XCCDF.html#gga534ac2d5662227cff66913038f4263e1a966112caea38119ecf52acaa58ea59b5">00155</a> <a class="code" href="group__XCCDF.html#gga534ac2d5662227cff66913038f4263e1a966112caea38119ecf52acaa58ea59b5" title="Strategy not defined.">XCCDF_STRATEGY_UNKNOWN</a>,
<a name="l00156"></a><a class="code" href="group__XCCDF.html#gga534ac2d5662227cff66913038f4263e1ac46a307d850a433554d0646c51abfeed">00156</a> <a class="code" href="group__XCCDF.html#gga534ac2d5662227cff66913038f4263e1ac46a307d850a433554d0646c51abfeed" title="Adjust target config or settings.">XCCDF_STRATEGY_CONFIGURE</a>,
<a name="l00157"></a><a class="code" href="group__XCCDF.html#gga534ac2d5662227cff66913038f4263e1a7b9e241f9be9eeb96c2850f528638a1b">00157</a> <a class="code" href="group__XCCDF.html#gga534ac2d5662227cff66913038f4263e1a7b9e241f9be9eeb96c2850f528638a1b" title="Turn off or deinstall something.">XCCDF_STRATEGY_DISABLE</a>,
<a name="l00158"></a><a class="code" href="group__XCCDF.html#gga534ac2d5662227cff66913038f4263e1aa7d1502ad13dd698470a7f62eebaeca8">00158</a> <a class="code" href="group__XCCDF.html#gga534ac2d5662227cff66913038f4263e1aa7d1502ad13dd698470a7f62eebaeca8" title="Turn on or install something.">XCCDF_STRATEGY_ENABLE</a>,
<a name="l00159"></a><a class="code" href="group__XCCDF.html#gga534ac2d5662227cff66913038f4263e1afa8ed41429157f7d41a3c1cf324d8f57">00159</a> <a class="code" href="group__XCCDF.html#gga534ac2d5662227cff66913038f4263e1afa8ed41429157f7d41a3c1cf324d8f57" title="Apply a patch, hotfix, or update.">XCCDF_STRATEGY_PATCH</a>,
<a name="l00160"></a><a class="code" href="group__XCCDF.html#gga534ac2d5662227cff66913038f4263e1ab4238187ae4543f2acc235a176a065bb">00160</a> <a class="code" href="group__XCCDF.html#gga534ac2d5662227cff66913038f4263e1ab4238187ae4543f2acc235a176a065bb" title="Remediation by changing policies/procedures.">XCCDF_STRATEGY_POLICY</a>,
<a name="l00161"></a><a class="code" href="group__XCCDF.html#gga534ac2d5662227cff66913038f4263e1a371d2d2209d6d17d4c3830bb280d90ff">00161</a> <a class="code" href="group__XCCDF.html#gga534ac2d5662227cff66913038f4263e1a371d2d2209d6d17d4c3830bb280d90ff" title="Adjust permissions or ACLs.">XCCDF_STRATEGY_RESTRICT</a>,
<a name="l00162"></a><a class="code" href="group__XCCDF.html#gga534ac2d5662227cff66913038f4263e1a207f4076289a4858182fdae6461ad70d">00162</a> <a class="code" href="group__XCCDF.html#gga534ac2d5662227cff66913038f4263e1a207f4076289a4858182fdae6461ad70d" title="Install upgrade or update the system.">XCCDF_STRATEGY_UPDATE</a>,
<a name="l00163"></a><a class="code" href="group__XCCDF.html#gga534ac2d5662227cff66913038f4263e1a79cf7e7d6bb92ab3890e4ea85de11f84">00163</a> <a class="code" href="group__XCCDF.html#gga534ac2d5662227cff66913038f4263e1a79cf7e7d6bb92ab3890e4ea85de11f84" title="Combo of two or more of the above.">XCCDF_STRATEGY_COMBINATION</a>
<a name="l00164"></a>00164 } <a class="code" href="group__XCCDF.html#ga534ac2d5662227cff66913038f4263e1" title="Fix strategy type.">xccdf_strategy_t</a>;
<a name="l00165"></a>00165
<a name="l00167"></a><a class="code" href="group__XCCDF.html#gabf34f4480799efc8e1af5f4706d2666d">00167</a> <span class="keyword">typedef</span> <span class="keyword">enum</span> {
<a name="l00168"></a><a class="code" href="group__XCCDF.html#ggabf34f4480799efc8e1af5f4706d2666da3a6a8e5fc7785fefe7d430af369d96e4">00168</a> <a class="code" href="group__XCCDF.html#ggabf34f4480799efc8e1af5f4706d2666da3a6a8e5fc7785fefe7d430af369d96e4" title="The test passed.">XCCDF_RESULT_PASS</a> = 1,
<a name="l00169"></a><a class="code" href="group__XCCDF.html#ggabf34f4480799efc8e1af5f4706d2666daa719ce524dafd5ab8d2bb7740c5cd695">00169</a> <a class="code" href="group__XCCDF.html#ggabf34f4480799efc8e1af5f4706d2666daa719ce524dafd5ab8d2bb7740c5cd695" title="The test failed.">XCCDF_RESULT_FAIL</a>,
<a name="l00170"></a><a class="code" href="group__XCCDF.html#ggabf34f4480799efc8e1af5f4706d2666da77424127a0b953030609ab90a209caf7">00170</a> <a class="code" href="group__XCCDF.html#ggabf34f4480799efc8e1af5f4706d2666da77424127a0b953030609ab90a209caf7" title="An error occurred and test could not complete.">XCCDF_RESULT_ERROR</a>,
<a name="l00171"></a><a class="code" href="group__XCCDF.html#ggabf34f4480799efc8e1af5f4706d2666daf74255501061c6f12a0a140bbc5447c0">00171</a> <a class="code" href="group__XCCDF.html#ggabf34f4480799efc8e1af5f4706d2666daf74255501061c6f12a0a140bbc5447c0" title="Could not tell what happened.">XCCDF_RESULT_UNKNOWN</a>,
<a name="l00172"></a><a class="code" href="group__XCCDF.html#ggabf34f4480799efc8e1af5f4706d2666dabac10fe7c643c2b73340b21eed766e60">00172</a> <a class="code" href="group__XCCDF.html#ggabf34f4480799efc8e1af5f4706d2666dabac10fe7c643c2b73340b21eed766e60" title="Rule did not apply to test target.">XCCDF_RESULT_NOT_APPLICABLE</a>,
<a name="l00173"></a><a class="code" href="group__XCCDF.html#ggabf34f4480799efc8e1af5f4706d2666dac8d8793e6f4e46cc077f9e163c035a2b">00173</a> <a class="code" href="group__XCCDF.html#ggabf34f4480799efc8e1af5f4706d2666dac8d8793e6f4e46cc077f9e163c035a2b" title="Rule did not cause any evaluation by the checking engine.">XCCDF_RESULT_NOT_CHECKED</a>,
<a name="l00174"></a><a class="code" href="group__XCCDF.html#ggabf34f4480799efc8e1af5f4706d2666dad1a25dfdbd7c77e5e0f9a943e7ac240a">00174</a> <a class="code" href="group__XCCDF.html#ggabf34f4480799efc8e1af5f4706d2666dad1a25dfdbd7c77e5e0f9a943e7ac240a" title="Rule was not selected in the Benchmark.">XCCDF_RESULT_NOT_SELECTED</a>,
<a name="l00175"></a><a class="code" href="group__XCCDF.html#ggabf34f4480799efc8e1af5f4706d2666da06862a7ab1866960bd25cd1ad5875488">00175</a> <a class="code" href="group__XCCDF.html#ggabf34f4480799efc8e1af5f4706d2666da06862a7ab1866960bd25cd1ad5875488" title="Rule was evaluated by the checking engine, but isn&#39;t to be scored.">XCCDF_RESULT_INFORMATIONAL</a>,
<a name="l00176"></a><a class="code" href="group__XCCDF.html#ggabf34f4480799efc8e1af5f4706d2666dafd540e98e81524c2b894613fd3aa030f">00176</a> <a class="code" href="group__XCCDF.html#ggabf34f4480799efc8e1af5f4706d2666dafd540e98e81524c2b894613fd3aa030f" title="Rule failed, but was later fixed.">XCCDF_RESULT_FIXED</a>
<a name="l00177"></a>00177 } <a class="code" href="group__XCCDF.html#gabf34f4480799efc8e1af5f4706d2666d" title="Test result.">xccdf_test_result_type_t</a>;
<a name="l00178"></a>00178
<a name="l00179"></a>00179 <span class="comment">/*--------------------*\</span>
<a name="l00180"></a>00180 <span class="comment">| Typedefs |</span>
<a name="l00181"></a>00181 <span class="comment">\*--------------------*/</span>
<a name="l00182"></a>00182
<a name="l00186"></a><a class="code" href="group__XCCDF.html#ga83ab7d5052d01468f373732e268f47b4">00186</a> <span class="keyword">typedef</span> <span class="keywordtype">float</span> <a class="code" href="group__XCCDF.html#ga83ab7d5052d01468f373732e268f47b4" title="Type of a numerical content for a XCCDF value.">xccdf_numeric</a>;
<a name="l00187"></a>00187
<a name="l00192"></a><a class="code" href="structxccdf__profile.html">00192</a> <span class="keyword">struct </span><a class="code" href="structxccdf__benchmark.html" title="Top level XCCDF structure containing profiles, rules, values and results.">xccdf_benchmark</a>;
<a name="l00193"></a>00193
<a name="l00198"></a>00198 <span class="keyword">struct </span><a class="code" href="structxccdf__profile.html" title="XCCDF profile is a set of tests and their settings in a compact package.">xccdf_profile</a>;
<a name="l00199"></a>00199
<a name="l00204"></a><a class="code" href="structxccdf__rule.html">00204</a> <span class="keyword">struct </span><a class="code" href="structxccdf__item.html" title="A base class for XCCDF items.">xccdf_item</a>;
<a name="l00205"></a>00205
<a name="l00210"></a><a class="code" href="structxccdf__group.html">00210</a> <span class="keyword">struct </span><a class="code" href="structxccdf__rule.html" title="XCCDF rule defines a test execution.">xccdf_rule</a>;
<a name="l00211"></a>00211
<a name="l00216"></a><a class="code" href="structxccdf__value.html">00216</a> <span class="keyword">struct </span><a class="code" href="structxccdf__group.html" title="XCCDF rule group.">xccdf_group</a>;
<a name="l00217"></a>00217
<a name="l00222"></a><a class="code" href="structxccdf__result.html">00222</a> <span class="keyword">struct </span><a class="code" href="structxccdf__value.html" title="XCCDF Value allows test parametrization or capturing output of tests.">xccdf_value</a>;
<a name="l00223"></a>00223
<a name="l00228"></a>00228 <span class="keyword">struct </span><a class="code" href="structxccdf__result.html" title="Actual results of running a XCCDF test or profile.">xccdf_result</a>;
<a name="l00229"></a>00229
<a name="l00230"></a>00230 <span class="comment">/*--------------------*\</span>
<a name="l00231"></a>00231 <span class="comment">| Support structures |</span>
<a name="l00232"></a>00232 <span class="comment">\*--------------------*/</span>
<a name="l00233"></a>00233
<a name="l00238"></a>00238 <span class="keyword">struct </span><a class="code" href="structxccdf__notice.html" title="XCCDF benchmark legal notice.">xccdf_notice</a>;
<a name="l00239"></a>00239
<a name="l00244"></a>00244 <span class="keyword">struct </span><a class="code" href="structxccdf__status.html" title="XCCDF item status.">xccdf_status</a>;
<a name="l00245"></a>00245
<a name="l00250"></a>00250 <span class="keyword">struct </span><a class="code" href="structxccdf__model.html" title="XCCDF scoring model.">xccdf_model</a>;
<a name="l00251"></a>00251
<a name="l00256"></a>00256 <span class="keyword">struct </span><a class="code" href="structxccdf__warning.html" title="XCCDF warning.">xccdf_warning</a>;
<a name="l00257"></a>00257
<a name="l00262"></a>00262 <span class="keyword">struct </span><a class="code" href="structxccdf__select.html" title="XCCDF select option usen in the profile.">xccdf_select</a>;
<a name="l00263"></a>00263
<a name="l00268"></a>00268 <span class="keyword">struct </span><a class="code" href="structxccdf__setvalue.html" title="XCCDF set value option used in the profile.">xccdf_setvalue</a>;
<a name="l00269"></a>00269
<a name="l00274"></a>00274 <span class="keyword">struct </span><a class="code" href="structxccdf__refine__value.html" title="XCCDF refine value option used in the profile.">xccdf_refine_value</a>;
<a name="l00275"></a>00275
<a name="l00280"></a>00280 <span class="keyword">struct </span><a class="code" href="structxccdf__refine__rule.html" title="XCCDF refine rule option used in the profile.">xccdf_refine_rule</a>;
<a name="l00281"></a>00281
<a name="l00286"></a>00286 <span class="keyword">struct </span><a class="code" href="structxccdf__ident.html" title="XCCDF rule ident URI.">xccdf_ident</a>;
<a name="l00287"></a>00287
<a name="l00292"></a>00292 <span class="keyword">struct </span><a class="code" href="structxccdf__check.html" title="XCCDF simple or complex check.">xccdf_check</a>;
<a name="l00297"></a>00297 <span class="keyword">struct </span><a class="code" href="structxccdf__check__content__ref.html" title="XCCDF check content reference.">xccdf_check_content_ref</a>;
<a name="l00298"></a>00298
<a name="l00303"></a>00303 <span class="keyword">struct </span><a class="code" href="structxccdf__profile__note.html" title="XCCDF note for given rule in context of given profile.">xccdf_profile_note</a>;
<a name="l00304"></a>00304
<a name="l00310"></a>00310 <span class="keyword">struct </span><a class="code" href="structxccdf__check__import.html" title="XCCDF check import.">xccdf_check_import</a>;
<a name="l00311"></a>00311
<a name="l00317"></a>00317 <span class="keyword">struct </span><a class="code" href="structxccdf__check__export.html" title="XCCDF check export.">xccdf_check_export</a>;
<a name="l00318"></a>00318
<a name="l00324"></a>00324 <span class="keyword">struct </span><a class="code" href="structxccdf__fix.html" title="XCCDF automatic fix.">xccdf_fix</a>;
<a name="l00325"></a>00325
<a name="l00331"></a>00331 <span class="keyword">struct </span><a class="code" href="structxccdf__fixtext.html" title="XCCDF textual fix instructions.">xccdf_fixtext</a>;
<a name="l00332"></a>00332
<a name="l00338"></a>00338 <span class="keyword">struct </span><a class="code" href="structxccdf__reference.html" title="XCCDF reference.">xccdf_reference</a>;
<a name="l00339"></a>00339
<a name="l00347"></a>00347 <span class="keyword">struct </span><a class="code" href="structxccdf__value__instance.html">xccdf_value_instance</a>;
<a name="l00348"></a>00348
<a name="l00354"></a>00354 <span class="keyword">struct </span><a class="code" href="structxccdf__identity.html" title="XCCDF identity.">xccdf_identity</a>;
<a name="l00355"></a>00355
<a name="l00361"></a>00361 <span class="keyword">struct </span><a class="code" href="structxccdf__instance.html" title="XCCDF instance.">xccdf_instance</a>;
<a name="l00362"></a>00362
<a name="l00368"></a>00368 <span class="keyword">struct </span><a class="code" href="structxccdf__message.html" title="XCCDF message.">xccdf_message</a>;
<a name="l00369"></a>00369
<a name="l00375"></a>00375 <span class="keyword">struct </span><a class="code" href="structxccdf__override.html" title="XCCDF override.">xccdf_override</a>;
<a name="l00376"></a>00376
<a name="l00382"></a>00382 <span class="keyword">struct </span><a class="code" href="structxccdf__rule__result.html" title="XCCDF rule result.">xccdf_rule_result</a>;
<a name="l00383"></a>00383
<a name="l00389"></a>00389 <span class="keyword">struct </span><a class="code" href="structxccdf__score.html" title="XCCDF score.">xccdf_score</a>;
<a name="l00390"></a>00390
<a name="l00396"></a>00396 <span class="keyword">struct </span><a class="code" href="structxccdf__target__fact.html" title="XCCDF target fact.">xccdf_target_fact</a>;
<a name="l00397"></a>00397
<a name="l00403"></a><a class="code" href="structxccdf__item__iterator.html">00403</a> <span class="keyword">struct </span><a class="code" href="structxccdf__plain__text.html" title="XCCDF target fact.">xccdf_plain_text</a>;
<a name="l00404"></a>00404
<a name="l00410"></a><a class="code" href="structxccdf__notice__iterator.html">00410</a> <span class="keyword">struct </span><a class="code" href="structxccdf__item__iterator.html" title="String iterator.">xccdf_item_iterator</a>;
<a name="l00411"></a>00411
<a name="l00417"></a><a class="code" href="structxccdf__status__iterator.html">00417</a> <span class="keyword">struct </span><a class="code" href="structxccdf__notice__iterator.html" title="Notice iterator.">xccdf_notice_iterator</a>;
<a name="l00418"></a>00418
<a name="l00424"></a><a class="code" href="structxccdf__reference__iterator.html">00424</a> <span class="keyword">struct </span><a class="code" href="structxccdf__status__iterator.html" title="Status iterator.">xccdf_status_iterator</a>;
<a name="l00425"></a>00425
<a name="l00431"></a><a class="code" href="structxccdf__identity__iterator.html">00431</a> <span class="keyword">struct </span><a class="code" href="structxccdf__reference__iterator.html" title="Reference iterator.">xccdf_reference_iterator</a>;
<a name="l00432"></a>00432
<a name="l00438"></a><a class="code" href="structxccdf__model__iterator.html">00438</a> <span class="keyword">struct </span><a class="code" href="structxccdf__identity__iterator.html" title="Reference iterator.">xccdf_identity_iterator</a>;
<a name="l00439"></a>00439
<a name="l00445"></a><a class="code" href="structxccdf__result__iterator.html">00445</a> <span class="keyword">struct </span><a class="code" href="structxccdf__model__iterator.html" title="Model iterator.">xccdf_model_iterator</a>;
<a name="l00446"></a>00446
<a name="l00452"></a><a class="code" href="structxccdf__profile__iterator.html">00452</a> <span class="keyword">struct </span><a class="code" href="structxccdf__result__iterator.html" title="Result iterator.">xccdf_result_iterator</a>;
<a name="l00453"></a>00453
<a name="l00459"></a><a class="code" href="structxccdf__select__iterator.html">00459</a> <span class="keyword">struct </span><a class="code" href="structxccdf__profile__iterator.html" title="Profile iterator.">xccdf_profile_iterator</a>;
<a name="l00460"></a>00460
<a name="l00466"></a><a class="code" href="structxccdf__value__iterator.html">00466</a> <span class="keyword">struct </span><a class="code" href="structxccdf__select__iterator.html" title="Select iterator.">xccdf_select_iterator</a>;
<a name="l00467"></a>00467
<a name="l00473"></a><a class="code" href="structxccdf__setvalue__iterator.html">00473</a> <span class="keyword">struct </span><a class="code" href="structxccdf__value__iterator.html" title="Select iterator.">xccdf_value_iterator</a>;
<a name="l00474"></a>00474
<a name="l00480"></a><a class="code" href="structxccdf__refine__value__iterator.html">00480</a> <span class="keyword">struct </span><a class="code" href="structxccdf__setvalue__iterator.html" title="Set value iterator.">xccdf_setvalue_iterator</a>;
<a name="l00481"></a>00481
<a name="l00486"></a><a class="code" href="structxccdf__refine__rule__iterator.html">00486</a> <span class="keyword">struct </span><a class="code" href="structxccdf__refine__value__iterator.html" title="Refine value iterator.">xccdf_refine_value_iterator</a>;
<a name="l00487"></a>00487
<a name="l00493"></a><a class="code" href="structxccdf__ident__iterator.html">00493</a> <span class="keyword">struct </span><a class="code" href="structxccdf__refine__rule__iterator.html" title="Refine rule iterator.">xccdf_refine_rule_iterator</a>;
<a name="l00494"></a>00494
<a name="l00500"></a><a class="code" href="structxccdf__check__iterator.html">00500</a> <span class="keyword">struct </span><a class="code" href="structxccdf__ident__iterator.html" title="Ident iterator.">xccdf_ident_iterator</a>;
<a name="l00501"></a>00501
<a name="l00507"></a><a class="code" href="structxccdf__profile__note__iterator.html">00507</a> <span class="keyword">struct </span><a class="code" href="structxccdf__check__iterator.html" title="Check iterator.">xccdf_check_iterator</a>;
<a name="l00508"></a>00508
<a name="l00514"></a><a class="code" href="structxccdf__fixtext__iterator.html">00514</a> <span class="keyword">struct </span><a class="code" href="structxccdf__profile__note__iterator.html" title="Profile note iterator.">xccdf_profile_note_iterator</a>;
<a name="l00515"></a>00515
<a name="l00521"></a><a class="code" href="structxccdf__check__content__ref__iterator.html">00521</a> <span class="keyword">struct </span><a class="code" href="structxccdf__fixtext__iterator.html" title="Textual fix iterator.">xccdf_fixtext_iterator</a>;
<a name="l00522"></a>00522
<a name="l00528"></a><a class="code" href="structxccdf__check__import__iterator.html">00528</a> <span class="keyword">struct </span><a class="code" href="structxccdf__check__content__ref__iterator.html" title="Check content references iterator.">xccdf_check_content_ref_iterator</a>;
<a name="l00529"></a>00529
<a name="l00535"></a><a class="code" href="structxccdf__fix__iterator.html">00535</a> <span class="keyword">struct </span><a class="code" href="structxccdf__check__import__iterator.html" title="Check import iterator.">xccdf_check_import_iterator</a>;
<a name="l00536"></a>00536
<a name="l00542"></a><a class="code" href="structxccdf__check__export__iterator.html">00542</a> <span class="keyword">struct </span><a class="code" href="structxccdf__fix__iterator.html" title="Fix iterator.">xccdf_fix_iterator</a>;
<a name="l00543"></a>00543
<a name="l00549"></a><a class="code" href="structxccdf__warning__iterator.html">00549</a> <span class="keyword">struct </span><a class="code" href="structxccdf__check__export__iterator.html" title="Check export iterator.">xccdf_check_export_iterator</a>;
<a name="l00550"></a>00550
<a name="l00556"></a><a class="code" href="structxccdf__instance__iterator.html">00556</a> <span class="keyword">struct </span><a class="code" href="structxccdf__warning__iterator.html" title="Warning iterator.">xccdf_warning_iterator</a>;
<a name="l00557"></a>00557
<a name="l00563"></a><a class="code" href="structxccdf__message__iterator.html">00563</a> <span class="keyword">struct </span><a class="code" href="structxccdf__instance__iterator.html" title="Instance iterator.">xccdf_instance_iterator</a>;
<a name="l00564"></a>00564
<a name="l00570"></a><a class="code" href="structxccdf__override__iterator.html">00570</a> <span class="keyword">struct </span><a class="code" href="structxccdf__message__iterator.html" title="Message iterator.">xccdf_message_iterator</a>;
<a name="l00571"></a>00571
<a name="l00577"></a><a class="code" href="structxccdf__rule__result__iterator.html">00577</a> <span class="keyword">struct </span><a class="code" href="structxccdf__override__iterator.html" title="Override iterator.">xccdf_override_iterator</a>;
<a name="l00578"></a>00578
<a name="l00584"></a><a class="code" href="structxccdf__value__instance__iterator.html">00584</a> <span class="keyword">struct </span><a class="code" href="structxccdf__rule__result__iterator.html" title="Override iterator.">xccdf_rule_result_iterator</a>;
<a name="l00585"></a>00585
<a name="l00591"></a><a class="code" href="structxccdf__score__iterator.html">00591</a> <span class="keyword">struct </span><a class="code" href="structxccdf__value__instance__iterator.html" title="Value instance iterator.">xccdf_value_instance_iterator</a>;
<a name="l00592"></a>00592
<a name="l00598"></a><a class="code" href="structxccdf__target__fact__iterator.html">00598</a> <span class="keyword">struct </span><a class="code" href="structxccdf__score__iterator.html" title="Override iterator.">xccdf_score_iterator</a>;
<a name="l00599"></a>00599
<a name="l00605"></a><a class="code" href="structxccdf__plain__text__iterator.html">00605</a> <span class="keyword">struct </span><a class="code" href="structxccdf__target__fact__iterator.html" title="Override iterator.">xccdf_target_fact_iterator</a>;
<a name="l00606"></a>00606
<a name="l00612"></a>00612 <span class="keyword">struct </span><a class="code" href="structxccdf__plain__text__iterator.html" title="Plain text iterator.">xccdf_plain_text_iterator</a>;
<a name="l00613"></a>00613
<a name="l00614"></a>00614 <span class="comment">/************************************************************/</span>
<a name="l00615"></a>00615
<a name="l00617"></a>00617 <span class="keywordtype">void</span> <a class="code" href="group__XCCDF.html#gade5fdd83920aff929bd29f338e8c8549">xccdf_item_free</a>(<span class="keyword">struct</span> <a class="code" href="structxccdf__item.html" title="A base class for XCCDF items.">xccdf_item</a> *item);
<a name="l00618"></a>00618
<a name="l00620"></a>00620 <span class="keyword">struct </span><a class="code" href="structxccdf__item.html" title="A base class for XCCDF items.">xccdf_item</a> * <a class="code" href="group__XCCDF.html#ga81c2ee40fc23c73b0ac1ca118e4130ca">xccdf_item_clone</a>(<span class="keyword">const</span> <span class="keyword">struct</span> <a class="code" href="structxccdf__item.html" title="A base class for XCCDF items.">xccdf_item</a> * old_item);
<a name="l00621"></a>00621
<a name="l00628"></a>00628 <span class="keyword">struct </span><a class="code" href="structxccdf__benchmark.html" title="Top level XCCDF structure containing profiles, rules, values and results.">xccdf_benchmark</a>* <a class="code" href="group__XCCDF.html#gabb8cd5cb505ba695bfd7acff400b5bc2" title="Convert the item to a benchmark.">xccdf_item_to_benchmark</a>(<span class="keyword">struct</span> <a class="code" href="structxccdf__item.html" title="A base class for XCCDF items.">xccdf_item</a>* item);
<a name="l00629"></a>00629
<a name="l00636"></a>00636 <span class="keyword">struct </span><a class="code" href="structxccdf__profile.html" title="XCCDF profile is a set of tests and their settings in a compact package.">xccdf_profile</a>* <a class="code" href="group__XCCDF.html#gaaf6d05d4ec9f3b06aae0fba81a6db3f5" title="Convert the item to a profile.">xccdf_item_to_profile</a>(<span class="keyword">struct</span> <a class="code" href="structxccdf__item.html" title="A base class for XCCDF items.">xccdf_item</a>* item);
<a name="l00637"></a>00637
<a name="l00644"></a>00644 <span class="keyword">struct </span><a class="code" href="structxccdf__rule.html" title="XCCDF rule defines a test execution.">xccdf_rule</a>* <a class="code" href="group__XCCDF.html#ga678afb2bfa7aaf0d70550786d9fac2f0" title="Convert the item to a rule.">xccdf_item_to_rule</a>(<span class="keyword">struct</span> <a class="code" href="structxccdf__item.html" title="A base class for XCCDF items.">xccdf_item</a>* item);
<a name="l00645"></a>00645
<a name="l00652"></a>00652 <span class="keyword">struct </span><a class="code" href="structxccdf__group.html" title="XCCDF rule group.">xccdf_group</a>* <a class="code" href="group__XCCDF.html#ga1081781c7d2f1c143837a6830e301df1" title="Convert the item to a group.">xccdf_item_to_group</a>(<span class="keyword">struct</span> <a class="code" href="structxccdf__item.html" title="A base class for XCCDF items.">xccdf_item</a>* item);
<a name="l00653"></a>00653
<a name="l00660"></a>00660 <span class="keyword">struct </span><a class="code" href="structxccdf__value.html" title="XCCDF Value allows test parametrization or capturing output of tests.">xccdf_value</a>* <a class="code" href="group__XCCDF.html#ga0112c34d94dfcb6a51bc3cfd71de02f3" title="Convert the item to a value.">xccdf_item_to_value</a>(<span class="keyword">struct</span> <a class="code" href="structxccdf__item.html" title="A base class for XCCDF items.">xccdf_item</a>* item);
<a name="l00661"></a>00661
<a name="l00668"></a>00668 <span class="keyword">struct </span><a class="code" href="structxccdf__result.html" title="Actual results of running a XCCDF test or profile.">xccdf_result</a>* <a class="code" href="group__XCCDF.html#ga08d6dc4cf86680c9efced168687348e6" title="Convert the item to a test result.">xccdf_item_to_result</a>(<span class="keyword">struct</span> <a class="code" href="structxccdf__item.html" title="A base class for XCCDF items.">xccdf_item</a>* item);
<a name="l00669"></a>00669
<a name="l00677"></a>00677 <span class="keyword">struct </span><a class="code" href="structxccdf__benchmark.html" title="Top level XCCDF structure containing profiles, rules, values and results.">xccdf_benchmark</a>* <a class="code" href="group__XCCDF.html#gad71cc690fef5bceb9aa98bed119288f0" title="Import the content from a specified XML stream into a benchmark.">xccdf_benchmark_import</a>(<span class="keyword">const</span> <span class="keywordtype">char</span> *file);
<a name="l00678"></a>00678
<a name="l00685"></a>00685 <span class="keywordtype">int</span> <a class="code" href="group__XCCDF.html#gaba556840f22fd02429b4c1917ab9ca51" title="Export a benchmark to an XML stream.">xccdf_benchmark_export</a>(<span class="keyword">struct</span> <a class="code" href="structxccdf__benchmark.html" title="Top level XCCDF structure containing profiles, rules, values and results.">xccdf_benchmark</a> *benchmark, <span class="keyword">const</span> <span class="keywordtype">char</span> *file);
<a name="l00686"></a>00686
<a name="l00693"></a>00693 <span class="keywordtype">int</span> <a class="code" href="group__XCCDF.html#ga4420abf94048055cf552ab083e2e3365" title="Export a TestResult to an XML stream.">xccdf_result_export</a>(<span class="keyword">struct</span> <a class="code" href="structxccdf__result.html" title="Actual results of running a XCCDF test or profile.">xccdf_result</a> *result, <span class="keyword">const</span> <span class="keywordtype">char</span> *file);
<a name="l00694"></a>00694
<a name="l00701"></a>00701 <span class="keywordtype">bool</span> <a class="code" href="group__XCCDF.html#ga649a2d51fff5dd0eeb97e1940b62687a" title="Resolve an benchmark.">xccdf_benchmark_resolve</a>(<span class="keyword">struct</span> <a class="code" href="structxccdf__benchmark.html" title="Top level XCCDF structure containing profiles, rules, values and results.">xccdf_benchmark</a> *benchmark);
<a name="l00702"></a>00702
<a name="l00704"></a>00704 <span class="keyword">struct </span><a class="code" href="structxccdf__benchmark.html" title="Top level XCCDF structure containing profiles, rules, values and results.">xccdf_benchmark</a> *<a class="code" href="group__XCCDF.html#gab4f6456bb76e29e6888ac09966097434">xccdf_benchmark_new</a>(<span class="keywordtype">void</span>);
<a name="l00706"></a>00706 <span class="keywordtype">void</span> <a class="code" href="group__XCCDF.html#ga35e666e154a6a2f915dfe433c14fd74f">xccdf_benchmark_free</a>(<span class="keyword">struct</span> <a class="code" href="structxccdf__benchmark.html" title="Top level XCCDF structure containing profiles, rules, values and results.">xccdf_benchmark</a> *benchmark);
<a name="l00708"></a>00708 <span class="keyword">struct </span><a class="code" href="structxccdf__item.html" title="A base class for XCCDF items.">xccdf_item</a> *<a class="code" href="group__XCCDF.html#ga9bb0dd7fe7db2a344e2f8366d9ce09c0">xccdf_benchmark_to_item</a>(<span class="keyword">struct</span> <a class="code" href="structxccdf__benchmark.html" title="Top level XCCDF structure containing profiles, rules, values and results.">xccdf_benchmark</a> *item);
<a name="l00710"></a>00710 <span class="keyword">struct </span><a class="code" href="structxccdf__benchmark.html" title="Top level XCCDF structure containing profiles, rules, values and results.">xccdf_benchmark</a> * <a class="code" href="group__XCCDF.html#ga1a53f6a00ab20389c6d3e3f3ed0a03bd">xccdf_benchmark_clone</a>( <span class="keyword">const</span> <span class="keyword">struct</span> <a class="code" href="structxccdf__benchmark.html" title="Top level XCCDF structure containing profiles, rules, values and results.">xccdf_benchmark</a> * benchmark );
<a name="l00711"></a>00711
<a name="l00717"></a>00717 <span class="keyword">const</span> <span class="keywordtype">char</span> * <a class="code" href="group__XCCDF.html#ga68b6b580c44dbe362fb7458449480a9c" title="Get supported version of XCCDF XML.">xccdf_benchmark_supported</a>(<span class="keywordtype">void</span>);
<a name="l00718"></a>00718
<a name="l00720"></a>00720 <span class="keyword">struct </span><a class="code" href="structxccdf__profile.html" title="XCCDF profile is a set of tests and their settings in a compact package.">xccdf_profile</a> *<a class="code" href="group__XCCDF.html#ga3c9f09e1008efd652f72a1354dcfd661">xccdf_profile_new</a>(<span class="keywordtype">void</span>);
<a name="l00722"></a>00722 <span class="keywordtype">void</span> <a class="code" href="group__XCCDF.html#ga4164fb1949fdb13465683d4d5e51895f">xccdf_profile_free</a>(<span class="keyword">struct</span> <a class="code" href="structxccdf__item.html" title="A base class for XCCDF items.">xccdf_item</a> *prof);
<a name="l00724"></a>00724 <span class="keyword">struct </span><a class="code" href="structxccdf__item.html" title="A base class for XCCDF items.">xccdf_item</a> *<a class="code" href="group__XCCDF.html#ga14cf290a88c10affa4767e721a8bbf51">xccdf_profile_to_item</a>(<span class="keyword">struct</span> <a class="code" href="structxccdf__profile.html" title="XCCDF profile is a set of tests and their settings in a compact package.">xccdf_profile</a> *item);
<a name="l00726"></a>00726 <span class="keyword">struct </span><a class="code" href="structxccdf__profile.html" title="XCCDF profile is a set of tests and their settings in a compact package.">xccdf_profile</a> * <a class="code" href="group__XCCDF.html#ga1d439f846bb00093fff4a8b75247ac65">xccdf_profile_clone</a>( <span class="keyword">const</span> <span class="keyword">struct</span> <a class="code" href="structxccdf__profile.html" title="XCCDF profile is a set of tests and their settings in a compact package.">xccdf_profile</a> * profile);
<a name="l00727"></a>00727
<a name="l00729"></a>00729 <span class="keyword">struct </span><a class="code" href="structxccdf__rule.html" title="XCCDF rule defines a test execution.">xccdf_rule</a> *<a class="code" href="group__XCCDF.html#gaacee1f7faddadfe68306877e482ef39b">xccdf_rule_new</a>(<span class="keywordtype">void</span>);
<a name="l00731"></a>00731 <span class="keywordtype">void</span> <a class="code" href="group__XCCDF.html#ga7a936f42cac70f595a28caa4a5abab6d">xccdf_rule_free</a>(<span class="keyword">struct</span> <a class="code" href="structxccdf__item.html" title="A base class for XCCDF items.">xccdf_item</a> *rule);
<a name="l00733"></a>00733 <span class="keyword">struct </span><a class="code" href="structxccdf__item.html" title="A base class for XCCDF items.">xccdf_item</a> *<a class="code" href="group__XCCDF.html#ga3f267dbc16bf812244d7b7ab7f00abfa">xccdf_rule_to_item</a>(<span class="keyword">struct</span> <a class="code" href="structxccdf__rule.html" title="XCCDF rule defines a test execution.">xccdf_rule</a> *item);
<a name="l00735"></a>00735 <span class="keyword">struct </span><a class="code" href="structxccdf__rule.html" title="XCCDF rule defines a test execution.">xccdf_rule</a> * <a class="code" href="group__XCCDF.html#gafb3c2711df5a17016e63791d18bbae0b">xccdf_rule_clone</a>(<span class="keyword">const</span> <span class="keyword">struct</span> <a class="code" href="structxccdf__rule.html" title="XCCDF rule defines a test execution.">xccdf_rule</a> * rule);
<a name="l00736"></a>00736
<a name="l00738"></a>00738 <span class="keyword">struct </span><a class="code" href="structxccdf__group.html" title="XCCDF rule group.">xccdf_group</a> *<a class="code" href="group__XCCDF.html#gaf4d51d84ab7cb0ca88b7e475774eb07c">xccdf_group_new</a>(<span class="keywordtype">void</span>);
<a name="l00740"></a>00740 <span class="keywordtype">void</span> <a class="code" href="group__XCCDF.html#gaa7bf36f3b5fd2ea3d43ba245ca5d6a8d">xccdf_group_free</a>(<span class="keyword">struct</span> <a class="code" href="structxccdf__item.html" title="A base class for XCCDF items.">xccdf_item</a> *group);
<a name="l00742"></a>00742 <span class="keyword">struct </span><a class="code" href="structxccdf__item.html" title="A base class for XCCDF items.">xccdf_item</a> *<a class="code" href="group__XCCDF.html#ga33410ba9dd0b4768b5259e41d577a01b">xccdf_group_to_item</a>(<span class="keyword">struct</span> <a class="code" href="structxccdf__group.html" title="XCCDF rule group.">xccdf_group</a> *item);
<a name="l00744"></a>00744 <span class="keyword">struct </span><a class="code" href="structxccdf__group.html" title="XCCDF rule group.">xccdf_group</a> * <a class="code" href="group__XCCDF.html#ga1ed30632ea63dc2d7e8604a8e908ab19">xccdf_group_clone</a>(<span class="keyword">const</span> <span class="keyword">struct</span> <a class="code" href="structxccdf__group.html" title="XCCDF rule group.">xccdf_group</a> * group);
<a name="l00745"></a>00745
<a name="l00747"></a>00747 <span class="keyword">struct </span><a class="code" href="structxccdf__value.html" title="XCCDF Value allows test parametrization or capturing output of tests.">xccdf_value</a> *<a class="code" href="group__XCCDF.html#ga2630fe70bcccf78dce68efc8eeb81698">xccdf_value_new</a>(<a class="code" href="group__XCCDF.html#gaa2d75ea6d3cd6957100f532b2ab8e8a8" title="Type of an xccdf_value.">xccdf_value_type_t</a> type);
<a name="l00749"></a>00749 <span class="keywordtype">void</span> <a class="code" href="group__XCCDF.html#gaaa4a35976061da709d0e5962d2e4ae9a">xccdf_value_free</a>(<span class="keyword">struct</span> <a class="code" href="structxccdf__item.html" title="A base class for XCCDF items.">xccdf_item</a> *val);
<a name="l00751"></a>00751 <span class="keyword">struct </span><a class="code" href="structxccdf__item.html" title="A base class for XCCDF items.">xccdf_item</a> *<a class="code" href="group__XCCDF.html#gaec1fafd17239b9b67cf17f03eb7297b4">xccdf_value_to_item</a>(<span class="keyword">struct</span> <a class="code" href="structxccdf__value.html" title="XCCDF Value allows test parametrization or capturing output of tests.">xccdf_value</a> *item);
<a name="l00753"></a>00753 <span class="keyword">struct </span><a class="code" href="structxccdf__value.html" title="XCCDF Value allows test parametrization or capturing output of tests.">xccdf_value</a> * <a class="code" href="group__XCCDF.html#ga0a1d4ebb0c533be84bc4d1d52abaf882">xccdf_value_clone</a>(<span class="keyword">const</span> <span class="keyword">struct</span> <a class="code" href="structxccdf__value.html" title="XCCDF Value allows test parametrization or capturing output of tests.">xccdf_value</a> * value);
<a name="l00754"></a>00754
<a name="l00756"></a>00756 <span class="keyword">struct </span><a class="code" href="structxccdf__status.html" title="XCCDF item status.">xccdf_status</a> *<a class="code" href="group__XCCDF.html#ga9d30d9c2d6369e56a6ea9e0c98e80039">xccdf_status_new</a>(<span class="keywordtype">void</span>);
<a name="l00758"></a>00758 <span class="keyword">struct </span><a class="code" href="structxccdf__status.html" title="XCCDF item status.">xccdf_status</a> * <a class="code" href="group__XCCDF.html#gaba3cea542364c34b740d0ca897938af2">xccdf_status_clone</a>(<span class="keyword">const</span> <span class="keyword">struct</span> <a class="code" href="structxccdf__status.html" title="XCCDF item status.">xccdf_status</a> * old_status);
<a name="l00760"></a>00760 <span class="keyword">struct </span><a class="code" href="structxccdf__status.html" title="XCCDF item status.">xccdf_status</a> *<a class="code" href="group__XCCDF.html#ga1e7507b829cdd9519668d7a4b9946a3b" title="xccdf_status">xccdf_status_new_fill</a>(<span class="keyword">const</span> <span class="keywordtype">char</span> *status, <span class="keyword">const</span> <span class="keywordtype">char</span> *date);
<a name="l00762"></a>00762 <span class="keywordtype">void</span> <a class="code" href="group__XCCDF.html#gaa2041842cff4296d4849b9f9372c924c">xccdf_status_free</a>(<span class="keyword">struct</span> <a class="code" href="structxccdf__status.html" title="XCCDF item status.">xccdf_status</a> *status);
<a name="l00764"></a>00764 <span class="keyword">struct </span><a class="code" href="structxccdf__notice.html" title="XCCDF benchmark legal notice.">xccdf_notice</a> *<a class="code" href="group__XCCDF.html#ga5afe1645ad63f71dfc49fe6a112b25a4">xccdf_notice_new</a>(<span class="keywordtype">void</span>);
<a name="l00766"></a>00766 <span class="keywordtype">void</span> <a class="code" href="group__XCCDF.html#ga25ddb428643077dfa43fa0dfa8601e6e">xccdf_notice_free</a>(<span class="keyword">struct</span> <a class="code" href="structxccdf__notice.html" title="XCCDF benchmark legal notice.">xccdf_notice</a> *notice);
<a name="l00768"></a>00768 <span class="keyword">struct </span><a class="code" href="structxccdf__notice.html" title="XCCDF benchmark legal notice.">xccdf_notice</a> * <a class="code" href="group__XCCDF.html#ga685d804d3e19e394e51fc848a9e3123d">xccdf_notice_clone</a>(<span class="keyword">const</span> <span class="keyword">struct</span> <a class="code" href="structxccdf__notice.html" title="XCCDF benchmark legal notice.">xccdf_notice</a> * notice);
<a name="l00769"></a>00769
<a name="l00771"></a>00771 <span class="keyword">struct </span><a class="code" href="structxccdf__model.html" title="XCCDF scoring model.">xccdf_model</a> *<a class="code" href="group__XCCDF.html#ga3d4e3bd1653fb3c304cd22c4dd5aee21">xccdf_model_new</a>(<span class="keywordtype">void</span>);
<a name="l00773"></a>00773 <span class="keyword">struct </span><a class="code" href="structxccdf__model.html" title="XCCDF scoring model.">xccdf_model</a> * <a class="code" href="group__XCCDF.html#ga32512d70299af35dcc4e5aa90bb2576f">xccdf_model_clone</a>(<span class="keyword">const</span> <span class="keyword">struct</span> <a class="code" href="structxccdf__model.html" title="XCCDF scoring model.">xccdf_model</a> * old_model);
<a name="l00775"></a>00775 <span class="keywordtype">void</span> <a class="code" href="group__XCCDF.html#ga475fc20193714592641644266545c5dc">xccdf_model_free</a>(<span class="keyword">struct</span> <a class="code" href="structxccdf__model.html" title="XCCDF scoring model.">xccdf_model</a> *model);
<a name="l00776"></a>00776
<a name="l00778"></a>00778 <span class="keyword">struct </span><a class="code" href="structxccdf__ident.html" title="XCCDF rule ident URI.">xccdf_ident</a> *<a class="code" href="group__XCCDF.html#ga525201a5505fc94bd1768a79bea9d6c7">xccdf_ident_new</a>(<span class="keywordtype">void</span>);
<a name="l00780"></a>00780 <span class="keyword">struct </span><a class="code" href="structxccdf__ident.html" title="XCCDF rule ident URI.">xccdf_ident</a> *<a class="code" href="group__XCCDF.html#ga5ca92aa08cca9cd3fe229a447050dd13">xccdf_ident_new_fill</a>(<span class="keyword">const</span> <span class="keywordtype">char</span> *<span class="keywordtype">id</span>, <span class="keyword">const</span> <span class="keywordtype">char</span> *sys);
<a name="l00782"></a>00782 <span class="keyword">struct </span><a class="code" href="structxccdf__ident.html" title="XCCDF rule ident URI.">xccdf_ident</a> *<a class="code" href="group__XCCDF.html#gad3624140e879b6dd2b1806bfd08811c6">xccdf_ident_clone</a>(<span class="keyword">const</span> <span class="keyword">struct</span> <a class="code" href="structxccdf__ident.html" title="XCCDF rule ident URI.">xccdf_ident</a> * ident);
<a name="l00784"></a>00784 <span class="keywordtype">void</span> <a class="code" href="group__XCCDF.html#gac4ced021312d2c227df5bae0efaf36c6">xccdf_ident_free</a>(<span class="keyword">struct</span> <a class="code" href="structxccdf__ident.html" title="XCCDF rule ident URI.">xccdf_ident</a> *ident);
<a name="l00785"></a>00785
<a name="l00786"></a>00786
<a name="l00788"></a>00788 <span class="keyword">struct </span><a class="code" href="structxccdf__check.html" title="XCCDF simple or complex check.">xccdf_check</a> *<a class="code" href="group__XCCDF.html#ga2d88b3acf926a6ea75f325e151d11d01">xccdf_check_new</a>(<span class="keywordtype">void</span>);
<a name="l00790"></a>00790 <span class="keywordtype">void</span> <a class="code" href="group__XCCDF.html#gada1001d17f33dce74069f30d9825b747">xccdf_check_free</a>(<span class="keyword">struct</span> <a class="code" href="structxccdf__check.html" title="XCCDF simple or complex check.">xccdf_check</a> *check);
<a name="l00791"></a>00791
<a name="l00793"></a>00793 <span class="keyword">struct </span><a class="code" href="structxccdf__check.html" title="XCCDF simple or complex check.">xccdf_check</a> *<a class="code" href="group__XCCDF.html#ga194e6c042b748ab3d5e69a78c9b4e308">xccdf_check_clone</a>(<span class="keyword">const</span> <span class="keyword">struct</span> <a class="code" href="structxccdf__check.html" title="XCCDF simple or complex check.">xccdf_check</a> *old_check);
<a name="l00795"></a>00795 <span class="keyword">struct </span><a class="code" href="structxccdf__check__import.html" title="XCCDF check import.">xccdf_check_import</a> *<a class="code" href="group__XCCDF.html#gac97a6076e7fc91f5ddc727aca4dc0003">xccdf_check_import_clone</a>(<span class="keyword">const</span> <span class="keyword">struct</span> <a class="code" href="structxccdf__check__import.html" title="XCCDF check import.">xccdf_check_import</a> *old_import);
<a name="l00797"></a>00797 <span class="keyword">struct </span><a class="code" href="structxccdf__check__export.html" title="XCCDF check export.">xccdf_check_export</a> *<a class="code" href="group__XCCDF.html#ga0903e9d14c8fbed9e419c815404e140a">xccdf_check_export_clone</a>(<span class="keyword">const</span> <span class="keyword">struct</span> <a class="code" href="structxccdf__check__export.html" title="XCCDF check export.">xccdf_check_export</a> *old_export);
<a name="l00799"></a>00799 <span class="keyword">struct </span><a class="code" href="structxccdf__check__content__ref.html" title="XCCDF check content reference.">xccdf_check_content_ref</a> *<a class="code" href="group__XCCDF.html#ga18dbc22d0095a071f3b62d3e6cc42693">xccdf_check_content_ref_clone</a>(<span class="keyword">const</span> <span class="keyword">struct</span> <a class="code" href="structxccdf__check__content__ref.html" title="XCCDF check content reference.">xccdf_check_content_ref</a> *old_ref);
<a name="l00800"></a>00800
<a name="l00802"></a>00802 <span class="keyword">struct </span><a class="code" href="structxccdf__check__content__ref.html" title="XCCDF check content reference.">xccdf_check_content_ref</a> *<a class="code" href="group__XCCDF.html#ga8f17f1d2278fe9a492784f6492a9f5b8">xccdf_check_content_ref_new</a>(<span class="keywordtype">void</span>);
<a name="l00804"></a>00804 <span class="keywordtype">void</span> <a class="code" href="group__XCCDF.html#ga37b7cb45ce983d1b8ab2980e625ef127">xccdf_check_content_ref_free</a>(<span class="keyword">struct</span> <a class="code" href="structxccdf__check__content__ref.html" title="XCCDF check content reference.">xccdf_check_content_ref</a> *ref);
<a name="l00805"></a>00805
<a name="l00807"></a>00807 <span class="keyword">struct </span><a class="code" href="structxccdf__profile__note.html" title="XCCDF note for given rule in context of given profile.">xccdf_profile_note</a> *<a class="code" href="group__XCCDF.html#ga2a709db89e89e1a51ad40911ea72b9e8">xccdf_profile_note_new</a>(<span class="keywordtype">void</span>);
<a name="l00809"></a>00809 <span class="keywordtype">void</span> <a class="code" href="group__XCCDF.html#ga2735906bc0c0b7684685b033d5509e64">xccdf_profile_note_free</a>(<span class="keyword">struct</span> <a class="code" href="structxccdf__profile__note.html" title="XCCDF note for given rule in context of given profile.">xccdf_profile_note</a> *note);
<a name="l00810"></a>00810
<a name="l00812"></a>00812 <span class="keyword">struct </span><a class="code" href="structxccdf__check__import.html" title="XCCDF check import.">xccdf_check_import</a> *<a class="code" href="group__XCCDF.html#gae5a3c3bfe8eac0c70e585392917f3b2c">xccdf_check_import_new</a>(<span class="keywordtype">void</span>);
<a name="l00814"></a>00814 <span class="keywordtype">void</span> <a class="code" href="group__XCCDF.html#ga97ab091414241a533a2e97ab89813159">xccdf_check_import_free</a>(<span class="keyword">struct</span> <a class="code" href="structxccdf__check__import.html" title="XCCDF check import.">xccdf_check_import</a> *item);
<a name="l00815"></a>00815
<a name="l00817"></a>00817 <span class="keyword">struct </span><a class="code" href="structxccdf__check__export.html" title="XCCDF check export.">xccdf_check_export</a> *<a class="code" href="group__XCCDF.html#gae002c287649d547129064a4a6103c41f">xccdf_check_export_new</a>(<span class="keywordtype">void</span>);
<a name="l00819"></a>00819 <span class="keywordtype">void</span> <a class="code" href="group__XCCDF.html#ga0475d95a2f7ce85db5ff002fa11a6c5b">xccdf_check_export_free</a>(<span class="keyword">struct</span> <a class="code" href="structxccdf__check__export.html" title="XCCDF check export.">xccdf_check_export</a> *item);
<a name="l00820"></a>00820
<a name="l00822"></a>00822 <span class="keyword">struct </span><a class="code" href="structxccdf__fix.html" title="XCCDF automatic fix.">xccdf_fix</a> *<a class="code" href="group__XCCDF.html#ga279dc972ce6cf7707a3dc9e4b636017e">xccdf_fix_new</a>(<span class="keywordtype">void</span>);
<a name="l00824"></a>00824 <span class="keyword">struct </span><a class="code" href="structxccdf__fix.html" title="XCCDF automatic fix.">xccdf_fix</a> *<a class="code" href="group__XCCDF.html#ga2fd0e38024992e95cb7518207dd14531">xccdf_fix_clone</a>(<span class="keyword">const</span> <span class="keyword">struct</span> <a class="code" href="structxccdf__fix.html" title="XCCDF automatic fix.">xccdf_fix</a> *old_fix);
<a name="l00826"></a>00826 <span class="keywordtype">void</span> <a class="code" href="group__XCCDF.html#gacc2ebf30b1df61cd253df43ac72bebb8">xccdf_fix_free</a>(<span class="keyword">struct</span> <a class="code" href="structxccdf__fix.html" title="XCCDF automatic fix.">xccdf_fix</a> *item);
<a name="l00827"></a>00827
<a name="l00829"></a>00829 <span class="keyword">struct </span><a class="code" href="structxccdf__fixtext.html" title="XCCDF textual fix instructions.">xccdf_fixtext</a> *<a class="code" href="group__XCCDF.html#ga8f104d6e721ac1956e62aa2a4dbfdcfd">xccdf_fixtext_new</a>(<span class="keywordtype">void</span>);
<a name="l00831"></a>00831 <span class="keyword">struct </span><a class="code" href="structxccdf__fixtext.html" title="XCCDF textual fix instructions.">xccdf_fixtext</a> * <a class="code" href="group__XCCDF.html#gae27b0b617f711d35f8e8bbc78e533094">xccdf_fixtext_clone</a>(<span class="keyword">const</span> <span class="keyword">struct</span> <a class="code" href="structxccdf__fixtext.html" title="XCCDF textual fix instructions.">xccdf_fixtext</a> * fixtext);
<a name="l00833"></a>00833 <span class="keywordtype">void</span> <a class="code" href="group__XCCDF.html#gad5cf20c8b70f53293c80e9a588a12858">xccdf_fixtext_free</a>(<span class="keyword">struct</span> <a class="code" href="structxccdf__fixtext.html" title="XCCDF textual fix instructions.">xccdf_fixtext</a> *item);
<a name="l00834"></a>00834
<a name="l00836"></a>00836 <span class="keywordtype">void</span> <a class="code" href="group__XCCDF.html#gaa8284199fb45059813ceb85ed71a0459">xccdf_select_free</a>(<span class="keyword">struct</span> <a class="code" href="structxccdf__select.html" title="XCCDF select option usen in the profile.">xccdf_select</a> *sel);
<a name="l00838"></a>00838 <span class="keyword">struct </span><a class="code" href="structxccdf__select.html" title="XCCDF select option usen in the profile.">xccdf_select</a> *<a class="code" href="group__XCCDF.html#gaeaa826b07dfb7a75c5f612b4f7931d12">xccdf_select_clone</a>(<span class="keyword">const</span> <span class="keyword">struct</span> <a class="code" href="structxccdf__select.html" title="XCCDF select option usen in the profile.">xccdf_select</a> * select);
<a name="l00840"></a>00840 <span class="keyword">struct </span><a class="code" href="structxccdf__select.html" title="XCCDF select option usen in the profile.">xccdf_select</a> *<a class="code" href="group__XCCDF.html#ga68ab3377aecffd819f53ee3eb7071ecb">xccdf_select_new</a>(<span class="keywordtype">void</span>);
<a name="l00841"></a>00841
<a name="l00843"></a>00843 <span class="keyword">struct </span><a class="code" href="structxccdf__warning.html" title="XCCDF warning.">xccdf_warning</a> *<a class="code" href="group__XCCDF.html#ga3e10d11854827680614f7b677ce41a3e">xccdf_warning_new</a>(<span class="keywordtype">void</span>);
<a name="l00845"></a>00845 <span class="keyword">struct </span><a class="code" href="structxccdf__warning.html" title="XCCDF warning.">xccdf_warning</a> *<a class="code" href="group__XCCDF.html#gac7a9149e1e40ab6ce0b0e68435bd5ffe">xccdf_warning_clone</a>(<span class="keyword">const</span> <span class="keyword">struct</span> <a class="code" href="structxccdf__warning.html" title="XCCDF warning.">xccdf_warning</a> *old_warning);
<a name="l00847"></a>00847 <span class="keywordtype">void</span> <a class="code" href="group__XCCDF.html#gaaa547e3d5376c6c6fe4c224e5f793010">xccdf_warning_free</a>(<span class="keyword">struct</span> <a class="code" href="structxccdf__warning.html" title="XCCDF warning.">xccdf_warning</a> * warn);
<a name="l00848"></a>00848
<a name="l00850"></a>00850 <span class="keywordtype">void</span> <a class="code" href="group__XCCDF.html#ga47500459a242783f11852585d5622c35">xccdf_refine_rule_free</a>(<span class="keyword">struct</span> <a class="code" href="structxccdf__refine__rule.html" title="XCCDF refine rule option used in the profile.">xccdf_refine_rule</a> *obj);
<a name="l00851"></a>00851
<a name="l00853"></a>00853 <span class="keywordtype">void</span> <a class="code" href="group__XCCDF.html#gacb8c1e5d834cfbac6abb32d32ba18dd2">xccdf_refine_value_free</a>(<span class="keyword">struct</span> <a class="code" href="structxccdf__refine__value.html" title="XCCDF refine value option used in the profile.">xccdf_refine_value</a> *rv);
<a name="l00854"></a>00854
<a name="l00855"></a>00855 <span class="keywordtype">void</span> xccdf_setvalue_free(<span class="keyword">struct</span> <a class="code" href="structxccdf__setvalue.html" title="XCCDF set value option used in the profile.">xccdf_setvalue</a> *sv);
<a name="l00856"></a>00856
<a name="l00861"></a>00861 <span class="keywordtype">void</span> <a class="code" href="group__XCCDF.html#gadd889f2c413df4ac37345ae18f68d129" title="Release library internal caches.">xccdf_cleanup</a>(<span class="keywordtype">void</span>);
<a name="l00862"></a>00862
<a name="l00868"></a>00868 <span class="keyword">struct </span><a class="code" href="structxccdf__group.html" title="XCCDF rule group.">xccdf_group</a> *<a class="code" href="group__XCCDF.html#gaf71e5cbb5df65b33345e258a36bb6ee6" title="Create a group and append it to the benchmark.">xccdf_benchmark_append_new_group</a>(<span class="keyword">struct</span> <a class="code" href="structxccdf__benchmark.html" title="Top level XCCDF structure containing profiles, rules, values and results.">xccdf_benchmark</a> *, <span class="keyword">const</span> <span class="keywordtype">char</span> *<span class="keywordtype">id</span>);
<a name="l00869"></a>00869
<a name="l00875"></a>00875 <span class="keyword">struct </span><a class="code" href="structxccdf__value.html" title="XCCDF Value allows test parametrization or capturing output of tests.">xccdf_value</a> *<a class="code" href="group__XCCDF.html#ga540d4866a3bf3c990aa4b714282967fb" title="Create a value and append it to the benchmark.">xccdf_benchmark_append_new_value</a>(<span class="keyword">struct</span> <a class="code" href="structxccdf__benchmark.html" title="Top level XCCDF structure containing profiles, rules, values and results.">xccdf_benchmark</a> *, <span class="keyword">const</span> <span class="keywordtype">char</span> *<span class="keywordtype">id</span>, <a class="code" href="group__XCCDF.html#gaa2d75ea6d3cd6957100f532b2ab8e8a8" title="Type of an xccdf_value.">xccdf_value_type_t</a> type);
<a name="l00876"></a>00876
<a name="l00882"></a>00882 <span class="keyword">struct </span><a class="code" href="structxccdf__rule.html" title="XCCDF rule defines a test execution.">xccdf_rule</a> *<a class="code" href="group__XCCDF.html#ga48c6c9369c6a9afa1ac386277567c911" title="Create a rule and append it to the benchmark.">xccdf_benchmark_append_new_rule</a>(<span class="keyword">struct</span> <a class="code" href="structxccdf__benchmark.html" title="Top level XCCDF structure containing profiles, rules, values and results.">xccdf_benchmark</a> *, <span class="keyword">const</span> <span class="keywordtype">char</span> *<span class="keywordtype">id</span>);
<a name="l00883"></a>00883
<a name="l00885"></a>00885 <span class="keyword">struct </span><a class="code" href="structxccdf__plain__text.html" title="XCCDF target fact.">xccdf_plain_text</a> *<a class="code" href="group__XCCDF.html#ga7a0a1516ff1dad2c63dc92045b058342">xccdf_plain_text_new</a>(<span class="keywordtype">void</span>);
<a name="l00887"></a>00887 <span class="keyword">struct </span><a class="code" href="structxccdf__plain__text.html" title="XCCDF target fact.">xccdf_plain_text</a> *<a class="code" href="group__XCCDF.html#ga659e9e5b496d27d4d0ed1640e9425b6c">xccdf_plain_text_new_fill</a>(<span class="keyword">const</span> <span class="keywordtype">char</span> *<span class="keywordtype">id</span>, <span class="keyword">const</span> <span class="keywordtype">char</span> *text);
<a name="l00889"></a>00889 <span class="keywordtype">void</span> <a class="code" href="group__XCCDF.html#gae74ef7117cd7c7005c369a838dec1d44">xccdf_plain_text_free</a>(<span class="keyword">struct</span> <a class="code" href="structxccdf__plain__text.html" title="XCCDF target fact.">xccdf_plain_text</a> *plain);
<a name="l00891"></a>00891 <span class="keyword">struct </span><a class="code" href="structxccdf__plain__text.html" title="XCCDF target fact.">xccdf_plain_text</a> *<a class="code" href="group__XCCDF.html#gae325538cc585159a43d9361b104d5437">xccdf_plain_text_clone</a>(<span class="keyword">const</span> <span class="keyword">struct</span> <a class="code" href="structxccdf__plain__text.html" title="XCCDF target fact.">xccdf_plain_text</a> * pt);
<a name="l00892"></a>00892
<a name="l00894"></a>00894 <span class="keyword">struct </span><a class="code" href="structxccdf__result.html" title="Actual results of running a XCCDF test or profile.">xccdf_result</a> *<a class="code" href="group__XCCDF.html#ga124fa2b78d28410319a6b46f8bfa32c5">xccdf_result_new</a>(<span class="keywordtype">void</span>);
<a name="l00896"></a>00896 <span class="keywordtype">void</span> <a class="code" href="group__XCCDF.html#ga1e5ddc083d2f8c1cb5f9e3cc77bc9165">xccdf_result_free</a>(<span class="keyword">struct</span> <a class="code" href="structxccdf__result.html" title="Actual results of running a XCCDF test or profile.">xccdf_result</a> *item);
<a name="l00898"></a>00898 <span class="keyword">struct </span><a class="code" href="structxccdf__item.html" title="A base class for XCCDF items.">xccdf_item</a> *<a class="code" href="group__XCCDF.html#gaa068aea90258de1d4178e131a98a00f7">xccdf_result_to_item</a>(<span class="keyword">struct</span> <a class="code" href="structxccdf__result.html" title="Actual results of running a XCCDF test or profile.">xccdf_result</a> *item);
<a name="l00900"></a>00900 <span class="keyword">struct </span><a class="code" href="structxccdf__result.html" title="Actual results of running a XCCDF test or profile.">xccdf_result</a> * <a class="code" href="group__XCCDF.html#gaea2e6b687fffb0f457b5808cc9d9904b">xccdf_result_clone</a>(<span class="keyword">const</span> <span class="keyword">struct</span> <a class="code" href="structxccdf__result.html" title="Actual results of running a XCCDF test or profile.">xccdf_result</a> * result);
<a name="l00901"></a>00901
<a name="l00903"></a>00903 <span class="keyword">struct </span><a class="code" href="structxccdf__rule__result.html" title="XCCDF rule result.">xccdf_rule_result</a> *<a class="code" href="group__XCCDF.html#ga6f378ec1af8bfa30e0b7f4206f1bb58d">xccdf_rule_result_new</a>(<span class="keywordtype">void</span>);
<a name="l00905"></a>00905 <span class="keyword">struct </span><a class="code" href="structxccdf__rule__result.html" title="XCCDF rule result.">xccdf_rule_result</a> * <a class="code" href="group__XCCDF.html#ga2ea015232c426028ac718c166bde0765">xccdf_rule_result_clone</a>(<span class="keyword">const</span> <span class="keyword">struct</span> <a class="code" href="structxccdf__rule__result.html" title="XCCDF rule result.">xccdf_rule_result</a> * result);
<a name="l00907"></a>00907 <span class="keywordtype">void</span> <a class="code" href="group__XCCDF.html#ga6113422809b2c0b51727e82ea2babe27">xccdf_rule_result_free</a>(<span class="keyword">struct</span> <a class="code" href="structxccdf__rule__result.html" title="XCCDF rule result.">xccdf_rule_result</a> *rr);
<a name="l00908"></a>00908
<a name="l00910"></a>00910 <span class="keyword">struct </span><a class="code" href="structxccdf__identity.html" title="XCCDF identity.">xccdf_identity</a> *<a class="code" href="group__XCCDF.html#gadaf20e085d5530ffdd5902465c883994">xccdf_identity_new</a>(<span class="keywordtype">void</span>);
<a name="l00912"></a>00912 <span class="keyword">struct </span><a class="code" href="structxccdf__identity.html" title="XCCDF identity.">xccdf_identity</a> * <a class="code" href="group__XCCDF.html#ga7451e69b31b28e379dda98af4a281a88">xccdf_identity_clone</a>(<span class="keyword">const</span> <span class="keyword">struct</span> <a class="code" href="structxccdf__identity.html" title="XCCDF identity.">xccdf_identity</a> * identity);
<a name="l00914"></a>00914 <span class="keywordtype">void</span> <a class="code" href="group__XCCDF.html#ga7c5ff01b5c1d9e0b91b58544644115d5">xccdf_identity_free</a>(<span class="keyword">struct</span> <a class="code" href="structxccdf__identity.html" title="XCCDF identity.">xccdf_identity</a> *identity);
<a name="l00915"></a>00915
<a name="l00917"></a>00917 <span class="keyword">struct </span><a class="code" href="structxccdf__score.html" title="XCCDF score.">xccdf_score</a> *<a class="code" href="group__XCCDF.html#ga8e2224392dabba894c9a8150d5511840">xccdf_score_new</a>(<span class="keywordtype">void</span>);
<a name="l00919"></a>00919 <span class="keyword">struct </span><a class="code" href="structxccdf__score.html" title="XCCDF score.">xccdf_score</a> * <a class="code" href="group__XCCDF.html#ga02580bb3e04cb0d93c032157f036bb68">xccdf_score_clone</a>(<span class="keyword">const</span> <span class="keyword">struct</span> <a class="code" href="structxccdf__score.html" title="XCCDF score.">xccdf_score</a> * score);
<a name="l00921"></a>00921 <span class="keywordtype">void</span> <a class="code" href="group__XCCDF.html#ga0ac0f04566fd6d98c85ba49d0ffa5e6b">xccdf_score_free</a>(<span class="keyword">struct</span> <a class="code" href="structxccdf__score.html" title="XCCDF score.">xccdf_score</a> *score);
<a name="l00922"></a>00922
<a name="l00924"></a>00924 <span class="keyword">struct </span><a class="code" href="structxccdf__override.html" title="XCCDF override.">xccdf_override</a> *<a class="code" href="group__XCCDF.html#gaee7b6b59b9b373b55b6d4116b94bc031">xccdf_override_new</a>(<span class="keywordtype">void</span>);
<a name="l00926"></a>00926 <span class="keyword">struct </span><a class="code" href="structxccdf__override.html" title="XCCDF override.">xccdf_override</a> * <a class="code" href="group__XCCDF.html#ga4cb8a9f2b9d6803a27214371442c06dd">xccdf_override_clone</a>(<span class="keyword">const</span> <span class="keyword">struct</span> <a class="code" href="structxccdf__override.html" title="XCCDF override.">xccdf_override</a> * <span class="keyword">override</span>);
<a name="l00928"></a>00928 <span class="keywordtype">void</span> <a class="code" href="group__XCCDF.html#gacd4cf0197645237dbbae1b65e6a4c425">xccdf_override_free</a>(<span class="keyword">struct</span> <a class="code" href="structxccdf__override.html" title="XCCDF override.">xccdf_override</a> *oride);
<a name="l00929"></a>00929
<a name="l00931"></a>00931 <span class="keyword">struct </span><a class="code" href="structxccdf__message.html" title="XCCDF message.">xccdf_message</a> *<a class="code" href="group__XCCDF.html#gafe21b3515c787dc0654c6445afdda56e">xccdf_message_new</a>(<span class="keywordtype">void</span>);
<a name="l00933"></a>00933 <span class="keyword">struct </span><a class="code" href="structxccdf__message.html" title="XCCDF message.">xccdf_message</a> * <a class="code" href="group__XCCDF.html#gac3b3b706a5edfc7e9240a2ce853d3098">xccdf_message_clone</a>(<span class="keyword">const</span> <span class="keyword">struct</span> <a class="code" href="structxccdf__message.html" title="XCCDF message.">xccdf_message</a> * message);
<a name="l00935"></a>00935 <span class="keywordtype">void</span> <a class="code" href="group__XCCDF.html#gadedf784c7f98135a4bdf661512068fcd">xccdf_message_free</a>(<span class="keyword">struct</span> <a class="code" href="structxccdf__message.html" title="XCCDF message.">xccdf_message</a> *msg);
<a name="l00936"></a>00936
<a name="l00938"></a>00938 <span class="keyword">struct </span><a class="code" href="structxccdf__target__fact.html" title="XCCDF target fact.">xccdf_target_fact</a> *<a class="code" href="group__XCCDF.html#gaf8130e0af935f3cd120f93c4000b1ba8">xccdf_target_fact_new</a>(<span class="keywordtype">void</span>);
<a name="l00940"></a>00940 <span class="keyword">struct </span><a class="code" href="structxccdf__target__fact.html" title="XCCDF target fact.">xccdf_target_fact</a> * <a class="code" href="group__XCCDF.html#ga91750e3c24b4218e0e43d6709046ba76">xccdf_target_fact_clone</a>(<span class="keyword">const</span> <span class="keyword">struct</span> <a class="code" href="structxccdf__target__fact.html" title="XCCDF target fact.">xccdf_target_fact</a> * tf);
<a name="l00942"></a>00942 <span class="keywordtype">void</span> <a class="code" href="group__XCCDF.html#gaac7d88f16fbfea6d35a7527728de2d2f">xccdf_target_fact_free</a>(<span class="keyword">struct</span> <a class="code" href="structxccdf__target__fact.html" title="XCCDF target fact.">xccdf_target_fact</a> *fact);
<a name="l00943"></a>00943
<a name="l00945"></a>00945 <span class="keyword">struct </span><a class="code" href="structxccdf__instance.html" title="XCCDF instance.">xccdf_instance</a> *<a class="code" href="group__XCCDF.html#ga0244d60b4283c3d256d6fd2374773232">xccdf_instance_new</a>(<span class="keywordtype">void</span>);
<a name="l00947"></a>00947 <span class="keyword">struct </span><a class="code" href="structxccdf__instance.html" title="XCCDF instance.">xccdf_instance</a> * <a class="code" href="group__XCCDF.html#ga0ca00a57142ba0db522e0fed47c0ec3e">xccdf_instance_clone</a>(<span class="keyword">const</span> <span class="keyword">struct</span> <a class="code" href="structxccdf__instance.html" title="XCCDF instance.">xccdf_instance</a> * instance);
<a name="l00949"></a>00949 <span class="keywordtype">void</span> <a class="code" href="group__XCCDF.html#gac97820db1bf1963186709008ee2a54c5">xccdf_instance_free</a>(<span class="keyword">struct</span> <a class="code" href="structxccdf__instance.html" title="XCCDF instance.">xccdf_instance</a> *inst);
<a name="l00950"></a>00950
<a name="l00951"></a>00951 <span class="comment">/*</span>
<a name="l00952"></a>00952 <span class="comment"> * Get an iterator to the list of XCCDF value's possible (or suggested) values.</span>
<a name="l00953"></a>00953 <span class="comment"> * @ralates xccdf_value</span>
<a name="l00954"></a>00954 <span class="comment"> * @retval NULL on failure (e.g. the value is not a string)</span>
<a name="l00955"></a>00955 <span class="comment"> */</span>
<a name="l00956"></a>00956 <span class="comment">// struct oscap_string_iterator* xccdf_value_choices_string(const struct xccdf_value* value);</span>
<a name="l00957"></a>00957
<a name="l00962"></a>00962 <span class="comment">/* struct oscap_string_iterator* xccdf_value_sources(const struct xccdf_value* value); TODO */</span>
<a name="l00963"></a>00963
<a name="l00964"></a>00964
<a name="l00965"></a>00965
<a name="l00966"></a>00966 <span class="comment">/************************************************************/</span>
<a name="l00976"></a>00976 <span class="keyword">struct </span><a class="code" href="structxccdf__item.html" title="A base class for XCCDF items.">xccdf_item</a> *<a class="code" href="group__XCCDF.html#gaf8c23e29a9c85f70a7661f67da2e7888" title="Return the next xccdf_item structure from the list and increment the iterator.">xccdf_item_iterator_next</a>(<span class="keyword">struct</span> <a class="code" href="structxccdf__item__iterator.html" title="String iterator.">xccdf_item_iterator</a> *it);
<a name="l00981"></a>00981 <span class="keywordtype">bool</span> <a class="code" href="group__XCCDF.html#ga8f525d23f694590c2e9a46fcbb0b4113" title="Return true if the list is not empty, false otherwise.">xccdf_item_iterator_has_more</a>(<span class="keyword">struct</span> <a class="code" href="structxccdf__item__iterator.html" title="String iterator.">xccdf_item_iterator</a> *it);
<a name="l00986"></a>00986 <span class="keywordtype">void</span> <a class="code" href="group__XCCDF.html#gaba660369c8e387d9bce732095bf8ee8c" title="Free the iterator structure (it makes no changes to the list structure).">xccdf_item_iterator_free</a>(<span class="keyword">struct</span> <a class="code" href="structxccdf__item__iterator.html" title="String iterator.">xccdf_item_iterator</a> *it);
<a name="l00987"></a>00987
<a name="l00988"></a>00988
<a name="l00993"></a>00993 <span class="keyword">struct </span><a class="code" href="structxccdf__notice.html" title="XCCDF benchmark legal notice.">xccdf_notice</a> *<a class="code" href="group__XCCDF.html#ga078511d16cf74f242dee3273fefe5c59" title="Return the next xccdf_notice structure from the list and increment the iterator.">xccdf_notice_iterator_next</a>(<span class="keyword">struct</span> <a class="code" href="structxccdf__notice__iterator.html" title="Notice iterator.">xccdf_notice_iterator</a> *it);
<a name="l00998"></a>00998 <span class="keywordtype">bool</span> <a class="code" href="group__XCCDF.html#ga0f8a3f0b2074b44c391d82f5506fbc13" title="Return true if the list is not empty, false otherwise.">xccdf_notice_iterator_has_more</a>(<span class="keyword">struct</span> <a class="code" href="structxccdf__notice__iterator.html" title="Notice iterator.">xccdf_notice_iterator</a> *it);
<a name="l01003"></a>01003 <span class="keywordtype">void</span> <a class="code" href="group__XCCDF.html#gad1fc0a19a7e55ba165e0914406c0289e" title="Free the iterator structure (it makes no changes to the list structure).">xccdf_notice_iterator_free</a>(<span class="keyword">struct</span> <a class="code" href="structxccdf__notice__iterator.html" title="Notice iterator.">xccdf_notice_iterator</a> *it);
<a name="l01004"></a>01004
<a name="l01005"></a>01005
<a name="l01010"></a>01010 <span class="keyword">struct </span><a class="code" href="structxccdf__status.html" title="XCCDF item status.">xccdf_status</a> *<a class="code" href="group__XCCDF.html#ga9c7743d8b5f29a6c35eb47814b40b0ba" title="Return the next xccdf_status structure from the list and increment the iterator.">xccdf_status_iterator_next</a>(<span class="keyword">struct</span> <a class="code" href="structxccdf__status__iterator.html" title="Status iterator.">xccdf_status_iterator</a> *it);
<a name="l01015"></a>01015 <span class="keywordtype">bool</span> <a class="code" href="group__XCCDF.html#ga8c2143920e8dae54f74983ade413d5ed" title="Return true if the list is not empty, false otherwise.">xccdf_status_iterator_has_more</a>(<span class="keyword">struct</span> <a class="code" href="structxccdf__status__iterator.html" title="Status iterator.">xccdf_status_iterator</a> *it);
<a name="l01020"></a>01020 <span class="keywordtype">void</span> <a class="code" href="group__XCCDF.html#ga529490dbf3cdc1729dfc0e052def2e3d" title="Free the iterator structure (it makes no changes to the list structure).">xccdf_status_iterator_free</a>(<span class="keyword">struct</span> <a class="code" href="structxccdf__status__iterator.html" title="Status iterator.">xccdf_status_iterator</a> *it);
<a name="l01021"></a>01021
<a name="l01022"></a>01022
<a name="l01027"></a>01027 <span class="keyword">struct </span><a class="code" href="structxccdf__reference.html" title="XCCDF reference.">xccdf_reference</a> *<a class="code" href="group__XCCDF.html#gab7a9846a8354f336ae70e29ee728b54f" title="Return the next xccdf_reference structure from the list and increment the iterator...">xccdf_reference_iterator_next</a>(<span class="keyword">struct</span> <a class="code" href="structxccdf__reference__iterator.html" title="Reference iterator.">xccdf_reference_iterator</a> *it);
<a name="l01032"></a>01032 <span class="keywordtype">bool</span> <a class="code" href="group__XCCDF.html#ga2424070bceb5da4900b44b140485d95b" title="Return true if the list is not empty, false otherwise.">xccdf_reference_iterator_has_more</a>(<span class="keyword">struct</span> <a class="code" href="structxccdf__reference__iterator.html" title="Reference iterator.">xccdf_reference_iterator</a> *it);
<a name="l01037"></a>01037 <span class="keywordtype">void</span> <a class="code" href="group__XCCDF.html#ga1dae3facbc9f197516c9cca228f20042" title="Free the iterator structure (it makes no changes to the list structure).">xccdf_reference_iterator_free</a>(<span class="keyword">struct</span> <a class="code" href="structxccdf__reference__iterator.html" title="Reference iterator.">xccdf_reference_iterator</a> *it);
<a name="l01038"></a>01038
<a name="l01039"></a>01039
<a name="l01044"></a>01044 <span class="keyword">struct </span><a class="code" href="structxccdf__model.html" title="XCCDF scoring model.">xccdf_model</a> *<a class="code" href="group__XCCDF.html#gadb96240c3f39370bd7a5e6a2f3039fdb" title="Return the next xccdf_model structure from the list and increment the iterator.">xccdf_model_iterator_next</a>(<span class="keyword">struct</span> <a class="code" href="structxccdf__model__iterator.html" title="Model iterator.">xccdf_model_iterator</a> *it);
<a name="l01049"></a>01049 <span class="keywordtype">bool</span> <a class="code" href="group__XCCDF.html#gadb803d0063f3ec84907e0d5e26a3f182" title="Return true if the list is not empty, false otherwise.">xccdf_model_iterator_has_more</a>(<span class="keyword">struct</span> <a class="code" href="structxccdf__model__iterator.html" title="Model iterator.">xccdf_model_iterator</a> *it);
<a name="l01054"></a>01054 <span class="keywordtype">void</span> <a class="code" href="group__XCCDF.html#gaec1bc2177c58842096bd7c31744f8e55" title="Free the iterator structure (it makes no changes to the list structure).">xccdf_model_iterator_free</a>(<span class="keyword">struct</span> <a class="code" href="structxccdf__model__iterator.html" title="Model iterator.">xccdf_model_iterator</a> *it);
<a name="l01055"></a>01055
<a name="l01056"></a>01056
<a name="l01061"></a>01061 <span class="keyword">struct </span><a class="code" href="structxccdf__result.html" title="Actual results of running a XCCDF test or profile.">xccdf_result</a> *<a class="code" href="group__XCCDF.html#ga107be5cb8cdc160458ee6e98d50369ca" title="Return the next xccdf_result structure from the list and increment the iterator.">xccdf_result_iterator_next</a>(<span class="keyword">struct</span> <a class="code" href="structxccdf__result__iterator.html" title="Result iterator.">xccdf_result_iterator</a> *it);
<a name="l01066"></a>01066 <span class="keywordtype">bool</span> <a class="code" href="group__XCCDF.html#gaa0fa8da2f0ba1bc180e6d9cf97ca10ab" title="Return true if the list is not empty, false otherwise.">xccdf_result_iterator_has_more</a>(<span class="keyword">struct</span> <a class="code" href="structxccdf__result__iterator.html" title="Result iterator.">xccdf_result_iterator</a> *it);
<a name="l01071"></a>01071 <span class="keywordtype">void</span> <a class="code" href="group__XCCDF.html#ga10c6d5b5114eb3ccea97c2283ff6f0af" title="Free the iterator structure (it makes no changes to the list structure).">xccdf_result_iterator_free</a>(<span class="keyword">struct</span> <a class="code" href="structxccdf__result__iterator.html" title="Result iterator.">xccdf_result_iterator</a> *it);
<a name="l01072"></a>01072
<a name="l01073"></a>01073
<a name="l01078"></a>01078 <span class="keyword">struct </span><a class="code" href="structxccdf__profile.html" title="XCCDF profile is a set of tests and their settings in a compact package.">xccdf_profile</a> *<a class="code" href="group__XCCDF.html#ga0ba5f4ec80bb93207b8ca7f731419184" title="Return the next xccdf_profile structure from the list and increment the iterator...">xccdf_profile_iterator_next</a>(<span class="keyword">struct</span> <a class="code" href="structxccdf__profile__iterator.html" title="Profile iterator.">xccdf_profile_iterator</a> *it);
<a name="l01083"></a>01083 <span class="keywordtype">bool</span> <a class="code" href="group__XCCDF.html#ga86d1f031c5a9ca3f71ec92245005f354" title="Return true if the list is not empty, false otherwise.">xccdf_profile_iterator_has_more</a>(<span class="keyword">struct</span> <a class="code" href="structxccdf__profile__iterator.html" title="Profile iterator.">xccdf_profile_iterator</a> *it);
<a name="l01088"></a>01088 <span class="keywordtype">void</span> <a class="code" href="group__XCCDF.html#gac6340c8f502de05094b075e8004b3d70" title="Free the iterator structure (it makes no changes to the list structure).">xccdf_profile_iterator_free</a>(<span class="keyword">struct</span> <a class="code" href="structxccdf__profile__iterator.html" title="Profile iterator.">xccdf_profile_iterator</a> *it);
<a name="l01089"></a>01089
<a name="l01090"></a>01090
<a name="l01095"></a>01095 <span class="keyword">struct </span><a class="code" href="structxccdf__select.html" title="XCCDF select option usen in the profile.">xccdf_select</a> *<a class="code" href="group__XCCDF.html#ga2dbb6802237160cb2f6e0bc430dc26bc" title="Return the next xccdf_select structure from the list and increment the iterator.">xccdf_select_iterator_next</a>(<span class="keyword">struct</span> <a class="code" href="structxccdf__select__iterator.html" title="Select iterator.">xccdf_select_iterator</a> *it);
<a name="l01100"></a>01100 <span class="keywordtype">bool</span> <a class="code" href="group__XCCDF.html#gaeb4e63317d86a3105eefa30709e372be" title="Return true if the list is not empty, false otherwise.">xccdf_select_iterator_has_more</a>(<span class="keyword">struct</span> <a class="code" href="structxccdf__select__iterator.html" title="Select iterator.">xccdf_select_iterator</a> *it);
<a name="l01105"></a>01105 <span class="keywordtype">void</span> <a class="code" href="group__XCCDF.html#ga46a1a1cb4b746301b644a95fed303324" title="Free the iterator structure (it makes no changes to the list structure).">xccdf_select_iterator_free</a>(<span class="keyword">struct</span> <a class="code" href="structxccdf__select__iterator.html" title="Select iterator.">xccdf_select_iterator</a> *it);
<a name="l01106"></a>01106
<a name="l01107"></a>01107
<a name="l01112"></a>01112 <span class="keyword">struct </span><a class="code" href="structxccdf__setvalue.html" title="XCCDF set value option used in the profile.">xccdf_setvalue</a> *<a class="code" href="group__XCCDF.html#ga4d08f21eee6ff5a85ae82330327f997f" title="Return the next xccdf_setvalue structure from the list and increment the iterator...">xccdf_setvalue_iterator_next</a>(<span class="keyword">struct</span> <a class="code" href="structxccdf__setvalue__iterator.html" title="Set value iterator.">xccdf_setvalue_iterator</a> *it);
<a name="l01117"></a>01117 <span class="keywordtype">bool</span> <a class="code" href="group__XCCDF.html#ga4114362b8267c57d4615b646ed46b2c3" title="Return true if the list is not empty, false otherwise.">xccdf_setvalue_iterator_has_more</a>(<span class="keyword">struct</span> <a class="code" href="structxccdf__setvalue__iterator.html" title="Set value iterator.">xccdf_setvalue_iterator</a> *it);
<a name="l01122"></a>01122 <span class="keywordtype">void</span> <a class="code" href="group__XCCDF.html#ga8a3bc1214679b610248b1ecec284ab4c" title="Free the iterator structure (it makes no changes to the list structure).">xccdf_setvalue_iterator_free</a>(<span class="keyword">struct</span> <a class="code" href="structxccdf__setvalue__iterator.html" title="Set value iterator.">xccdf_setvalue_iterator</a> *it);
<a name="l01123"></a>01123
<a name="l01124"></a>01124
<a name="l01129"></a>01129 <span class="keyword">struct </span><a class="code" href="structxccdf__refine__value.html" title="XCCDF refine value option used in the profile.">xccdf_refine_value</a> *<a class="code" href="group__XCCDF.html#ga34eb4e83c33666bed6421b06d901a357" title="Return the next xccdf_refine_value structure from the list and increment the iterator...">xccdf_refine_value_iterator_next</a>(<span class="keyword">struct</span> <a class="code" href="structxccdf__refine__value__iterator.html" title="Refine value iterator.">xccdf_refine_value_iterator</a> *it);
<a name="l01134"></a>01134 <span class="keywordtype">bool</span> <a class="code" href="group__XCCDF.html#gab9d557582bb2d63f90c048279fd0abc2" title="Return true if the list is not empty, false otherwise.">xccdf_refine_value_iterator_has_more</a>(<span class="keyword">struct</span> <a class="code" href="structxccdf__refine__value__iterator.html" title="Refine value iterator.">xccdf_refine_value_iterator</a> *it);
<a name="l01139"></a>01139 <span class="keywordtype">void</span> <a class="code" href="group__XCCDF.html#ga6f942b72680a1497a7ccc6aa5c99a2ea" title="Free the iterator structure (it makes no changes to the list structure).">xccdf_refine_value_iterator_free</a>(<span class="keyword">struct</span> <a class="code" href="structxccdf__refine__value__iterator.html" title="Refine value iterator.">xccdf_refine_value_iterator</a> *it);
<a name="l01140"></a>01140
<a name="l01141"></a>01141
<a name="l01146"></a>01146 <span class="keyword">struct </span><a class="code" href="structxccdf__refine__rule.html" title="XCCDF refine rule option used in the profile.">xccdf_refine_rule</a> *<a class="code" href="group__XCCDF.html#gae9a2d8348d0fe23bc9c3c6b5ea99e7a6" title="Return the next xccdf_refine_rule structure from the list and increment the iterator...">xccdf_refine_rule_iterator_next</a>(<span class="keyword">struct</span> <a class="code" href="structxccdf__refine__rule__iterator.html" title="Refine rule iterator.">xccdf_refine_rule_iterator</a> *it);
<a name="l01151"></a>01151 <span class="keywordtype">bool</span> <a class="code" href="group__XCCDF.html#ga6624200da31d3772019fc6d1bb420ab7" title="Return true if the list is not empty, false otherwise.">xccdf_refine_rule_iterator_has_more</a>(<span class="keyword">struct</span> <a class="code" href="structxccdf__refine__rule__iterator.html" title="Refine rule iterator.">xccdf_refine_rule_iterator</a> *it);
<a name="l01156"></a>01156 <span class="keywordtype">void</span> <a class="code" href="group__XCCDF.html#ga71d1640fffe97b29339f87c59f25006c" title="Free the iterator structure (it makes no changes to the list structure).">xccdf_refine_rule_iterator_free</a>(<span class="keyword">struct</span> <a class="code" href="structxccdf__refine__rule__iterator.html" title="Refine rule iterator.">xccdf_refine_rule_iterator</a> *it);
<a name="l01157"></a>01157
<a name="l01158"></a>01158
<a name="l01163"></a>01163 <span class="keyword">struct </span><a class="code" href="structxccdf__ident.html" title="XCCDF rule ident URI.">xccdf_ident</a> *<a class="code" href="group__XCCDF.html#ga19779e6de93ed1aff31e9576f85a05c1" title="Return the next xccdf_ident structure from the list and increment the iterator.">xccdf_ident_iterator_next</a>(<span class="keyword">struct</span> <a class="code" href="structxccdf__ident__iterator.html" title="Ident iterator.">xccdf_ident_iterator</a> *it);
<a name="l01168"></a>01168 <span class="keywordtype">bool</span> <a class="code" href="group__XCCDF.html#gad4881a85fc1d903103b81f8a1d679278" title="Return true if the list is not empty, false otherwise.">xccdf_ident_iterator_has_more</a>(<span class="keyword">struct</span> <a class="code" href="structxccdf__ident__iterator.html" title="Ident iterator.">xccdf_ident_iterator</a> *it);
<a name="l01173"></a>01173 <span class="keywordtype">void</span> <a class="code" href="group__XCCDF.html#ga1d7b9c377c7adfa27d16adfbcd315369" title="Free the iterator structure (it makes no changes to the list structure).">xccdf_ident_iterator_free</a>(<span class="keyword">struct</span> <a class="code" href="structxccdf__ident__iterator.html" title="Ident iterator.">xccdf_ident_iterator</a> *it);
<a name="l01174"></a>01174
<a name="l01175"></a>01175
<a name="l01180"></a>01180 <span class="keyword">struct </span><a class="code" href="structxccdf__check.html" title="XCCDF simple or complex check.">xccdf_check</a> *<a class="code" href="group__XCCDF.html#ga31c6db83abf9de917bc59b767852ca6f" title="Return the next xccdf_check structure from the list and increment the iterator.">xccdf_check_iterator_next</a>(<span class="keyword">struct</span> <a class="code" href="structxccdf__check__iterator.html" title="Check iterator.">xccdf_check_iterator</a> *it);
<a name="l01185"></a>01185 <span class="keywordtype">bool</span> <a class="code" href="group__XCCDF.html#ga60dad47138e7ad7b8f63ede098af12c2" title="Return true if the list is not empty, false otherwise.">xccdf_check_iterator_has_more</a>(<span class="keyword">struct</span> <a class="code" href="structxccdf__check__iterator.html" title="Check iterator.">xccdf_check_iterator</a> *it);
<a name="l01190"></a>01190 <span class="keywordtype">void</span> <a class="code" href="group__XCCDF.html#ga9e6d7026176bea2698b017bc0120b708" title="Free the iterator structure (it makes no changes to the list structure).">xccdf_check_iterator_free</a>(<span class="keyword">struct</span> <a class="code" href="structxccdf__check__iterator.html" title="Check iterator.">xccdf_check_iterator</a> *it);
<a name="l01191"></a>01191
<a name="l01192"></a>01192
<a name="l01197"></a>01197 <span class="keyword">struct </span><a class="code" href="structxccdf__check__content__ref.html" title="XCCDF check content reference.">xccdf_check_content_ref</a> *<a class="code" href="group__XCCDF.html#gab2f61b3f96a03eb5e81e60c1151fb004" title="Return the next xccdf_check_content_ref structure from the list and increment the...">xccdf_check_content_ref_iterator_next</a>(<span class="keyword">struct</span> <a class="code" href="structxccdf__check__content__ref__iterator.html" title="Check content references iterator.">xccdf_check_content_ref_iterator</a> *it);
<a name="l01202"></a>01202 <span class="keywordtype">bool</span> <a class="code" href="group__XCCDF.html#gac9d252ba2f45d2e4ddaf19cbd7ee1d67" title="Return true if the list is not empty, false otherwise.">xccdf_check_content_ref_iterator_has_more</a>(<span class="keyword">struct</span> <a class="code" href="structxccdf__check__content__ref__iterator.html" title="Check content references iterator.">xccdf_check_content_ref_iterator</a> *it);
<a name="l01207"></a>01207 <span class="keywordtype">void</span> <a class="code" href="group__XCCDF.html#gae817e6699e0e9af57714350f6bfa2d7e" title="Free the iterator structure (it makes no changes to the list structure).">xccdf_check_content_ref_iterator_free</a>(<span class="keyword">struct</span> <a class="code" href="structxccdf__check__content__ref__iterator.html" title="Check content references iterator.">xccdf_check_content_ref_iterator</a> *it);
<a name="l01208"></a>01208
<a name="l01209"></a>01209
<a name="l01214"></a>01214 <span class="keyword">struct </span><a class="code" href="structxccdf__profile__note.html" title="XCCDF note for given rule in context of given profile.">xccdf_profile_note</a> *<a class="code" href="group__XCCDF.html#gade866205223d6e8ad0806acad5c2e7aa" title="Return the next xccdf_profile_note structure from the list and increment the iterator...">xccdf_profile_note_iterator_next</a>(<span class="keyword">struct</span> <a class="code" href="structxccdf__profile__note__iterator.html" title="Profile note iterator.">xccdf_profile_note_iterator</a> *it);
<a name="l01219"></a>01219 <span class="keywordtype">bool</span> <a class="code" href="group__XCCDF.html#gad3d80f00e21e2280f40266c3bd499d23" title="Return true if the list is not empty, false otherwise.">xccdf_profile_note_iterator_has_more</a>(<span class="keyword">struct</span> <a class="code" href="structxccdf__profile__note__iterator.html" title="Profile note iterator.">xccdf_profile_note_iterator</a> *it);
<a name="l01224"></a>01224 <span class="keywordtype">void</span> <a class="code" href="group__XCCDF.html#ga1e91da50b6ab37debb998a0727e7a7c7" title="Free the iterator structure (it makes no changes to the list structure).">xccdf_profile_note_iterator_free</a>(<span class="keyword">struct</span> <a class="code" href="structxccdf__profile__note__iterator.html" title="Profile note iterator.">xccdf_profile_note_iterator</a> *it);
<a name="l01225"></a>01225
<a name="l01226"></a>01226
<a name="l01231"></a>01231 <span class="keyword">struct </span><a class="code" href="structxccdf__check__import.html" title="XCCDF check import.">xccdf_check_import</a> *<a class="code" href="group__XCCDF.html#ga6199acf6d9da116154127277f059fd01" title="Return the next xccdf_check_import structure from the list and increment the iterator...">xccdf_check_import_iterator_next</a>(<span class="keyword">struct</span> <a class="code" href="structxccdf__check__import__iterator.html" title="Check import iterator.">xccdf_check_import_iterator</a> *it);
<a name="l01236"></a>01236 <span class="keywordtype">bool</span> <a class="code" href="group__XCCDF.html#ga30217b698d64b7f9b1de2c312ab26381" title="Return true if the list is not empty, false otherwise.">xccdf_check_import_iterator_has_more</a>(<span class="keyword">struct</span> <a class="code" href="structxccdf__check__import__iterator.html" title="Check import iterator.">xccdf_check_import_iterator</a> *it);
<a name="l01241"></a>01241 <span class="keywordtype">void</span> <a class="code" href="group__XCCDF.html#ga624d6118ae3e459b9e1438e81cf82b65" title="Free the iterator structure (it makes no changes to the list structure).">xccdf_check_import_iterator_free</a>(<span class="keyword">struct</span> <a class="code" href="structxccdf__check__import__iterator.html" title="Check import iterator.">xccdf_check_import_iterator</a> *it);
<a name="l01242"></a>01242
<a name="l01243"></a>01243
<a name="l01248"></a>01248 <span class="keyword">struct </span><a class="code" href="structxccdf__check__export.html" title="XCCDF check export.">xccdf_check_export</a> *<a class="code" href="group__XCCDF.html#ga3ee5efa20d3aafec1f3ebb4e099a0c26" title="Return the next xccdf_check_export structure from the list and increment the iterator...">xccdf_check_export_iterator_next</a>(<span class="keyword">struct</span> <a class="code" href="structxccdf__check__export__iterator.html" title="Check export iterator.">xccdf_check_export_iterator</a> *it);
<a name="l01253"></a>01253 <span class="keywordtype">bool</span> <a class="code" href="group__XCCDF.html#ga9ce8d35ddd53074e54e8f3cdd39bfa30" title="Return true if the list is not empty, false otherwise.">xccdf_check_export_iterator_has_more</a>(<span class="keyword">struct</span> <a class="code" href="structxccdf__check__export__iterator.html" title="Check export iterator.">xccdf_check_export_iterator</a> *it);
<a name="l01258"></a>01258 <span class="keywordtype">void</span> <a class="code" href="group__XCCDF.html#gaeb3de761d8918c74ec97aa136cd2c4a8" title="Free the iterator structure (it makes no changes to the list structure).">xccdf_check_export_iterator_free</a>(<span class="keyword">struct</span> <a class="code" href="structxccdf__check__export__iterator.html" title="Check export iterator.">xccdf_check_export_iterator</a> *it);
<a name="l01259"></a>01259
<a name="l01260"></a>01260
<a name="l01265"></a>01265 <span class="keyword">struct </span><a class="code" href="structxccdf__fix.html" title="XCCDF automatic fix.">xccdf_fix</a> *<a class="code" href="group__XCCDF.html#gaab5fd1b91fc2e94579c011d94f8b4cd5" title="Return the next xccdf_fix structure from the list and increment the iterator.">xccdf_fix_iterator_next</a>(<span class="keyword">struct</span> <a class="code" href="structxccdf__fix__iterator.html" title="Fix iterator.">xccdf_fix_iterator</a> *it);
<a name="l01270"></a>01270 <span class="keywordtype">bool</span> <a class="code" href="group__XCCDF.html#gac9efc4e6bfeb31e5ae4e3b9f01d0708e" title="Return true if the list is not empty, false otherwise.">xccdf_fix_iterator_has_more</a>(<span class="keyword">struct</span> <a class="code" href="structxccdf__fix__iterator.html" title="Fix iterator.">xccdf_fix_iterator</a> *it);
<a name="l01275"></a>01275 <span class="keywordtype">void</span> <a class="code" href="group__XCCDF.html#ga1643d3c47b4f0c7b04e6066fac995e51" title="Free the iterator structure (it makes no changes to the list structure).">xccdf_fix_iterator_free</a>(<span class="keyword">struct</span> <a class="code" href="structxccdf__fix__iterator.html" title="Fix iterator.">xccdf_fix_iterator</a> *it);
<a name="l01276"></a>01276
<a name="l01277"></a>01277
<a name="l01282"></a>01282 <span class="keyword">struct </span><a class="code" href="structxccdf__fixtext.html" title="XCCDF textual fix instructions.">xccdf_fixtext</a> *<a class="code" href="group__XCCDF.html#gab13ccaa4c2a9701abc24b634e7e485a2" title="Return the next xccdf_fixtext structure from the list and increment the iterator...">xccdf_fixtext_iterator_next</a>(<span class="keyword">struct</span> <a class="code" href="structxccdf__fixtext__iterator.html" title="Textual fix iterator.">xccdf_fixtext_iterator</a> *it);
<a name="l01287"></a>01287 <span class="keywordtype">bool</span> <a class="code" href="group__XCCDF.html#ga43dcb8e84bd0b73dee5f807bfac3830a" title="Return true if the list is not empty, false otherwise.">xccdf_fixtext_iterator_has_more</a>(<span class="keyword">struct</span> <a class="code" href="structxccdf__fixtext__iterator.html" title="Textual fix iterator.">xccdf_fixtext_iterator</a> *it);
<a name="l01292"></a>01292 <span class="keywordtype">void</span> <a class="code" href="group__XCCDF.html#ga6a9d49229eaf60f37d2fba12aba00772" title="Free the iterator structure (it makes no changes to the list structure).">xccdf_fixtext_iterator_free</a>(<span class="keyword">struct</span> <a class="code" href="structxccdf__fixtext__iterator.html" title="Textual fix iterator.">xccdf_fixtext_iterator</a> *it);
<a name="l01293"></a>01293
<a name="l01294"></a>01294
<a name="l01299"></a>01299 <span class="keyword">struct </span><a class="code" href="structxccdf__warning.html" title="XCCDF warning.">xccdf_warning</a> *<a class="code" href="group__XCCDF.html#gaad84dba8542f7a649a83a195fd3da640" title="Return the next xccdf_warning structure from the list and increment the iterator...">xccdf_warning_iterator_next</a>(<span class="keyword">struct</span> <a class="code" href="structxccdf__warning__iterator.html" title="Warning iterator.">xccdf_warning_iterator</a> *it);
<a name="l01304"></a>01304 <span class="keywordtype">bool</span> <a class="code" href="group__XCCDF.html#ga948293511bf8c01e10f18704bd7e675d" title="Return true if the list is not empty, false otherwise.">xccdf_warning_iterator_has_more</a>(<span class="keyword">struct</span> <a class="code" href="structxccdf__warning__iterator.html" title="Warning iterator.">xccdf_warning_iterator</a> *it);
<a name="l01309"></a>01309 <span class="keywordtype">void</span> <a class="code" href="group__XCCDF.html#ga4c7dad6466b159d35fcfd0f711c751cb" title="Free the iterator structure (it makes no changes to the list structure).">xccdf_warning_iterator_free</a>(<span class="keyword">struct</span> <a class="code" href="structxccdf__warning__iterator.html" title="Warning iterator.">xccdf_warning_iterator</a> *it);
<a name="l01310"></a>01310
<a name="l01311"></a>01311
<a name="l01316"></a>01316 <span class="keyword">struct </span><a class="code" href="structxccdf__instance.html" title="XCCDF instance.">xccdf_instance</a> *<a class="code" href="group__XCCDF.html#ga9bf59ea71f016c560c14e339316fb334" title="Return the next xccdf_instance structure from the list and increment the iterator...">xccdf_instance_iterator_next</a>(<span class="keyword">struct</span> <a class="code" href="structxccdf__instance__iterator.html" title="Instance iterator.">xccdf_instance_iterator</a> *it);
<a name="l01321"></a>01321 <span class="keywordtype">bool</span> <a class="code" href="group__XCCDF.html#ga58a62eb8600b4b6b14a8275cf03ac263" title="Return true if the list is not empty, false otherwise.">xccdf_instance_iterator_has_more</a>(<span class="keyword">struct</span> <a class="code" href="structxccdf__instance__iterator.html" title="Instance iterator.">xccdf_instance_iterator</a> *it);
<a name="l01326"></a>01326 <span class="keywordtype">void</span> <a class="code" href="group__XCCDF.html#ga353637a1b7ba154eea9341a93c07c178" title="Free the iterator structure (it makes no changes to the list structure).">xccdf_instance_iterator_free</a>(<span class="keyword">struct</span> <a class="code" href="structxccdf__instance__iterator.html" title="Instance iterator.">xccdf_instance_iterator</a> *it);
<a name="l01327"></a>01327
<a name="l01328"></a>01328
<a name="l01333"></a>01333 <span class="keyword">struct </span><a class="code" href="structxccdf__message.html" title="XCCDF message.">xccdf_message</a> *<a class="code" href="group__XCCDF.html#ga6edd9bcc2e35967fe4638c541f8493f8" title="Return the next xccdf_message structure from the list and increment the iterator...">xccdf_message_iterator_next</a>(<span class="keyword">struct</span> <a class="code" href="structxccdf__message__iterator.html" title="Message iterator.">xccdf_message_iterator</a> *it);
<a name="l01338"></a>01338 <span class="keywordtype">bool</span> <a class="code" href="group__XCCDF.html#gae6b1d7dada99899357c39c16b2f02013" title="Return true if the list is not empty, false otherwise.">xccdf_message_iterator_has_more</a>(<span class="keyword">struct</span> <a class="code" href="structxccdf__message__iterator.html" title="Message iterator.">xccdf_message_iterator</a> *it);
<a name="l01343"></a>01343 <span class="keywordtype">void</span> <a class="code" href="group__XCCDF.html#ga8e87bb2962692af3dd89dddbf76732fa" title="Free the iterator structure (it makes no changes to the list structure).">xccdf_message_iterator_free</a>(<span class="keyword">struct</span> <a class="code" href="structxccdf__message__iterator.html" title="Message iterator.">xccdf_message_iterator</a> *it);
<a name="l01344"></a>01344
<a name="l01345"></a>01345
<a name="l01350"></a>01350 <span class="keyword">struct </span><a class="code" href="structxccdf__override.html" title="XCCDF override.">xccdf_override</a> *<a class="code" href="group__XCCDF.html#ga12b258910da994a7599eda41ff8703f5" title="Return the next xccdf_override structure from the list and increment the iterator...">xccdf_override_iterator_next</a>(<span class="keyword">struct</span> <a class="code" href="structxccdf__override__iterator.html" title="Override iterator.">xccdf_override_iterator</a> *it);
<a name="l01355"></a>01355 <span class="keywordtype">bool</span> <a class="code" href="group__XCCDF.html#gabfe51adead7c23fd841f5444c45fec5f" title="Return true if the list is not empty, false otherwise.">xccdf_override_iterator_has_more</a>(<span class="keyword">struct</span> <a class="code" href="structxccdf__override__iterator.html" title="Override iterator.">xccdf_override_iterator</a> *it);
<a name="l01360"></a>01360 <span class="keywordtype">void</span> <a class="code" href="group__XCCDF.html#gab121f4ebc45eaa18d06aa9ad702034c2" title="Free the iterator structure (it makes no changes to the list structure).">xccdf_override_iterator_free</a>(<span class="keyword">struct</span> <a class="code" href="structxccdf__override__iterator.html" title="Override iterator.">xccdf_override_iterator</a> *it);
<a name="l01361"></a>01361
<a name="l01362"></a>01362
<a name="l01367"></a>01367 <span class="keyword">struct </span><a class="code" href="structxccdf__identity.html" title="XCCDF identity.">xccdf_identity</a> *<a class="code" href="group__XCCDF.html#ga4c4e606d8d1f6e9fa070e24a85ce0f18" title="Return the next xccdf_identity structure from the list and increment the iterator...">xccdf_identity_iterator_next</a>(<span class="keyword">struct</span> <a class="code" href="structxccdf__identity__iterator.html" title="Reference iterator.">xccdf_identity_iterator</a> *it);
<a name="l01372"></a>01372 <span class="keywordtype">bool</span> <a class="code" href="group__XCCDF.html#ga8176d3e381b34b1c58a0b30e2173041a" title="Return true if the list is not empty, false otherwise.">xccdf_identity_iterator_has_more</a>(<span class="keyword">struct</span> <a class="code" href="structxccdf__identity__iterator.html" title="Reference iterator.">xccdf_identity_iterator</a> *it);
<a name="l01377"></a>01377 <span class="keywordtype">void</span> <a class="code" href="group__XCCDF.html#ga615553e34daf6251c85cfdb85876298a" title="Free the iterator structure (it makes no changes to the list structure).">xccdf_identity_iterator_free</a>(<span class="keyword">struct</span> <a class="code" href="structxccdf__identity__iterator.html" title="Reference iterator.">xccdf_identity_iterator</a> *it);
<a name="l01378"></a>01378
<a name="l01379"></a>01379
<a name="l01384"></a>01384 <span class="keyword">struct </span><a class="code" href="structxccdf__rule__result.html" title="XCCDF rule result.">xccdf_rule_result</a> *<a class="code" href="group__XCCDF.html#ga6d48da19e85625faf0953c1f02912bc8" title="Return the next xccdf_rule_result structure from the list and increment the iterator...">xccdf_rule_result_iterator_next</a>(<span class="keyword">struct</span> <a class="code" href="structxccdf__rule__result__iterator.html" title="Override iterator.">xccdf_rule_result_iterator</a> *it);
<a name="l01389"></a>01389 <span class="keywordtype">bool</span> <a class="code" href="group__XCCDF.html#ga3eda34dbb375c871754f93e95ae00984" title="Return true if the list is not empty, false otherwise.">xccdf_rule_result_iterator_has_more</a>(<span class="keyword">struct</span> <a class="code" href="structxccdf__rule__result__iterator.html" title="Override iterator.">xccdf_rule_result_iterator</a> *it);
<a name="l01394"></a>01394 <span class="keywordtype">void</span> <a class="code" href="group__XCCDF.html#ga1178363520ea8ff8bcdaeb871d8262bd" title="Free the iterator structure (it makes no changes to the list structure).">xccdf_rule_result_iterator_free</a>(<span class="keyword">struct</span> <a class="code" href="structxccdf__rule__result__iterator.html" title="Override iterator.">xccdf_rule_result_iterator</a> *it);
<a name="l01395"></a>01395
<a name="l01396"></a>01396
<a name="l01401"></a>01401 <span class="keyword">struct </span><a class="code" href="structxccdf__value__instance.html">xccdf_value_instance</a> *<a class="code" href="group__XCCDF.html#ga0dd9e1328f6a7e907a180368a3fa944b" title="Return the next xccdf_value_instance structure from the list and increment the iterator...">xccdf_value_instance_iterator_next</a>(<span class="keyword">struct</span> <a class="code" href="structxccdf__value__instance__iterator.html" title="Value instance iterator.">xccdf_value_instance_iterator</a> *it);
<a name="l01406"></a>01406 <span class="keywordtype">bool</span> <a class="code" href="group__XCCDF.html#gae45bcf9350cefc2cf377e9f7d528bb2a" title="Return true if the list is not empty, false otherwise.">xccdf_value_instance_iterator_has_more</a>(<span class="keyword">struct</span> <a class="code" href="structxccdf__value__instance__iterator.html" title="Value instance iterator.">xccdf_value_instance_iterator</a> *it);
<a name="l01411"></a>01411 <span class="keywordtype">void</span> <a class="code" href="group__XCCDF.html#ga957a93a74cba8dc05eca178a3c6111b1" title="Free the iterator structure (it makes no changes to the list structure).">xccdf_value_instance_iterator_free</a>(<span class="keyword">struct</span> <a class="code" href="structxccdf__value__instance__iterator.html" title="Value instance iterator.">xccdf_value_instance_iterator</a> *it);
<a name="l01412"></a>01412
<a name="l01413"></a>01413
<a name="l01418"></a>01418 <span class="keyword">struct </span><a class="code" href="structxccdf__score.html" title="XCCDF score.">xccdf_score</a> *<a class="code" href="group__XCCDF.html#ga5f1675260957e0d3c5f0174147df9f52" title="Return the next xccdf_score structure from the list and increment the iterator.">xccdf_score_iterator_next</a>(<span class="keyword">struct</span> <a class="code" href="structxccdf__score__iterator.html" title="Override iterator.">xccdf_score_iterator</a> *it);
<a name="l01423"></a>01423 <span class="keywordtype">bool</span> <a class="code" href="group__XCCDF.html#ga206e447c3a88a519b8cdbd999327bead" title="Return true if the list is not empty, false otherwise.">xccdf_score_iterator_has_more</a>(<span class="keyword">struct</span> <a class="code" href="structxccdf__score__iterator.html" title="Override iterator.">xccdf_score_iterator</a> *it);
<a name="l01428"></a>01428 <span class="keywordtype">void</span> <a class="code" href="group__XCCDF.html#gaf041de4655cf4c9ca53530a223c74293" title="Free the iterator structure (it makes no changes to the list structure).">xccdf_score_iterator_free</a>(<span class="keyword">struct</span> <a class="code" href="structxccdf__score__iterator.html" title="Override iterator.">xccdf_score_iterator</a> *it);
<a name="l01429"></a>01429
<a name="l01430"></a>01430
<a name="l01435"></a>01435 <span class="keyword">struct </span><a class="code" href="structxccdf__target__fact.html" title="XCCDF target fact.">xccdf_target_fact</a> *<a class="code" href="group__XCCDF.html#ga8b56f26a55e7632022a7378bab45e298" title="Return the next xccdf_target_fact structure from the list and increment the iterator...">xccdf_target_fact_iterator_next</a>(<span class="keyword">struct</span> <a class="code" href="structxccdf__target__fact__iterator.html" title="Override iterator.">xccdf_target_fact_iterator</a> *it);
<a name="l01440"></a>01440 <span class="keywordtype">bool</span> <a class="code" href="group__XCCDF.html#ga8225abffee075a2b30d4f1c562c6d23c" title="Return true if the list is not empty, false otherwise.">xccdf_target_fact_iterator_has_more</a>(<span class="keyword">struct</span> <a class="code" href="structxccdf__target__fact__iterator.html" title="Override iterator.">xccdf_target_fact_iterator</a> *it);
<a name="l01445"></a>01445 <span class="keywordtype">void</span> <a class="code" href="group__XCCDF.html#ga11da50c044656fa57f32812bd736d2b5" title="Free the iterator structure (it makes no changes to the list structure).">xccdf_target_fact_iterator_free</a>(<span class="keyword">struct</span> <a class="code" href="structxccdf__target__fact__iterator.html" title="Override iterator.">xccdf_target_fact_iterator</a> *it);
<a name="l01446"></a>01446
<a name="l01447"></a>01447
<a name="l01452"></a>01452 <span class="keyword">struct </span><a class="code" href="structxccdf__plain__text.html" title="XCCDF target fact.">xccdf_plain_text</a> *<a class="code" href="group__XCCDF.html#ga5dfc1055cbc7534155a562ed477d8251" title="Return the next xccdf_plain_text structure from the list and increment the iterator...">xccdf_plain_text_iterator_next</a>(<span class="keyword">struct</span> <a class="code" href="structxccdf__plain__text__iterator.html" title="Plain text iterator.">xccdf_plain_text_iterator</a> *it);
<a name="l01457"></a>01457 <span class="keywordtype">bool</span> <a class="code" href="group__XCCDF.html#ga1918ad5aff29f3c9b62f700ec0f67872" title="Return true if the list is not empty, false otherwise.">xccdf_plain_text_iterator_has_more</a>(<span class="keyword">struct</span> <a class="code" href="structxccdf__plain__text__iterator.html" title="Plain text iterator.">xccdf_plain_text_iterator</a> *it);
<a name="l01462"></a>01462 <span class="keywordtype">void</span> <a class="code" href="group__XCCDF.html#ga79fd88c1593b492104b0f157722032bf" title="Free the iterator structure (it makes no changes to the list structure).">xccdf_plain_text_iterator_free</a>(<span class="keyword">struct</span> <a class="code" href="structxccdf__plain__text__iterator.html" title="Plain text iterator.">xccdf_plain_text_iterator</a> *it);
<a name="l01463"></a>01463
<a name="l01464"></a>01464
<a name="l01469"></a>01469 <span class="keyword">struct </span><a class="code" href="structxccdf__value.html" title="XCCDF Value allows test parametrization or capturing output of tests.">xccdf_value</a> *<a class="code" href="group__XCCDF.html#ga05088e4ad76eef6295cb594efc29731e" title="Return the next xccdf_value structure from the list and increment the iterator.">xccdf_value_iterator_next</a>(<span class="keyword">struct</span> <a class="code" href="structxccdf__value__iterator.html" title="Select iterator.">xccdf_value_iterator</a> *it);
<a name="l01474"></a>01474 <span class="keywordtype">bool</span> <a class="code" href="group__XCCDF.html#ga4f3720ac402f7db466df484a42b817a3" title="Return true if the list is not empty, false otherwise.">xccdf_value_iterator_has_more</a>(<span class="keyword">struct</span> <a class="code" href="structxccdf__value__iterator.html" title="Select iterator.">xccdf_value_iterator</a> *it);
<a name="l01479"></a>01479 <span class="keywordtype">void</span> <a class="code" href="group__XCCDF.html#ga8fce89f4474f3fb34c213f684fceff8a" title="Free the iterator structure (it makes no changes to the list structure).">xccdf_value_iterator_free</a>(<span class="keyword">struct</span> <a class="code" href="structxccdf__value__iterator.html" title="Select iterator.">xccdf_value_iterator</a> *it);
<a name="l01480"></a>01480
<a name="l01481"></a>01481 <span class="comment">/************************************************************</span>
<a name="l01482"></a>01482 <span class="comment"> ** @} End of Iterators group */</span>
<a name="l01483"></a>01483
<a name="l01484"></a>01484 <span class="comment">/************************************************************/</span>
<a name="l01495"></a>01495 <a class="code" href="group__XCCDF.html#ga1c722a7917110bdb164e21e75ed6cfa6" title="Type of an XCCDF object.">xccdf_type_t</a> xccdf_item_get_type(<span class="keyword">const</span> <span class="keyword">struct</span> <a class="code" href="structxccdf__item.html" title="A base class for XCCDF items.">xccdf_item</a> *item);
<a name="l01499"></a>01499 <span class="keyword">const</span> <span class="keywordtype">char</span> *xccdf_item_get_id(<span class="keyword">const</span> <span class="keyword">struct</span> <a class="code" href="structxccdf__item.html" title="A base class for XCCDF items.">xccdf_item</a> *item);
<a name="l01503"></a>01503 <span class="keyword">struct </span><a class="code" href="structoscap__text__iterator.html" title="Internationalized string iterator.">oscap_text_iterator</a> *xccdf_item_get_title(<span class="keyword">const</span> <span class="keyword">struct</span> <a class="code" href="structxccdf__item.html" title="A base class for XCCDF items.">xccdf_item</a> *item);
<a name="l01507"></a>01507 <span class="keyword">struct </span><a class="code" href="structoscap__text__iterator.html" title="Internationalized string iterator.">oscap_text_iterator</a> *xccdf_item_get_description(<span class="keyword">const</span> <span class="keyword">struct</span> <a class="code" href="structxccdf__item.html" title="A base class for XCCDF items.">xccdf_item</a> *item);
<a name="l01511"></a>01511 <span class="keyword">const</span> <span class="keywordtype">char</span> *xccdf_item_get_version(<span class="keyword">const</span> <span class="keyword">struct</span> <a class="code" href="structxccdf__item.html" title="A base class for XCCDF items.">xccdf_item</a> *item);
<a name="l01515"></a>01515 <span class="keyword">const</span> <span class="keywordtype">char</span> *xccdf_item_get_extends(<span class="keyword">const</span> <span class="keyword">struct</span> <a class="code" href="structxccdf__item.html" title="A base class for XCCDF items.">xccdf_item</a> *item);
<a name="l01519"></a>01519 <span class="keyword">struct </span><a class="code" href="structxccdf__status__iterator.html" title="Status iterator.">xccdf_status_iterator</a> *xccdf_item_get_statuses(<span class="keyword">const</span> <span class="keyword">struct</span> <a class="code" href="structxccdf__item.html" title="A base class for XCCDF items.">xccdf_item</a> *item);
<a name="l01523"></a>01523 <span class="keyword">struct </span><a class="code" href="structxccdf__reference__iterator.html" title="Reference iterator.">xccdf_reference_iterator</a> *xccdf_item_get_references(<span class="keyword">const</span> <span class="keyword">struct</span> <a class="code" href="structxccdf__item.html" title="A base class for XCCDF items.">xccdf_item</a> *item);
<a name="l01527"></a>01527 <span class="keyword">struct </span><a class="code" href="structoscap__string__iterator.html" title="String iterator.">oscap_string_iterator</a> *xccdf_item_get_conflicts(<span class="keyword">const</span> <span class="keyword">struct</span> <a class="code" href="structxccdf__item.html" title="A base class for XCCDF items.">xccdf_item</a>* item);
<a name="l01531"></a>01531 <span class="keyword">struct </span><a class="code" href="structoscap__stringlist__iterator.html" title="Iterator over collections of strings.">oscap_stringlist_iterator</a> *xccdf_item_get_requires(<span class="keyword">const</span> <span class="keyword">struct</span> <a class="code" href="structxccdf__item.html" title="A base class for XCCDF items.">xccdf_item</a>* item);
<a name="l01535"></a>01535 <a class="code" href="group__XCCDF.html#gac0d5c1c85828e13ebb13935551f8da38" title="Status of an XCCDF item.">xccdf_status_type_t</a> xccdf_item_get_current_status(<span class="keyword">const</span> <span class="keyword">struct</span> <a class="code" href="structxccdf__item.html" title="A base class for XCCDF items.">xccdf_item</a> *item);
<a name="l01539"></a>01539 <span class="keywordtype">bool</span> xccdf_item_get_hidden(<span class="keyword">const</span> <span class="keyword">struct</span> <a class="code" href="structxccdf__item.html" title="A base class for XCCDF items.">xccdf_item</a> *item);
<a name="l01543"></a>01543 <span class="keywordtype">bool</span> xccdf_item_get_selected(<span class="keyword">const</span> <span class="keyword">struct</span> <a class="code" href="structxccdf__item.html" title="A base class for XCCDF items.">xccdf_item</a> *item);
<a name="l01547"></a>01547 <span class="keywordtype">bool</span> xccdf_item_get_prohibit_changes(<span class="keyword">const</span> <span class="keyword">struct</span> <a class="code" href="structxccdf__item.html" title="A base class for XCCDF items.">xccdf_item</a> *item);
<a name="l01551"></a>01551 <span class="keywordtype">bool</span> xccdf_item_get_abstract(<span class="keyword">const</span> <span class="keyword">struct</span> <a class="code" href="structxccdf__item.html" title="A base class for XCCDF items.">xccdf_item</a> *item);
<a name="l01555"></a>01555 <span class="keywordtype">bool</span> xccdf_item_get_interactive(<span class="keyword">const</span> <span class="keyword">struct</span> <a class="code" href="structxccdf__item.html" title="A base class for XCCDF items.">xccdf_item</a> *item);
<a name="l01559"></a>01559 <span class="keyword">struct </span><a class="code" href="structxccdf__item__iterator.html" title="String iterator.">xccdf_item_iterator</a> *xccdf_item_get_content(<span class="keyword">const</span> <span class="keyword">struct</span> <a class="code" href="structxccdf__item.html" title="A base class for XCCDF items.">xccdf_item</a> *item);
<a name="l01563"></a>01563 <span class="keyword">const</span> <span class="keywordtype">char</span> * xccdf_test_result_type_get_text(<a class="code" href="group__XCCDF.html#gabf34f4480799efc8e1af5f4706d2666d" title="Test result.">xccdf_test_result_type_t</a> <span class="keywordtype">id</span>);
<a name="l01567"></a>01567 <span class="keyword">struct </span><a class="code" href="structxccdf__rule__result.html" title="XCCDF rule result.">xccdf_rule_result</a> * xccdf_result_get_rule_result_by_id(<span class="keyword">struct</span> <a class="code" href="structxccdf__result.html" title="Actual results of running a XCCDF test or profile.">xccdf_result</a> * result, <span class="keyword">const</span> <span class="keywordtype">char</span> * <span class="keywordtype">id</span>);
<a name="l01568"></a>01568
<a name="l01574"></a>01574 <span class="keyword">struct </span><a class="code" href="structxccdf__item.html" title="A base class for XCCDF items.">xccdf_item</a> *<a class="code" href="group__XCCDF.html#ga1aa026748670bdb35f9493309af377d4" title="Return item&#39;s parent in the grouping hierarchy.">xccdf_item_get_parent</a>(<span class="keyword">const</span> <span class="keyword">struct</span> <a class="code" href="structxccdf__item.html" title="A base class for XCCDF items.">xccdf_item</a> *item);
<a name="l01575"></a>01575
<a name="l01579"></a>01579 <span class="keyword">const</span> <span class="keywordtype">char</span> *xccdf_benchmark_get_id(<span class="keyword">const</span> <span class="keyword">struct</span> <a class="code" href="structxccdf__benchmark.html" title="Top level XCCDF structure containing profiles, rules, values and results.">xccdf_benchmark</a> *benchmark);
<a name="l01583"></a>01583 <span class="keywordtype">bool</span> xccdf_benchmark_get_resolved(<span class="keyword">const</span> <span class="keyword">struct</span> <a class="code" href="structxccdf__benchmark.html" title="Top level XCCDF structure containing profiles, rules, values and results.">xccdf_benchmark</a> *benchmark);
<a name="l01587"></a>01587 <span class="keyword">struct </span><a class="code" href="structoscap__text__iterator.html" title="Internationalized string iterator.">oscap_text_iterator</a> *xccdf_benchmark_get_title(<span class="keyword">const</span> <span class="keyword">struct</span> <a class="code" href="structxccdf__benchmark.html" title="Top level XCCDF structure containing profiles, rules, values and results.">xccdf_benchmark</a> *benchmark);
<a name="l01591"></a>01591 <span class="keyword">struct </span><a class="code" href="structoscap__text__iterator.html" title="Internationalized string iterator.">oscap_text_iterator</a> *xccdf_benchmark_get_description(<span class="keyword">const</span> <span class="keyword">struct</span> <a class="code" href="structxccdf__benchmark.html" title="Top level XCCDF structure containing profiles, rules, values and results.">xccdf_benchmark</a> *benchmark);
<a name="l01595"></a>01595 <span class="keyword">const</span> <span class="keywordtype">char</span> *xccdf_benchmark_get_version(<span class="keyword">const</span> <span class="keyword">struct</span> <a class="code" href="structxccdf__benchmark.html" title="Top level XCCDF structure containing profiles, rules, values and results.">xccdf_benchmark</a> *benchmark);
<a name="l01599"></a>01599 <span class="keyword">const</span> <span class="keywordtype">char</span> *xccdf_benchmark_get_style(<span class="keyword">const</span> <span class="keyword">struct</span> <a class="code" href="structxccdf__benchmark.html" title="Top level XCCDF structure containing profiles, rules, values and results.">xccdf_benchmark</a> *benchmark);
<a name="l01603"></a>01603 <span class="keyword">const</span> <span class="keywordtype">char</span> *xccdf_benchmark_get_style_href(<span class="keyword">const</span> <span class="keyword">struct</span> <a class="code" href="structxccdf__benchmark.html" title="Top level XCCDF structure containing profiles, rules, values and results.">xccdf_benchmark</a> *benchmark);
<a name="l01607"></a>01607 <span class="keyword">struct </span><a class="code" href="structoscap__text__iterator.html" title="Internationalized string iterator.">oscap_text_iterator</a> *xccdf_benchmark_get_front_matter(<span class="keyword">const</span> <span class="keyword">struct</span> <a class="code" href="structxccdf__benchmark.html" title="Top level XCCDF structure containing profiles, rules, values and results.">xccdf_benchmark</a> *benchmark);
<a name="l01611"></a>01611 <span class="keyword">struct </span><a class="code" href="structoscap__text__iterator.html" title="Internationalized string iterator.">oscap_text_iterator</a> *xccdf_benchmark_get_rear_matter(<span class="keyword">const</span> <span class="keyword">struct</span> <a class="code" href="structxccdf__benchmark.html" title="Top level XCCDF structure containing profiles, rules, values and results.">xccdf_benchmark</a> *benchmark);
<a name="l01615"></a>01615 <span class="keyword">const</span> <span class="keywordtype">char</span> *xccdf_benchmark_get_metadata(<span class="keyword">const</span> <span class="keyword">struct</span> <a class="code" href="structxccdf__benchmark.html" title="Top level XCCDF structure containing profiles, rules, values and results.">xccdf_benchmark</a> *benchmark);
<a name="l01619"></a>01619 <span class="keyword">struct </span><a class="code" href="structxccdf__status__iterator.html" title="Status iterator.">xccdf_status_iterator</a> *xccdf_benchmark_get_statuses(<span class="keyword">const</span> <span class="keyword">struct</span> <a class="code" href="structxccdf__benchmark.html" title="Top level XCCDF structure containing profiles, rules, values and results.">xccdf_benchmark</a> *benchmark);
<a name="l01623"></a>01623 <span class="keyword">struct </span><a class="code" href="structxccdf__reference__iterator.html" title="Reference iterator.">xccdf_reference_iterator</a> *xccdf_benchmark_get_references(<span class="keyword">const</span> <span class="keyword">struct</span> <a class="code" href="structxccdf__benchmark.html" title="Top level XCCDF structure containing profiles, rules, values and results.">xccdf_benchmark</a> *benchmark);
<a name="l01627"></a>01627 <span class="keyword">struct </span><a class="code" href="structoscap__string__iterator.html" title="String iterator.">oscap_string_iterator</a> *xccdf_benchmark_get_platforms(<span class="keyword">const</span> <span class="keyword">struct</span> <a class="code" href="structxccdf__benchmark.html" title="Top level XCCDF structure containing profiles, rules, values and results.">xccdf_benchmark</a> *benchmark);
<a name="l01631"></a>01631 <a class="code" href="group__XCCDF.html#gac0d5c1c85828e13ebb13935551f8da38" title="Status of an XCCDF item.">xccdf_status_type_t</a> xccdf_benchmark_get_status_current(<span class="keyword">const</span> <span class="keyword">struct</span> <a class="code" href="structxccdf__benchmark.html" title="Top level XCCDF structure containing profiles, rules, values and results.">xccdf_benchmark</a> *benchmark);
<a name="l01635"></a>01635 <span class="keyword">struct </span><a class="code" href="structxccdf__plain__text__iterator.html" title="Plain text iterator.">xccdf_plain_text_iterator</a> *xccdf_benchmark_get_plain_texts(<span class="keyword">const</span> <span class="keyword">struct</span> <a class="code" href="structxccdf__benchmark.html" title="Top level XCCDF structure containing profiles, rules, values and results.">xccdf_benchmark</a> *item);
<a name="l01639"></a>01639 <span class="keyword">struct </span><a class="code" href="structxccdf__result__iterator.html" title="Result iterator.">xccdf_result_iterator</a>* xccdf_benchmark_get_results(<span class="keyword">const</span> <span class="keyword">struct</span> <a class="code" href="structxccdf__benchmark.html" title="Top level XCCDF structure containing profiles, rules, values and results.">xccdf_benchmark</a> *bench);
<a name="l01643"></a>01643 <span class="keyword">struct </span><a class="code" href="structxccdf__value__iterator.html" title="Select iterator.">xccdf_value_iterator</a> *xccdf_benchmark_get_values(<span class="keyword">const</span> <span class="keyword">struct</span> <a class="code" href="structxccdf__benchmark.html" title="Top level XCCDF structure containing profiles, rules, values and results.">xccdf_benchmark</a> *item);
<a name="l01644"></a>01644
<a name="l01652"></a>01652 <span class="keyword">const</span> <span class="keywordtype">char</span> *<a class="code" href="group__XCCDF.html#ga21836d072111dddf9992ae8af5596113" title="Get a plain text by ID.">xccdf_benchmark_get_plain_text</a>(<span class="keyword">const</span> <span class="keyword">struct</span> <a class="code" href="structxccdf__benchmark.html" title="Top level XCCDF structure containing profiles, rules, values and results.">xccdf_benchmark</a> *benchmark, <span class="keyword">const</span> <span class="keywordtype">char</span> *<span class="keywordtype">id</span>);
<a name="l01653"></a>01653
<a name="l01661"></a>01661 <span class="keyword">struct </span><a class="code" href="structxccdf__item.html" title="A base class for XCCDF items.">xccdf_item</a> *<a class="code" href="group__XCCDF.html#ga92afdc66eed4d0c691327da277e9766b" title="Get benchmark item by ID.">xccdf_benchmark_get_item</a>(<span class="keyword">const</span> <span class="keyword">struct</span> <a class="code" href="structxccdf__benchmark.html" title="Top level XCCDF structure containing profiles, rules, values and results.">xccdf_benchmark</a> *benchmark, <span class="keyword">const</span> <span class="keywordtype">char</span> *<span class="keywordtype">id</span>);
<a name="l01662"></a>01662
<a name="l01668"></a>01668 <span class="keyword">struct </span><a class="code" href="structxccdf__notice__iterator.html" title="Notice iterator.">xccdf_notice_iterator</a> *<a class="code" href="group__XCCDF.html#ga344d2b339d28f8a86cc95c0b437709ea" title="Get an iterator to the benchmark legal notices.">xccdf_benchmark_get_notices</a>(<span class="keyword">const</span> <span class="keyword">struct</span> <a class="code" href="structxccdf__benchmark.html" title="Top level XCCDF structure containing profiles, rules, values and results.">xccdf_benchmark</a> *benchmark);
<a name="l01669"></a>01669
<a name="l01675"></a>01675 <span class="keyword">struct </span><a class="code" href="structxccdf__model__iterator.html" title="Model iterator.">xccdf_model_iterator</a> *<a class="code" href="group__XCCDF.html#gad1691a19de813ff391c455b651cd6162" title="Get an iterator to the benchmark scoring models.">xccdf_benchmark_get_models</a>(<span class="keyword">const</span> <span class="keyword">struct</span> <a class="code" href="structxccdf__benchmark.html" title="Top level XCCDF structure containing profiles, rules, values and results.">xccdf_benchmark</a> *benchmark);
<a name="l01676"></a>01676
<a name="l01682"></a>01682 <span class="keyword">struct </span><a class="code" href="structxccdf__profile__iterator.html" title="Profile iterator.">xccdf_profile_iterator</a> *<a class="code" href="group__XCCDF.html#ga9e2fce5908a4955f7ab291d7a9b4e3db" title="Get an iterator to the benchmark XCCDF profiles.">xccdf_benchmark_get_profiles</a>(<span class="keyword">const</span> <span class="keyword">struct</span> <a class="code" href="structxccdf__benchmark.html" title="Top level XCCDF structure containing profiles, rules, values and results.">xccdf_benchmark</a> *benchmark);
<a name="l01683"></a>01683
<a name="l01691"></a>01691 <span class="keyword">struct </span><a class="code" href="structxccdf__item__iterator.html" title="String iterator.">xccdf_item_iterator</a> *<a class="code" href="group__XCCDF.html#ga986e534558ef85b903abbbea65bcd0dd" title="Get an iterator to the bencmark content.">xccdf_benchmark_get_content</a>(<span class="keyword">const</span> <span class="keyword">struct</span> <a class="code" href="structxccdf__benchmark.html" title="Top level XCCDF structure containing profiles, rules, values and results.">xccdf_benchmark</a> *benchmark);
<a name="l01692"></a>01692
<a name="l01696"></a>01696 <span class="keyword">const</span> <span class="keywordtype">char</span> *xccdf_profile_get_id(<span class="keyword">const</span> <span class="keyword">struct</span> <a class="code" href="structxccdf__profile.html" title="XCCDF profile is a set of tests and their settings in a compact package.">xccdf_profile</a> *profile);
<a name="l01700"></a>01700 <span class="keyword">struct </span><a class="code" href="structoscap__text__iterator.html" title="Internationalized string iterator.">oscap_text_iterator</a> *xccdf_profile_get_title(<span class="keyword">const</span> <span class="keyword">struct</span> <a class="code" href="structxccdf__profile.html" title="XCCDF profile is a set of tests and their settings in a compact package.">xccdf_profile</a> *profile);
<a name="l01704"></a>01704 <span class="keyword">struct </span><a class="code" href="structoscap__text__iterator.html" title="Internationalized string iterator.">oscap_text_iterator</a> *xccdf_profile_get_description(<span class="keyword">const</span> <span class="keyword">struct</span> <a class="code" href="structxccdf__profile.html" title="XCCDF profile is a set of tests and their settings in a compact package.">xccdf_profile</a> *profile);
<a name="l01708"></a>01708 <span class="keyword">const</span> <span class="keywordtype">char</span> *xccdf_profile_get_version(<span class="keyword">const</span> <span class="keyword">struct</span> <a class="code" href="structxccdf__profile.html" title="XCCDF profile is a set of tests and their settings in a compact package.">xccdf_profile</a> *profile);
<a name="l01712"></a>01712 <span class="keyword">const</span> <span class="keywordtype">char</span> *xccdf_profile_get_extends(<span class="keyword">const</span> <span class="keyword">struct</span> <a class="code" href="structxccdf__profile.html" title="XCCDF profile is a set of tests and their settings in a compact package.">xccdf_profile</a> *profile);
<a name="l01716"></a>01716 <span class="keyword">struct </span><a class="code" href="structxccdf__benchmark.html" title="Top level XCCDF structure containing profiles, rules, values and results.">xccdf_benchmark</a> *xccdf_profile_get_benchmark(<span class="keyword">const</span> <span class="keyword">struct</span> <a class="code" href="structxccdf__profile.html" title="XCCDF profile is a set of tests and their settings in a compact package.">xccdf_profile</a> *profile);
<a name="l01720"></a>01720 <span class="keywordtype">bool</span> xccdf_profile_get_abstract(<span class="keyword">const</span> <span class="keyword">struct</span> <a class="code" href="structxccdf__profile.html" title="XCCDF profile is a set of tests and their settings in a compact package.">xccdf_profile</a> *profile);
<a name="l01724"></a>01724 <span class="keywordtype">bool</span> xccdf_profile_get_prohibit_changes(<span class="keyword">const</span> <span class="keyword">struct</span> <a class="code" href="structxccdf__profile.html" title="XCCDF profile is a set of tests and their settings in a compact package.">xccdf_profile</a> *profile);
<a name="l01728"></a>01728 <span class="keyword">struct </span><a class="code" href="structoscap__string__iterator.html" title="String iterator.">oscap_string_iterator</a> *xccdf_profile_get_platforms(<span class="keyword">const</span> <span class="keyword">struct</span> <a class="code" href="structxccdf__profile.html" title="XCCDF profile is a set of tests and their settings in a compact package.">xccdf_profile</a> *profile);
<a name="l01732"></a>01732 <span class="keyword">struct </span><a class="code" href="structxccdf__status__iterator.html" title="Status iterator.">xccdf_status_iterator</a> *xccdf_profile_get_statuses(<span class="keyword">const</span> <span class="keyword">struct</span> <a class="code" href="structxccdf__profile.html" title="XCCDF profile is a set of tests and their settings in a compact package.">xccdf_profile</a> *profile);
<a name="l01736"></a>01736 <span class="keyword">struct </span><a class="code" href="structxccdf__reference__iterator.html" title="Reference iterator.">xccdf_reference_iterator</a> *xccdf_profile_get_references(<span class="keyword">const</span> <span class="keyword">struct</span> <a class="code" href="structxccdf__profile.html" title="XCCDF profile is a set of tests and their settings in a compact package.">xccdf_profile</a> *profile);
<a name="l01740"></a>01740 <a class="code" href="group__XCCDF.html#gac0d5c1c85828e13ebb13935551f8da38" title="Status of an XCCDF item.">xccdf_status_type_t</a> xccdf_profile_get_status_current(<span class="keyword">const</span> <span class="keyword">struct</span> <a class="code" href="structxccdf__profile.html" title="XCCDF profile is a set of tests and their settings in a compact package.">xccdf_profile</a> *profile);
<a name="l01744"></a>01744 <span class="comment">/* const char* xccdf_profile_note_get_tag(const struct xccdf_profile* profile); TODO */</span>
<a name="l01748"></a>01748 <span class="keyword">struct </span><a class="code" href="structxccdf__select__iterator.html" title="Select iterator.">xccdf_select_iterator</a> *xccdf_profile_get_selects(<span class="keyword">const</span> <span class="keyword">struct</span> <a class="code" href="structxccdf__profile.html" title="XCCDF profile is a set of tests and their settings in a compact package.">xccdf_profile</a> *profile);
<a name="l01752"></a>01752 <span class="keyword">struct </span><a class="code" href="structxccdf__setvalue__iterator.html" title="Set value iterator.">xccdf_setvalue_iterator</a> *xccdf_profile_get_setvalues(<span class="keyword">const</span> <span class="keyword">struct</span> <a class="code" href="structxccdf__profile.html" title="XCCDF profile is a set of tests and their settings in a compact package.">xccdf_profile</a> *profile);
<a name="l01756"></a>01756 <span class="keyword">struct </span><a class="code" href="structxccdf__refine__value__iterator.html" title="Refine value iterator.">xccdf_refine_value_iterator</a> *xccdf_profile_get_refine_values(<span class="keyword">const</span> <span class="keyword">struct</span> <a class="code" href="structxccdf__profile.html" title="XCCDF profile is a set of tests and their settings in a compact package.">xccdf_profile</a> *profile);
<a name="l01760"></a>01760 <span class="keyword">struct </span><a class="code" href="structxccdf__refine__rule__iterator.html" title="Refine rule iterator.">xccdf_refine_rule_iterator</a> *xccdf_profile_get_refine_rules(<span class="keyword">const</span> <span class="keyword">struct</span> <a class="code" href="structxccdf__profile.html" title="XCCDF profile is a set of tests and their settings in a compact package.">xccdf_profile</a> *profile);
<a name="l01761"></a>01761
<a name="l01767"></a>01767 <span class="keyword">struct </span><a class="code" href="structxccdf__item.html" title="A base class for XCCDF items.">xccdf_item</a> *<a class="code" href="group__XCCDF.html#ga817439e4ec92778e51c0e072953cde26" title="Return rule&#39;s parent in the grouping hierarchy.">xccdf_rule_get_parent</a>(<span class="keyword">const</span> <span class="keyword">struct</span> <a class="code" href="structxccdf__rule.html" title="XCCDF rule defines a test execution.">xccdf_rule</a> *rule);
<a name="l01768"></a>01768
<a name="l01772"></a>01772 <span class="keyword">const</span> <span class="keywordtype">char</span> *xccdf_rule_get_id(<span class="keyword">const</span> <span class="keyword">struct</span> <a class="code" href="structxccdf__rule.html" title="XCCDF rule defines a test execution.">xccdf_rule</a> *rule);
<a name="l01776"></a>01776 <span class="keyword">struct </span><a class="code" href="structoscap__text__iterator.html" title="Internationalized string iterator.">oscap_text_iterator</a> *xccdf_rule_get_title(<span class="keyword">const</span> <span class="keyword">struct</span> <a class="code" href="structxccdf__rule.html" title="XCCDF rule defines a test execution.">xccdf_rule</a> *rule);
<a name="l01780"></a>01780 <span class="keyword">struct </span><a class="code" href="structoscap__text__iterator.html" title="Internationalized string iterator.">oscap_text_iterator</a> *xccdf_rule_get_description(<span class="keyword">const</span> <span class="keyword">struct</span> <a class="code" href="structxccdf__rule.html" title="XCCDF rule defines a test execution.">xccdf_rule</a> *rule);
<a name="l01784"></a>01784 <span class="keyword">const</span> <span class="keywordtype">char</span> *xccdf_rule_get_version(<span class="keyword">const</span> <span class="keyword">struct</span> <a class="code" href="structxccdf__rule.html" title="XCCDF rule defines a test execution.">xccdf_rule</a> *rule);
<a name="l01788"></a>01788 <span class="keyword">struct </span><a class="code" href="structoscap__text__iterator.html" title="Internationalized string iterator.">oscap_text_iterator</a> *xccdf_rule_get_question(<span class="keyword">const</span> <span class="keyword">struct</span> <a class="code" href="structxccdf__rule.html" title="XCCDF rule defines a test execution.">xccdf_rule</a> *rule);
<a name="l01792"></a>01792 <span class="keyword">struct </span><a class="code" href="structxccdf__warning__iterator.html" title="Warning iterator.">xccdf_warning_iterator</a> *xccdf_rule_get_warnings(<span class="keyword">const</span> <span class="keyword">struct</span> <a class="code" href="structxccdf__rule.html" title="XCCDF rule defines a test execution.">xccdf_rule</a> *rule);
<a name="l01796"></a>01796 <span class="keyword">struct </span><a class="code" href="structoscap__text__iterator.html" title="Internationalized string iterator.">oscap_text_iterator</a> *xccdf_rule_get_rationale(<span class="keyword">const</span> <span class="keyword">struct</span> <a class="code" href="structxccdf__rule.html" title="XCCDF rule defines a test execution.">xccdf_rule</a> *rule);
<a name="l01800"></a>01800 <span class="keyword">const</span> <span class="keywordtype">char</span> *xccdf_rule_get_cluster_id(<span class="keyword">const</span> <span class="keyword">struct</span> <a class="code" href="structxccdf__rule.html" title="XCCDF rule defines a test execution.">xccdf_rule</a> *rule);
<a name="l01804"></a>01804 <span class="keywordtype">float</span> xccdf_rule_get_weight(<span class="keyword">const</span> <span class="keyword">struct</span> <a class="code" href="structxccdf__rule.html" title="XCCDF rule defines a test execution.">xccdf_rule</a> *rule);
<a name="l01808"></a>01808 <span class="keywordtype">bool</span> xccdf_rule_set_weight(<span class="keyword">struct</span> <a class="code" href="structxccdf__rule.html" title="XCCDF rule defines a test execution.">xccdf_rule</a> *item, <a class="code" href="group__XCCDF.html#ga83ab7d5052d01468f373732e268f47b4" title="Type of a numerical content for a XCCDF value.">xccdf_numeric</a> newval);
<a name="l01812"></a>01812 <span class="keyword">const</span> <span class="keywordtype">char</span> *xccdf_rule_get_extends(<span class="keyword">const</span> <span class="keyword">struct</span> <a class="code" href="structxccdf__rule.html" title="XCCDF rule defines a test execution.">xccdf_rule</a> *rule);
<a name="l01816"></a>01816 <span class="keywordtype">bool</span> xccdf_rule_get_abstract(<span class="keyword">const</span> <span class="keyword">struct</span> <a class="code" href="structxccdf__rule.html" title="XCCDF rule defines a test execution.">xccdf_rule</a> *rule);
<a name="l01820"></a>01820 <span class="keywordtype">bool</span> xccdf_rule_get_prohibit_changes(<span class="keyword">const</span> <span class="keyword">struct</span> <a class="code" href="structxccdf__rule.html" title="XCCDF rule defines a test execution.">xccdf_rule</a> *rule);
<a name="l01824"></a>01824 <span class="keywordtype">bool</span> xccdf_rule_get_hidden(<span class="keyword">const</span> <span class="keyword">struct</span> <a class="code" href="structxccdf__rule.html" title="XCCDF rule defines a test execution.">xccdf_rule</a> *rule);
<a name="l01828"></a>01828 <span class="keywordtype">bool</span> xccdf_rule_get_selected(<span class="keyword">const</span> <span class="keyword">struct</span> <a class="code" href="structxccdf__rule.html" title="XCCDF rule defines a test execution.">xccdf_rule</a> *rule);
<a name="l01832"></a>01832 <span class="keywordtype">bool</span> xccdf_rule_get_multiple(<span class="keyword">const</span> <span class="keyword">struct</span> <a class="code" href="structxccdf__rule.html" title="XCCDF rule defines a test execution.">xccdf_rule</a> *rule);
<a name="l01836"></a>01836 <span class="keyword">struct </span><a class="code" href="structoscap__string__iterator.html" title="String iterator.">oscap_string_iterator</a> *xccdf_rule_get_platforms(<span class="keyword">const</span> <span class="keyword">struct</span> <a class="code" href="structxccdf__rule.html" title="XCCDF rule defines a test execution.">xccdf_rule</a> *rule);
<a name="l01840"></a>01840 <span class="keyword">struct </span><a class="code" href="structxccdf__status__iterator.html" title="Status iterator.">xccdf_status_iterator</a> *xccdf_rule_get_statuses(<span class="keyword">const</span> <span class="keyword">struct</span> <a class="code" href="structxccdf__rule.html" title="XCCDF rule defines a test execution.">xccdf_rule</a> *rule);
<a name="l01844"></a>01844 <span class="keyword">struct </span><a class="code" href="structxccdf__reference__iterator.html" title="Reference iterator.">xccdf_reference_iterator</a> *xccdf_rule_get_references(<span class="keyword">const</span> <span class="keyword">struct</span> <a class="code" href="structxccdf__rule.html" title="XCCDF rule defines a test execution.">xccdf_rule</a> *rule);
<a name="l01848"></a>01848 <a class="code" href="group__XCCDF.html#gac0d5c1c85828e13ebb13935551f8da38" title="Status of an XCCDF item.">xccdf_status_type_t</a> xccdf_rule_get_status_current(<span class="keyword">const</span> <span class="keyword">struct</span> <a class="code" href="structxccdf__rule.html" title="XCCDF rule defines a test execution.">xccdf_rule</a> *rule);
<a name="l01852"></a>01852 <span class="keyword">const</span> <span class="keywordtype">char</span> *xccdf_rule_get_impact_metric(<span class="keyword">const</span> <span class="keyword">struct</span> <a class="code" href="structxccdf__rule.html" title="XCCDF rule defines a test execution.">xccdf_rule</a> *rule);
<a name="l01856"></a>01856 <a class="code" href="group__XCCDF.html#ga6cb5c6fdd0ccc42b1c8cec5313df5804" title="XCCDF role.">xccdf_role_t</a> xccdf_rule_get_role(<span class="keyword">const</span> <span class="keyword">struct</span> <a class="code" href="structxccdf__rule.html" title="XCCDF rule defines a test execution.">xccdf_rule</a> *rule);
<a name="l01860"></a>01860 <a class="code" href="group__XCCDF.html#ga209163661038a6be4066cdec716c997f" title="XCCDF error, complexity, disruption, or severity level.">xccdf_level_t</a> xccdf_rule_get_severity(<span class="keyword">const</span> <span class="keyword">struct</span> <a class="code" href="structxccdf__rule.html" title="XCCDF rule defines a test execution.">xccdf_rule</a> *rule);
<a name="l01864"></a>01864 <span class="keyword">struct </span><a class="code" href="structxccdf__ident__iterator.html" title="Ident iterator.">xccdf_ident_iterator</a> *xccdf_rule_get_idents(<span class="keyword">const</span> <span class="keyword">struct</span> <a class="code" href="structxccdf__rule.html" title="XCCDF rule defines a test execution.">xccdf_rule</a> *rule);
<a name="l01868"></a>01868 <span class="keyword">struct </span><a class="code" href="structxccdf__check__iterator.html" title="Check iterator.">xccdf_check_iterator</a> *xccdf_rule_get_checks(<span class="keyword">const</span> <span class="keyword">struct</span> <a class="code" href="structxccdf__rule.html" title="XCCDF rule defines a test execution.">xccdf_rule</a> *rule);
<a name="l01872"></a>01872 <span class="keyword">struct </span><a class="code" href="structxccdf__profile__note__iterator.html" title="Profile note iterator.">xccdf_profile_note_iterator</a> *xccdf_rule_get_profile_notes(<span class="keyword">const</span> <span class="keyword">struct</span> <a class="code" href="structxccdf__rule.html" title="XCCDF rule defines a test execution.">xccdf_rule</a> *rule);
<a name="l01876"></a>01876 <span class="keyword">struct </span><a class="code" href="structxccdf__fix__iterator.html" title="Fix iterator.">xccdf_fix_iterator</a> *xccdf_rule_get_fixes(<span class="keyword">const</span> <span class="keyword">struct</span> <a class="code" href="structxccdf__rule.html" title="XCCDF rule defines a test execution.">xccdf_rule</a> *rule);
<a name="l01880"></a>01880 <span class="keyword">struct </span><a class="code" href="structxccdf__fixtext__iterator.html" title="Textual fix iterator.">xccdf_fixtext_iterator</a> *xccdf_rule_get_fixtexts(<span class="keyword">const</span> <span class="keyword">struct</span> <a class="code" href="structxccdf__rule.html" title="XCCDF rule defines a test execution.">xccdf_rule</a> *rule);
<a name="l01884"></a>01884 <span class="keyword">struct </span><a class="code" href="structoscap__string__iterator.html" title="String iterator.">oscap_string_iterator</a> *xccdf_rule_get_conflicts(<span class="keyword">const</span> <span class="keyword">struct</span> <a class="code" href="structxccdf__rule.html" title="XCCDF rule defines a test execution.">xccdf_rule</a>* rule);
<a name="l01888"></a>01888 <span class="keyword">struct </span><a class="code" href="structoscap__stringlist__iterator.html" title="Iterator over collections of strings.">oscap_stringlist_iterator</a> *xccdf_rule_get_requires(<span class="keyword">const</span> <span class="keyword">struct</span> <a class="code" href="structxccdf__rule.html" title="XCCDF rule defines a test execution.">xccdf_rule</a>* rule);
<a name="l01889"></a>01889
<a name="l01890"></a>01890 <span class="comment">/*</span>
<a name="l01891"></a>01891 <span class="comment"> * Return group's parent in the grouping hierarchy.</span>
<a name="l01892"></a>01892 <span class="comment"> * Returned item will be either a group or a benchmark.</span>
<a name="l01893"></a>01893 <span class="comment"> * @memberof xccdf_group</span>
<a name="l01894"></a>01894 <span class="comment"> */</span>
<a name="l01895"></a>01895 <span class="keyword">struct </span><a class="code" href="structxccdf__item.html" title="A base class for XCCDF items.">xccdf_item</a> *xccdf_group_get_parent(<span class="keyword">const</span> <span class="keyword">struct</span> <a class="code" href="structxccdf__group.html" title="XCCDF rule group.">xccdf_group</a> *group);
<a name="l01896"></a>01896
<a name="l01904"></a>01904 <span class="keyword">struct </span><a class="code" href="structxccdf__item__iterator.html" title="String iterator.">xccdf_item_iterator</a> *<a class="code" href="group__XCCDF.html#ga6728f6c147d5a3357fffa676774e1296" title="Get an iterator to the group content.">xccdf_group_get_content</a>(<span class="keyword">const</span> <span class="keyword">struct</span> <a class="code" href="structxccdf__group.html" title="XCCDF rule group.">xccdf_group</a> *group);
<a name="l01905"></a>01905
<a name="l01907"></a>01907 <span class="keyword">struct </span><a class="code" href="structxccdf__value__iterator.html" title="Select iterator.">xccdf_value_iterator</a> *<a class="code" href="group__XCCDF.html#ga71a25cc18488f10ef56673c207a6b54b">xccdf_group_get_values</a>(<span class="keyword">const</span> <span class="keyword">struct</span> <a class="code" href="structxccdf__group.html" title="XCCDF rule group.">xccdf_group</a> *group);
<a name="l01908"></a>01908
<a name="l01910"></a>01910 <span class="keyword">const</span> <span class="keywordtype">char</span> *<a class="code" href="group__XCCDF.html#ga7db0efc44706522ad521afdaa413ea7a">xccdf_group_get_id</a>(<span class="keyword">const</span> <span class="keyword">struct</span> <a class="code" href="structxccdf__group.html" title="XCCDF rule group.">xccdf_group</a> *group);
<a name="l01912"></a>01912 <span class="keyword">struct </span><a class="code" href="structoscap__text__iterator.html" title="Internationalized string iterator.">oscap_text_iterator</a> *<a class="code" href="group__XCCDF.html#ga26bb90f0e45f1c1614fd50e8f5b10e0a">xccdf_group_get_title</a>(<span class="keyword">const</span> <span class="keyword">struct</span> <a class="code" href="structxccdf__group.html" title="XCCDF rule group.">xccdf_group</a> *group);
<a name="l01914"></a>01914 <span class="keyword">struct </span><a class="code" href="structoscap__text__iterator.html" title="Internationalized string iterator.">oscap_text_iterator</a> *<a class="code" href="group__XCCDF.html#ga30e354d6dabf58a12d792c2b2e98753e">xccdf_group_get_description</a>(<span class="keyword">const</span> <span class="keyword">struct</span> <a class="code" href="structxccdf__group.html" title="XCCDF rule group.">xccdf_group</a> *group);
<a name="l01916"></a>01916 <span class="keyword">const</span> <span class="keywordtype">char</span> *<a class="code" href="group__XCCDF.html#gaa364f63342426cb51e94466ccbfe515e">xccdf_group_get_version</a>(<span class="keyword">const</span> <span class="keyword">struct</span> <a class="code" href="structxccdf__group.html" title="XCCDF rule group.">xccdf_group</a> *group);
<a name="l01918"></a>01918 <span class="keyword">struct </span><a class="code" href="structoscap__text__iterator.html" title="Internationalized string iterator.">oscap_text_iterator</a> *<a class="code" href="group__XCCDF.html#ga1b7bca8cb54fffd42a15a4f72f0acdd4">xccdf_group_get_question</a>(<span class="keyword">const</span> <span class="keyword">struct</span> <a class="code" href="structxccdf__group.html" title="XCCDF rule group.">xccdf_group</a> *group);
<a name="l01920"></a>01920 <span class="keyword">struct </span><a class="code" href="structxccdf__warning__iterator.html" title="Warning iterator.">xccdf_warning_iterator</a> *<a class="code" href="group__XCCDF.html#ga5f25b8172e9aa2582d854795f3fa4115">xccdf_group_get_warnings</a>(<span class="keyword">const</span> <span class="keyword">struct</span> <a class="code" href="structxccdf__group.html" title="XCCDF rule group.">xccdf_group</a> *group);
<a name="l01922"></a>01922 <span class="keyword">struct </span><a class="code" href="structoscap__text__iterator.html" title="Internationalized string iterator.">oscap_text_iterator</a> *<a class="code" href="group__XCCDF.html#ga5ff56d91f1eaa842b5308248b29c9531">xccdf_group_get_rationale</a>(<span class="keyword">const</span> <span class="keyword">struct</span> <a class="code" href="structxccdf__group.html" title="XCCDF rule group.">xccdf_group</a> *group);
<a name="l01924"></a>01924 <span class="keyword">const</span> <span class="keywordtype">char</span> *<a class="code" href="group__XCCDF.html#gacd5df895dc1734a6e0e71a1e7cd8d6c3">xccdf_group_get_cluster_id</a>(<span class="keyword">const</span> <span class="keyword">struct</span> <a class="code" href="structxccdf__group.html" title="XCCDF rule group.">xccdf_group</a> *group);
<a name="l01926"></a>01926 <span class="keywordtype">float</span> <a class="code" href="group__XCCDF.html#gadb21352fb50a8a5e77fe3745797d0635">xccdf_group_get_weight</a>(<span class="keyword">const</span> <span class="keyword">struct</span> <a class="code" href="structxccdf__group.html" title="XCCDF rule group.">xccdf_group</a> *group);
<a name="l01928"></a>01928 <span class="keywordtype">bool</span> <a class="code" href="group__XCCDF.html#gabf467e5cdb3165963d55ea3c6d085a83">xccdf_group_set_weight</a>(<span class="keyword">struct</span> <a class="code" href="structxccdf__group.html" title="XCCDF rule group.">xccdf_group</a> *item, <a class="code" href="group__XCCDF.html#ga83ab7d5052d01468f373732e268f47b4" title="Type of a numerical content for a XCCDF value.">xccdf_numeric</a> newval);
<a name="l01930"></a>01930 <span class="keyword">const</span> <span class="keywordtype">char</span> *<a class="code" href="group__XCCDF.html#ga27ab5489949fb35a9bf9cc090907eb3e">xccdf_group_get_extends</a>(<span class="keyword">const</span> <span class="keyword">struct</span> <a class="code" href="structxccdf__group.html" title="XCCDF rule group.">xccdf_group</a> *group);
<a name="l01932"></a>01932 <span class="keywordtype">bool</span> <a class="code" href="group__XCCDF.html#gad7843680e07ceae1c86473eb93db2af2">xccdf_group_get_abstract</a>(<span class="keyword">const</span> <span class="keyword">struct</span> <a class="code" href="structxccdf__group.html" title="XCCDF rule group.">xccdf_group</a> *group);
<a name="l01934"></a>01934 <span class="keywordtype">bool</span> <a class="code" href="group__XCCDF.html#ga02f2415de16636ad2fa220f926794e42">xccdf_group_get_prohibit_changes</a>(<span class="keyword">const</span> <span class="keyword">struct</span> <a class="code" href="structxccdf__group.html" title="XCCDF rule group.">xccdf_group</a> *group);
<a name="l01936"></a>01936 <span class="keywordtype">bool</span> <a class="code" href="group__XCCDF.html#gae65b54804365e0ca261b5f6071850c61">xccdf_group_get_hidden</a>(<span class="keyword">const</span> <span class="keyword">struct</span> <a class="code" href="structxccdf__group.html" title="XCCDF rule group.">xccdf_group</a> *group);
<a name="l01938"></a>01938 <span class="keywordtype">bool</span> <a class="code" href="group__XCCDF.html#ga6ab4b70786c635e329b8ac23e6ed2f59">xccdf_group_get_selected</a>(<span class="keyword">const</span> <span class="keyword">struct</span> <a class="code" href="structxccdf__group.html" title="XCCDF rule group.">xccdf_group</a> *group);
<a name="l01940"></a>01940 <span class="keyword">struct </span><a class="code" href="structoscap__string__iterator.html" title="String iterator.">oscap_string_iterator</a> *<a class="code" href="group__XCCDF.html#ga6bc6890dda0ed85700ee384b3c193f46">xccdf_group_get_platforms</a>(<span class="keyword">const</span> <span class="keyword">struct</span> <a class="code" href="structxccdf__group.html" title="XCCDF rule group.">xccdf_group</a> *group);
<a name="l01942"></a>01942 <span class="keyword">struct </span><a class="code" href="structxccdf__status__iterator.html" title="Status iterator.">xccdf_status_iterator</a> *<a class="code" href="group__XCCDF.html#gacc7131723b9fe2450cb653d55a4d19ca">xccdf_group_get_statuses</a>(<span class="keyword">const</span> <span class="keyword">struct</span> <a class="code" href="structxccdf__group.html" title="XCCDF rule group.">xccdf_group</a> *group);
<a name="l01944"></a>01944 <span class="keyword">struct </span><a class="code" href="structxccdf__reference__iterator.html" title="Reference iterator.">xccdf_reference_iterator</a> *<a class="code" href="group__XCCDF.html#ga4a7be730880c3ffb80a66071a6ff477a">xccdf_group_get_references</a>(<span class="keyword">const</span> <span class="keyword">struct</span> <a class="code" href="structxccdf__group.html" title="XCCDF rule group.">xccdf_group</a> *group);
<a name="l01946"></a>01946 <a class="code" href="group__XCCDF.html#gac0d5c1c85828e13ebb13935551f8da38" title="Status of an XCCDF item.">xccdf_status_type_t</a> <a class="code" href="group__XCCDF.html#ga8b9852e490a31cc8a190ccf616a26862">xccdf_group_get_status_current</a>(<span class="keyword">const</span> <span class="keyword">struct</span> <a class="code" href="structxccdf__group.html" title="XCCDF rule group.">xccdf_group</a> *group);
<a name="l01948"></a>01948 <span class="keyword">struct </span><a class="code" href="structoscap__string__iterator.html" title="String iterator.">oscap_string_iterator</a> *<a class="code" href="group__XCCDF.html#ga039ccb5f113bcd0ee1cb103f28d9c443">xccdf_group_get_conflicts</a>(<span class="keyword">const</span> <span class="keyword">struct</span> <a class="code" href="structxccdf__group.html" title="XCCDF rule group.">xccdf_group</a>* group);
<a name="l01950"></a>01950 <span class="keyword">struct </span><a class="code" href="structoscap__stringlist__iterator.html" title="Iterator over collections of strings.">oscap_stringlist_iterator</a> *<a class="code" href="group__XCCDF.html#ga3c045d98f388b379181110e87b721080">xccdf_group_get_requires</a>(<span class="keyword">const</span> <span class="keyword">struct</span> <a class="code" href="structxccdf__group.html" title="XCCDF rule group.">xccdf_group</a>* group);
<a name="l01951"></a>01951
<a name="l01953"></a>01953 <span class="keyword">struct </span><a class="code" href="structoscap__text__iterator.html" title="Internationalized string iterator.">oscap_text_iterator</a> *<a class="code" href="group__XCCDF.html#gaf8ec5041c7685a2a15f1e98560a1c12f">xccdf_value_get_title</a>(<span class="keyword">const</span> <span class="keyword">struct</span> <a class="code" href="structxccdf__value.html" title="XCCDF Value allows test parametrization or capturing output of tests.">xccdf_value</a> *value);
<a name="l01955"></a>01955 <span class="keyword">const</span> <span class="keywordtype">char</span> *<a class="code" href="group__XCCDF.html#ga24589b2df9508d1d849fcc94d2dfce6d">xccdf_value_get_id</a>(<span class="keyword">const</span> <span class="keyword">struct</span> <a class="code" href="structxccdf__value.html" title="XCCDF Value allows test parametrization or capturing output of tests.">xccdf_value</a> *value);
<a name="l01957"></a>01957 <span class="keyword">struct </span><a class="code" href="structoscap__text__iterator.html" title="Internationalized string iterator.">oscap_text_iterator</a> *<a class="code" href="group__XCCDF.html#gaa0aa3640b18fe31b045d5e6f1d1cb6ca">xccdf_value_get_description</a>(<span class="keyword">const</span> <span class="keyword">struct</span> <a class="code" href="structxccdf__value.html" title="XCCDF Value allows test parametrization or capturing output of tests.">xccdf_value</a> *value);
<a name="l01959"></a>01959 <span class="keyword">const</span> <span class="keywordtype">char</span> *<a class="code" href="group__XCCDF.html#gac34c93a463fa23916367974068c7d3fe">xccdf_value_get_extends</a>(<span class="keyword">const</span> <span class="keyword">struct</span> <a class="code" href="structxccdf__value.html" title="XCCDF Value allows test parametrization or capturing output of tests.">xccdf_value</a> *value);
<a name="l01961"></a>01961 <span class="keywordtype">bool</span> <a class="code" href="group__XCCDF.html#gab6dee71045b36f274793aafef5fbb860">xccdf_value_get_abstract</a>(<span class="keyword">const</span> <span class="keyword">struct</span> <a class="code" href="structxccdf__value.html" title="XCCDF Value allows test parametrization or capturing output of tests.">xccdf_value</a> *value);
<a name="l01963"></a>01963 <span class="keywordtype">bool</span> <a class="code" href="group__XCCDF.html#gaa32f1e98eb87cbcff9f3a23aee7c81bd">xccdf_value_get_prohibit_changes</a>(<span class="keyword">const</span> <span class="keyword">struct</span> <a class="code" href="structxccdf__value.html" title="XCCDF Value allows test parametrization or capturing output of tests.">xccdf_value</a> *value);
<a name="l01965"></a>01965 <span class="keywordtype">bool</span> <a class="code" href="group__XCCDF.html#ga1d672777099e90af7e5b59d2e915b4c3">xccdf_value_get_hidden</a>(<span class="keyword">const</span> <span class="keyword">struct</span> <a class="code" href="structxccdf__value.html" title="XCCDF Value allows test parametrization or capturing output of tests.">xccdf_value</a> *value);
<a name="l01967"></a>01967 <span class="keywordtype">bool</span> <a class="code" href="group__XCCDF.html#ga569d0a208e0330c7dfd95805154d5824">xccdf_value_get_interactive</a>(<span class="keyword">const</span> <span class="keyword">struct</span> <a class="code" href="structxccdf__value.html" title="XCCDF Value allows test parametrization or capturing output of tests.">xccdf_value</a> *value);
<a name="l01969"></a>01969 <span class="keyword">struct </span><a class="code" href="structxccdf__status__iterator.html" title="Status iterator.">xccdf_status_iterator</a> *<a class="code" href="group__XCCDF.html#gab09781ac557495cef4ac97c3d9d3ae7d">xccdf_value_get_statuses</a>(<span class="keyword">const</span> <span class="keyword">struct</span> <a class="code" href="structxccdf__value.html" title="XCCDF Value allows test parametrization or capturing output of tests.">xccdf_value</a> *value);
<a name="l01971"></a>01971 <span class="keyword">struct </span><a class="code" href="structxccdf__reference__iterator.html" title="Reference iterator.">xccdf_reference_iterator</a> *<a class="code" href="group__XCCDF.html#ga94df2d4947539164fcd20f844b714c89">xccdf_value_get_references</a>(<span class="keyword">const</span> <span class="keyword">struct</span> <a class="code" href="structxccdf__value.html" title="XCCDF Value allows test parametrization or capturing output of tests.">xccdf_value</a> *value);
<a name="l01973"></a>01973 <a class="code" href="group__XCCDF.html#gac0d5c1c85828e13ebb13935551f8da38" title="Status of an XCCDF item.">xccdf_status_type_t</a> <a class="code" href="group__XCCDF.html#ga0f89346d84439b56c0c1bfceaba2b46c">xccdf_value_get_status_current</a>(<span class="keyword">const</span> <span class="keyword">struct</span> <a class="code" href="structxccdf__value.html" title="XCCDF Value allows test parametrization or capturing output of tests.">xccdf_value</a> *value);
<a name="l01975"></a>01975 <a class="code" href="group__XCCDF.html#gaa2d75ea6d3cd6957100f532b2ab8e8a8" title="Type of an xccdf_value.">xccdf_value_type_t</a> <a class="code" href="group__XCCDF.html#gaf8b141e53cf56104124f7182751e36cd">xccdf_value_get_type</a>(<span class="keyword">const</span> <span class="keyword">struct</span> <a class="code" href="structxccdf__value.html" title="XCCDF Value allows test parametrization or capturing output of tests.">xccdf_value</a> *value);
<a name="l01977"></a>01977 <a class="code" href="group__XCCDF.html#ga11b376c782488525bddcfafa3bb92b96" title="Interface hint.">xccdf_interface_hint_t</a> <a class="code" href="group__XCCDF.html#ga4c2a287faf8c70346f84d648765443ce">xccdf_value_get_interface_hint</a>(<span class="keyword">const</span> <span class="keyword">struct</span> <a class="code" href="structxccdf__value.html" title="XCCDF Value allows test parametrization or capturing output of tests.">xccdf_value</a> *value);
<a name="l01979"></a>01979 <a class="code" href="group__XCCDF.html#ga4458b04cd1236b95d15ac2d74276c09c" title="Operator to be applied on an xccdf_value.">xccdf_operator_t</a> <a class="code" href="group__XCCDF.html#gaf3ffc6bc219979dafa40a8a8b764d7d1">xccdf_value_get_oper</a>(<span class="keyword">const</span> <span class="keyword">struct</span> <a class="code" href="structxccdf__value.html" title="XCCDF Value allows test parametrization or capturing output of tests.">xccdf_value</a> *value);
<a name="l01981"></a>01981 <span class="keyword">struct </span><a class="code" href="structxccdf__value__instance.html">xccdf_value_instance</a> *<a class="code" href="group__XCCDF.html#ga44cadd2a97282022e1e15b08b0fb2b57">xccdf_value_get_instance_by_selector</a>(<span class="keyword">const</span> <span class="keyword">struct</span> <a class="code" href="structxccdf__value.html" title="XCCDF Value allows test parametrization or capturing output of tests.">xccdf_value</a> *value, <span class="keyword">const</span> <span class="keywordtype">char</span> *selector);
<a name="l01983"></a>01983 <span class="keywordtype">bool</span> <a class="code" href="group__XCCDF.html#ga78ba61e2306d29f6aeea8368821cb91a">xccdf_value_add_instance</a>(<span class="keyword">struct</span> <a class="code" href="structxccdf__value.html" title="XCCDF Value allows test parametrization or capturing output of tests.">xccdf_value</a> *value, <span class="keyword">struct</span> <a class="code" href="structxccdf__value__instance.html">xccdf_value_instance</a> *instance);
<a name="l01985"></a>01985 <span class="keyword">struct </span><a class="code" href="structxccdf__value__instance__iterator.html" title="Value instance iterator.">xccdf_value_instance_iterator</a> *<a class="code" href="group__XCCDF.html#gaababffc00c6d72a930ee1e53778b1c74">xccdf_value_get_instances</a>(<span class="keyword">const</span> <span class="keyword">struct</span> <a class="code" href="structxccdf__value.html" title="XCCDF Value allows test parametrization or capturing output of tests.">xccdf_value</a> *item);
<a name="l01986"></a>01986
<a name="l01987"></a>01987
<a name="l01989"></a>01989 <span class="keywordtype">void</span> <a class="code" href="group__XCCDF.html#ga6415e23113b46aa5cf2c97995befccad">xccdf_value_instance_free</a>(<span class="keyword">struct</span> <a class="code" href="structxccdf__value__instance.html">xccdf_value_instance</a> *inst);
<a name="l01991"></a>01991 <span class="keyword">struct </span><a class="code" href="structxccdf__value__instance.html">xccdf_value_instance</a> *<a class="code" href="group__XCCDF.html#gab7a0ab69244d5e78969f06cdf6b3f1d1">xccdf_value_new_instance</a>(<span class="keyword">struct</span> <a class="code" href="structxccdf__value.html" title="XCCDF Value allows test parametrization or capturing output of tests.">xccdf_value</a> *val);
<a name="l01993"></a>01993 <span class="keyword">const</span> <span class="keywordtype">char</span> *<a class="code" href="group__XCCDF.html#ga517c07620272ade91a72cd059d213014">xccdf_value_instance_get_selector</a>(<span class="keyword">const</span> <span class="keyword">struct</span> <a class="code" href="structxccdf__value__instance.html">xccdf_value_instance</a> *item);
<a name="l01995"></a>01995 <span class="keywordtype">bool</span> <a class="code" href="group__XCCDF.html#ga9104183cf561672abfaf7b1bdac8090a">xccdf_value_instance_set_selector</a>(<span class="keyword">struct</span> <a class="code" href="structxccdf__value__instance.html">xccdf_value_instance</a> *obj, <span class="keyword">const</span> <span class="keywordtype">char</span> *newval);
<a name="l01997"></a>01997 <a class="code" href="group__XCCDF.html#gaa2d75ea6d3cd6957100f532b2ab8e8a8" title="Type of an xccdf_value.">xccdf_value_type_t</a> <a class="code" href="group__XCCDF.html#ga6fbfc4b9a282026929b24768df623195">xccdf_value_instance_get_type</a>(<span class="keyword">const</span> <span class="keyword">struct</span> <a class="code" href="structxccdf__value__instance.html">xccdf_value_instance</a> *item);
<a name="l01999"></a>01999 <span class="keywordtype">bool</span> <a class="code" href="group__XCCDF.html#ga3e599b002cccb6ffce498c6418597015">xccdf_value_instance_get_must_match</a>(<span class="keyword">const</span> <span class="keyword">struct</span> <a class="code" href="structxccdf__value__instance.html">xccdf_value_instance</a> *item);
<a name="l02001"></a>02001 <span class="keywordtype">bool</span> <a class="code" href="group__XCCDF.html#gac9ce03c553c00e9000be91641ca39922">xccdf_value_instance_set_must_match</a>(<span class="keyword">struct</span> <a class="code" href="structxccdf__value__instance.html">xccdf_value_instance</a> *obj, <span class="keywordtype">bool</span> newval);
<a name="l02003"></a>02003 <span class="keywordtype">bool</span> <a class="code" href="group__XCCDF.html#ga3db158f175e0faded179dccb427f8b74">xccdf_value_instance_get_value_boolean</a>(<span class="keyword">const</span> <span class="keyword">struct</span> <a class="code" href="structxccdf__value__instance.html">xccdf_value_instance</a> *inst);
<a name="l02005"></a>02005 <span class="keywordtype">bool</span> <a class="code" href="group__XCCDF.html#gad93fa5a53f2ffb812117664e6e2fcbfd">xccdf_value_instance_set_value_boolean</a>(<span class="keyword">struct</span> <a class="code" href="structxccdf__value__instance.html">xccdf_value_instance</a> *inst, <span class="keywordtype">bool</span> newval);
<a name="l02007"></a>02007 <a class="code" href="group__XCCDF.html#ga83ab7d5052d01468f373732e268f47b4" title="Type of a numerical content for a XCCDF value.">xccdf_numeric</a> <a class="code" href="group__XCCDF.html#ga7d7175936fe1daea82f403bb0179d98f">xccdf_value_instance_get_value_number</a>(<span class="keyword">const</span> <span class="keyword">struct</span> <a class="code" href="structxccdf__value__instance.html">xccdf_value_instance</a> *inst);
<a name="l02009"></a>02009 <span class="keywordtype">bool</span> <a class="code" href="group__XCCDF.html#gac2e8ce36fba5a70bbafc5949a8a895c9">xccdf_value_instance_set_value_number</a>(<span class="keyword">struct</span> <a class="code" href="structxccdf__value__instance.html">xccdf_value_instance</a> *inst, <a class="code" href="group__XCCDF.html#ga83ab7d5052d01468f373732e268f47b4" title="Type of a numerical content for a XCCDF value.">xccdf_numeric</a> newval);
<a name="l02011"></a>02011 <span class="keyword">const</span> <span class="keywordtype">char</span> *<a class="code" href="group__XCCDF.html#gab5ac462fb4afaf526bc7f314d7133a9d">xccdf_value_instance_get_value_string</a>(<span class="keyword">const</span> <span class="keyword">struct</span> <a class="code" href="structxccdf__value__instance.html">xccdf_value_instance</a> *inst);
<a name="l02013"></a>02013 <span class="keywordtype">bool</span> <a class="code" href="group__XCCDF.html#ga2490f09c2b572747391746c2af9a5f58">xccdf_value_instance_set_value_string</a>(<span class="keyword">struct</span> <a class="code" href="structxccdf__value__instance.html">xccdf_value_instance</a> *inst, <span class="keyword">const</span> <span class="keywordtype">char</span> *newval);
<a name="l02015"></a>02015 <span class="keywordtype">bool</span> <a class="code" href="group__XCCDF.html#ga99274537a05aaac503f9cbf0bfcff316">xccdf_value_instance_get_defval_boolean</a>(<span class="keyword">const</span> <span class="keyword">struct</span> <a class="code" href="structxccdf__value__instance.html">xccdf_value_instance</a> *inst);
<a name="l02017"></a>02017 <span class="keywordtype">bool</span> <a class="code" href="group__XCCDF.html#gad20319286f4ed900568d8d04c14c6e53">xccdf_value_instance_set_defval_boolean</a>(<span class="keyword">struct</span> <a class="code" href="structxccdf__value__instance.html">xccdf_value_instance</a> *inst, <span class="keywordtype">bool</span> newval);
<a name="l02019"></a>02019 <a class="code" href="group__XCCDF.html#ga83ab7d5052d01468f373732e268f47b4" title="Type of a numerical content for a XCCDF value.">xccdf_numeric</a> <a class="code" href="group__XCCDF.html#ga0a1fc945e90056fa59d85992b42c5afe">xccdf_value_instance_get_defval_number</a>(<span class="keyword">const</span> <span class="keyword">struct</span> <a class="code" href="structxccdf__value__instance.html">xccdf_value_instance</a> *inst);
<a name="l02021"></a>02021 <span class="keywordtype">bool</span> <a class="code" href="group__XCCDF.html#ga8e2e6e5da23180e2e05c3215f344533c">xccdf_value_instance_set_defval_number</a>(<span class="keyword">struct</span> <a class="code" href="structxccdf__value__instance.html">xccdf_value_instance</a> *inst, <a class="code" href="group__XCCDF.html#ga83ab7d5052d01468f373732e268f47b4" title="Type of a numerical content for a XCCDF value.">xccdf_numeric</a> newval);
<a name="l02023"></a>02023 <span class="keyword">const</span> <span class="keywordtype">char</span> *<a class="code" href="group__XCCDF.html#gaa08d37bd844c95f4dc174391e59b2581">xccdf_value_instance_get_defval_string</a>(<span class="keyword">const</span> <span class="keyword">struct</span> <a class="code" href="structxccdf__value__instance.html">xccdf_value_instance</a> *inst);
<a name="l02025"></a>02025 <span class="keywordtype">bool</span> <a class="code" href="group__XCCDF.html#gae62671159e44f03ba16077dc7075b2e5">xccdf_value_instance_set_defval_string</a>(<span class="keyword">struct</span> <a class="code" href="structxccdf__value__instance.html">xccdf_value_instance</a> *inst, <span class="keyword">const</span> <span class="keywordtype">char</span> *newval);
<a name="l02027"></a>02027 <a class="code" href="group__XCCDF.html#ga83ab7d5052d01468f373732e268f47b4" title="Type of a numerical content for a XCCDF value.">xccdf_numeric</a> <a class="code" href="group__XCCDF.html#ga6aa97cc6489317c7aff64618135cf6d2">xccdf_value_instance_get_lower_bound</a>(<span class="keyword">const</span> <span class="keyword">struct</span> <a class="code" href="structxccdf__value__instance.html">xccdf_value_instance</a> *inst);
<a name="l02029"></a>02029 <span class="keywordtype">bool</span> <a class="code" href="group__XCCDF.html#ga83e4de4f8f7274c47f6dae605867423f">xccdf_value_instance_set_lower_bound</a>(<span class="keyword">struct</span> <a class="code" href="structxccdf__value__instance.html">xccdf_value_instance</a> *inst, <a class="code" href="group__XCCDF.html#ga83ab7d5052d01468f373732e268f47b4" title="Type of a numerical content for a XCCDF value.">xccdf_numeric</a> newval);
<a name="l02031"></a>02031 <a class="code" href="group__XCCDF.html#ga83ab7d5052d01468f373732e268f47b4" title="Type of a numerical content for a XCCDF value.">xccdf_numeric</a> <a class="code" href="group__XCCDF.html#ga9334cc2421af9ce3e28de8ce012af9a7">xccdf_value_instance_get_upper_bound</a>(<span class="keyword">const</span> <span class="keyword">struct</span> <a class="code" href="structxccdf__value__instance.html">xccdf_value_instance</a> *inst);
<a name="l02033"></a>02033 <span class="keywordtype">bool</span> <a class="code" href="group__XCCDF.html#gae05372a92c3c07ee5c7e89d656568c32">xccdf_value_instance_set_upper_bound</a>(<span class="keyword">struct</span> <a class="code" href="structxccdf__value__instance.html">xccdf_value_instance</a> *inst, <a class="code" href="group__XCCDF.html#ga83ab7d5052d01468f373732e268f47b4" title="Type of a numerical content for a XCCDF value.">xccdf_numeric</a> newval);
<a name="l02035"></a>02035 <span class="keyword">const</span> <span class="keywordtype">char</span> *<a class="code" href="group__XCCDF.html#ga43aa5e0592c8d1970f74357cd4670f45">xccdf_value_instance_get_match</a>(<span class="keyword">const</span> <span class="keyword">struct</span> <a class="code" href="structxccdf__value__instance.html">xccdf_value_instance</a> *inst);
<a name="l02037"></a>02037 <span class="keywordtype">bool</span> <a class="code" href="group__XCCDF.html#gaa5be8d75a44c90d925153d7f85fd7f1f">xccdf_value_instance_set_match</a>(<span class="keyword">struct</span> <a class="code" href="structxccdf__value__instance.html">xccdf_value_instance</a> *inst, <span class="keyword">const</span> <span class="keywordtype">char</span> *newval);
<a name="l02039"></a>02039 <span class="keywordtype">char</span> * <a class="code" href="group__XCCDF.html#gaeda69eda37072f0876de3dda2923f70f">xccdf_value_instance_get_value</a>(<span class="keyword">const</span> <span class="keyword">struct</span> <a class="code" href="structxccdf__value__instance.html">xccdf_value_instance</a> * val);
<a name="l02040"></a>02040
<a name="l02046"></a>02046 <span class="keyword">struct </span><a class="code" href="structxccdf__item.html" title="A base class for XCCDF items.">xccdf_item</a> *<a class="code" href="group__XCCDF.html#ga588a7943e055c76c4f0513fcc7aed7c1" title="Return value&#39;s parent in the grouping hierarchy.">xccdf_value_get_parent</a>(<span class="keyword">const</span> <span class="keyword">struct</span> <a class="code" href="structxccdf__value.html" title="XCCDF Value allows test parametrization or capturing output of tests.">xccdf_value</a> *value);
<a name="l02047"></a>02047
<a name="l02048"></a>02048
<a name="l02050"></a>02050 time_t <a class="code" href="group__XCCDF.html#gafcf26bd37b2b1a2e0ea147f1e5ccf009">xccdf_status_get_date</a>(<span class="keyword">const</span> <span class="keyword">struct</span> <a class="code" href="structxccdf__status.html" title="XCCDF item status.">xccdf_status</a> *status);
<a name="l02052"></a>02052 <a class="code" href="group__XCCDF.html#gac0d5c1c85828e13ebb13935551f8da38" title="Status of an XCCDF item.">xccdf_status_type_t</a> <a class="code" href="group__XCCDF.html#ga53a77c66ce6b230b133edab426c394a7">xccdf_status_get_status</a>(<span class="keyword">const</span> <span class="keyword">struct</span> <a class="code" href="structxccdf__status.html" title="XCCDF item status.">xccdf_status</a> *status);
<a name="l02054"></a>02054 <span class="keyword">const</span> <span class="keywordtype">char</span> *<a class="code" href="group__XCCDF.html#ga0cf4bd003b8c6aca9e643638e8b89117">xccdf_notice_get_id</a>(<span class="keyword">const</span> <span class="keyword">struct</span> <a class="code" href="structxccdf__notice.html" title="XCCDF benchmark legal notice.">xccdf_notice</a> *notice);
<a name="l02056"></a>02056 <span class="keyword">struct </span><a class="code" href="structoscap__text.html" title="Representation of internationalizable character strings.">oscap_text</a> *<a class="code" href="group__XCCDF.html#ga1f2d2f10e9b5edb8f9ae78168360fd72">xccdf_notice_get_text</a>(<span class="keyword">const</span> <span class="keyword">struct</span> <a class="code" href="structxccdf__notice.html" title="XCCDF benchmark legal notice.">xccdf_notice</a> *notice);
<a name="l02058"></a>02058 <span class="keyword">const</span> <span class="keywordtype">char</span> *<a class="code" href="group__XCCDF.html#ga1abc3bda88ff1f22c88cbb7623490e25">xccdf_model_get_system</a>(<span class="keyword">const</span> <span class="keyword">struct</span> <a class="code" href="structxccdf__model.html" title="XCCDF scoring model.">xccdf_model</a> *model);
<a name="l02060"></a>02060 <span class="comment">/* const char* xccdf_model_get_param(const struct xccdf_model* model, const char* param_name); TODO */</span>
<a name="l02062"></a>02062 <span class="keyword">const</span> <span class="keywordtype">char</span> *<a class="code" href="group__XCCDF.html#ga2f44d7e4df0cdb1ab65b0582ff6ac920">xccdf_ident_get_id</a>(<span class="keyword">const</span> <span class="keyword">struct</span> <a class="code" href="structxccdf__ident.html" title="XCCDF rule ident URI.">xccdf_ident</a> *ident);
<a name="l02064"></a>02064 <span class="keyword">const</span> <span class="keywordtype">char</span> *<a class="code" href="group__XCCDF.html#ga4d000085b8b5f1c7d2e3c1698edea2a0">xccdf_ident_get_system</a>(<span class="keyword">const</span> <span class="keyword">struct</span> <a class="code" href="structxccdf__ident.html" title="XCCDF rule ident URI.">xccdf_ident</a> *ident);
<a name="l02066"></a>02066 <span class="keyword">const</span> <span class="keywordtype">char</span> *<a class="code" href="group__XCCDF.html#ga58572336338240e48d076e01cf5123f7">xccdf_check_get_id</a>(<span class="keyword">const</span> <span class="keyword">struct</span> <a class="code" href="structxccdf__check.html" title="XCCDF simple or complex check.">xccdf_check</a> *check);
<a name="l02067"></a>02067
<a name="l02073"></a>02073 <span class="keywordtype">bool</span> <a class="code" href="group__XCCDF.html#ga6c672a9137322cc3165047510b910f41" title="True if the check is a complex check.">xccdf_check_get_complex</a>(<span class="keyword">const</span> <span class="keyword">struct</span> <a class="code" href="structxccdf__check.html" title="XCCDF simple or complex check.">xccdf_check</a> *check);
<a name="l02074"></a>02074
<a name="l02080"></a>02080 <a class="code" href="group__XCCDF.html#gac5b91d8f1c9b08c92226646230e8f676" title="Boolean operators for logical expressions.">xccdf_bool_operator_t</a> <a class="code" href="group__XCCDF.html#ga3c2eaea038f46532095932f4ff4dcffd" title="Get an operator to be applied no children of the complex check.">xccdf_check_get_oper</a>(<span class="keyword">const</span> <span class="keyword">struct</span> <a class="code" href="structxccdf__check.html" title="XCCDF simple or complex check.">xccdf_check</a> *check);
<a name="l02082"></a>02082 <span class="keyword">const</span> <span class="keywordtype">char</span> *<a class="code" href="group__XCCDF.html#ga8410be5869da20e9f01ddb8772961417">xccdf_check_get_system</a>(<span class="keyword">const</span> <span class="keyword">struct</span> <a class="code" href="structxccdf__check.html" title="XCCDF simple or complex check.">xccdf_check</a> *check);
<a name="l02084"></a>02084 <span class="keyword">const</span> <span class="keywordtype">char</span> *<a class="code" href="group__XCCDF.html#gadb56f49779dc7f2009bede9ed4fb3755">xccdf_check_get_selector</a>(<span class="keyword">const</span> <span class="keyword">struct</span> <a class="code" href="structxccdf__check.html" title="XCCDF simple or complex check.">xccdf_check</a> *check);
<a name="l02086"></a>02086 <span class="keyword">const</span> <span class="keywordtype">char</span> *<a class="code" href="group__XCCDF.html#ga4e72e171f239c70e8e0b89ad2807014a">xccdf_check_get_content</a>(<span class="keyword">const</span> <span class="keyword">struct</span> <a class="code" href="structxccdf__check.html" title="XCCDF simple or complex check.">xccdf_check</a> *check);
<a name="l02088"></a>02088 <span class="comment">//struct xccdf_rule *xccdf_check_get_parent(const struct xccdf_check *check);</span>
<a name="l02094"></a>02094 <span class="comment"></span><span class="keyword">struct </span><a class="code" href="structxccdf__check__iterator.html" title="Check iterator.">xccdf_check_iterator</a> *<a class="code" href="group__XCCDF.html#gab2adb2abce604ff08f63a2a2650a4e63" title="Get an iterator to nested checks of the complex check.">xccdf_check_get_children</a>(<span class="keyword">const</span> <span class="keyword">struct</span> <a class="code" href="structxccdf__check.html" title="XCCDF simple or complex check.">xccdf_check</a> *check);
<a name="l02095"></a>02095
<a name="l02097"></a>02097 <span class="keyword">const</span> <span class="keywordtype">char</span> *<a class="code" href="group__XCCDF.html#ga00d20e215cadd4ad52dc7b8d288f3e9d">xccdf_check_content_ref_get_href</a>(<span class="keyword">const</span> <span class="keyword">struct</span> <a class="code" href="structxccdf__check__content__ref.html" title="XCCDF check content reference.">xccdf_check_content_ref</a> *ref);
<a name="l02099"></a>02099 <span class="keyword">const</span> <span class="keywordtype">char</span> *<a class="code" href="group__XCCDF.html#gaa5554853f1d4cedcbd092fb30ebe615c">xccdf_check_content_ref_get_name</a>(<span class="keyword">const</span> <span class="keyword">struct</span> <a class="code" href="structxccdf__check__content__ref.html" title="XCCDF check content reference.">xccdf_check_content_ref</a> *ref);
<a name="l02101"></a>02101 <span class="keyword">const</span> <span class="keywordtype">char</span> *<a class="code" href="group__XCCDF.html#ga7d75766af05a9becbe15aa58b355db25">xccdf_profile_note_get_reftag</a>(<span class="keyword">const</span> <span class="keyword">struct</span> <a class="code" href="structxccdf__profile__note.html" title="XCCDF note for given rule in context of given profile.">xccdf_profile_note</a> *note);
<a name="l02103"></a>02103 <span class="keyword">struct </span><a class="code" href="structoscap__text.html" title="Representation of internationalizable character strings.">oscap_text</a> *<a class="code" href="group__XCCDF.html#ga132933c3c178c0e4e7df0c10972e4411">xccdf_profile_note_get_text</a>(<span class="keyword">const</span> <span class="keyword">struct</span> <a class="code" href="structxccdf__profile__note.html" title="XCCDF note for given rule in context of given profile.">xccdf_profile_note</a> *note);
<a name="l02105"></a>02105 <span class="keyword">const</span> <span class="keywordtype">char</span> *<a class="code" href="group__XCCDF.html#ga77cdd6eff977b3a41797d39b9abf8e9d">xccdf_check_import_get_name</a>(<span class="keyword">const</span> <span class="keyword">struct</span> <a class="code" href="structxccdf__check__import.html" title="XCCDF check import.">xccdf_check_import</a> *item);
<a name="l02107"></a>02107 <span class="keyword">const</span> <span class="keywordtype">char</span> *<a class="code" href="group__XCCDF.html#ga6fe18c69cda39d5ec2c30240d806f850">xccdf_check_import_get_content</a>(<span class="keyword">const</span> <span class="keyword">struct</span> <a class="code" href="structxccdf__check__import.html" title="XCCDF check import.">xccdf_check_import</a> *item);
<a name="l02109"></a>02109 <span class="keyword">const</span> <span class="keywordtype">char</span> *<a class="code" href="group__XCCDF.html#ga3597587ec2ebb94a840ecb9a3d894879">xccdf_check_export_get_value</a>(<span class="keyword">const</span> <span class="keyword">struct</span> <a class="code" href="structxccdf__check__export.html" title="XCCDF check export.">xccdf_check_export</a> *item);
<a name="l02111"></a>02111 <span class="keyword">const</span> <span class="keywordtype">char</span> *<a class="code" href="group__XCCDF.html#ga0a593f5c5c12cbf6c71a047ce79bafe6">xccdf_check_export_get_name</a>(<span class="keyword">const</span> <span class="keyword">struct</span> <a class="code" href="structxccdf__check__export.html" title="XCCDF check export.">xccdf_check_export</a> *item);
<a name="l02112"></a>02112
<a name="l02114"></a>02114 <span class="keyword">const</span> <span class="keywordtype">char</span> *<a class="code" href="group__XCCDF.html#ga54755b4479f39ede2111340179b728d7">xccdf_fix_get_content</a>(<span class="keyword">const</span> <span class="keyword">struct</span> <a class="code" href="structxccdf__fix.html" title="XCCDF automatic fix.">xccdf_fix</a> *fix);
<a name="l02116"></a>02116 <span class="keywordtype">bool</span> <a class="code" href="group__XCCDF.html#ga79e854a3baaaa8fa6e52d39d0ec904c7">xccdf_fix_get_reboot</a>(<span class="keyword">const</span> <span class="keyword">struct</span> <a class="code" href="structxccdf__fix.html" title="XCCDF automatic fix.">xccdf_fix</a> *fix);
<a name="l02118"></a>02118 <a class="code" href="group__XCCDF.html#ga534ac2d5662227cff66913038f4263e1" title="Fix strategy type.">xccdf_strategy_t</a> <a class="code" href="group__XCCDF.html#ga882f6cfe2776578ba4dc2a23cfec968c">xccdf_fix_get_strategy</a>(<span class="keyword">const</span> <span class="keyword">struct</span> <a class="code" href="structxccdf__fix.html" title="XCCDF automatic fix.">xccdf_fix</a> *fix);
<a name="l02120"></a>02120 <a class="code" href="group__XCCDF.html#ga209163661038a6be4066cdec716c997f" title="XCCDF error, complexity, disruption, or severity level.">xccdf_level_t</a> <a class="code" href="group__XCCDF.html#ga42e85a99dfea7ad0c015ff268befbbf9">xccdf_fix_get_complexity</a>(<span class="keyword">const</span> <span class="keyword">struct</span> <a class="code" href="structxccdf__fix.html" title="XCCDF automatic fix.">xccdf_fix</a> *fix);
<a name="l02122"></a>02122 <a class="code" href="group__XCCDF.html#ga209163661038a6be4066cdec716c997f" title="XCCDF error, complexity, disruption, or severity level.">xccdf_level_t</a> <a class="code" href="group__XCCDF.html#ga9edd23d08993d0429a3572ec4dedbc86">xccdf_fix_get_disruption</a>(<span class="keyword">const</span> <span class="keyword">struct</span> <a class="code" href="structxccdf__fix.html" title="XCCDF automatic fix.">xccdf_fix</a> *fix);
<a name="l02124"></a>02124 <span class="keyword">const</span> <span class="keywordtype">char</span> *<a class="code" href="group__XCCDF.html#ga38df0cf7321847cb91a2e4d581f03912">xccdf_fix_get_id</a>(<span class="keyword">const</span> <span class="keyword">struct</span> <a class="code" href="structxccdf__fix.html" title="XCCDF automatic fix.">xccdf_fix</a> *fix);
<a name="l02126"></a>02126 <span class="keyword">const</span> <span class="keywordtype">char</span> *<a class="code" href="group__XCCDF.html#gaa4395d2ef452ea1692eb52e19c2cb0a0">xccdf_fix_get_system</a>(<span class="keyword">const</span> <span class="keyword">struct</span> <a class="code" href="structxccdf__fix.html" title="XCCDF automatic fix.">xccdf_fix</a> *fix);
<a name="l02128"></a>02128 <span class="keyword">const</span> <span class="keywordtype">char</span> *<a class="code" href="group__XCCDF.html#ga85e87548c2dbc16a989c2bcdc174e99b">xccdf_fix_get_platform</a>(<span class="keyword">const</span> <span class="keyword">struct</span> <a class="code" href="structxccdf__fix.html" title="XCCDF automatic fix.">xccdf_fix</a> *fix);
<a name="l02130"></a>02130 <span class="keywordtype">bool</span> <a class="code" href="group__XCCDF.html#gad9d18f258677ede64a12c778b2248465">xccdf_fixtext_get_reboot</a>(<span class="keyword">const</span> <span class="keyword">struct</span> <a class="code" href="structxccdf__fixtext.html" title="XCCDF textual fix instructions.">xccdf_fixtext</a> *fixtext);
<a name="l02132"></a>02132 <a class="code" href="group__XCCDF.html#ga534ac2d5662227cff66913038f4263e1" title="Fix strategy type.">xccdf_strategy_t</a> <a class="code" href="group__XCCDF.html#ga772addfee9d91302762c91ea5ff08bd1">xccdf_fixtext_get_strategy</a>(<span class="keyword">const</span> <span class="keyword">struct</span> <a class="code" href="structxccdf__fixtext.html" title="XCCDF textual fix instructions.">xccdf_fixtext</a> *fixtext);
<a name="l02134"></a>02134 <a class="code" href="group__XCCDF.html#ga209163661038a6be4066cdec716c997f" title="XCCDF error, complexity, disruption, or severity level.">xccdf_level_t</a> <a class="code" href="group__XCCDF.html#ga2b525281db4d2cb0ff691bd4ed4ddaa7">xccdf_fixtext_get_complexity</a>(<span class="keyword">const</span> <span class="keyword">struct</span> <a class="code" href="structxccdf__fixtext.html" title="XCCDF textual fix instructions.">xccdf_fixtext</a> *fixtext);
<a name="l02136"></a>02136 <a class="code" href="group__XCCDF.html#ga209163661038a6be4066cdec716c997f" title="XCCDF error, complexity, disruption, or severity level.">xccdf_level_t</a> <a class="code" href="group__XCCDF.html#gaed070c24053e182c94d74cfeb04e5a31">xccdf_fixtext_get_disruption</a>(<span class="keyword">const</span> <span class="keyword">struct</span> <a class="code" href="structxccdf__fixtext.html" title="XCCDF textual fix instructions.">xccdf_fixtext</a> *fixtext);
<a name="l02138"></a>02138 <span class="keyword">const</span> <span class="keywordtype">char</span> *<a class="code" href="group__XCCDF.html#gaa98cc4797ea0091dc13950c02bd24ff4">xccdf_fixtext_get_fixref</a>(<span class="keyword">const</span> <span class="keyword">struct</span> <a class="code" href="structxccdf__fixtext.html" title="XCCDF textual fix instructions.">xccdf_fixtext</a> *fixtext);
<a name="l02140"></a>02140 <span class="keyword">struct </span><a class="code" href="structoscap__text.html" title="Representation of internationalizable character strings.">oscap_text</a> *<a class="code" href="group__XCCDF.html#gaada7fffd9ba3491c973f32a7d491965a">xccdf_fixtext_get_text</a>(<span class="keyword">const</span> <span class="keyword">struct</span> <a class="code" href="structxccdf__fixtext.html" title="XCCDF textual fix instructions.">xccdf_fixtext</a> *fixtext);
<a name="l02142"></a>02142 <span class="keyword">const</span> <span class="keywordtype">char</span> *<a class="code" href="group__XCCDF.html#gaf437dcb9e59713b0a808ec1690b031fb">xccdf_value_get_version</a>(<span class="keyword">const</span> <span class="keyword">struct</span> <a class="code" href="structxccdf__value.html" title="XCCDF Value allows test parametrization or capturing output of tests.">xccdf_value</a> *value);
<a name="l02144"></a>02144 <span class="keyword">struct </span><a class="code" href="structoscap__text__iterator.html" title="Internationalized string iterator.">oscap_text_iterator</a> *<a class="code" href="group__XCCDF.html#gad4b2c62132cd3b35bcedc38f3498fe7d">xccdf_value_get_question</a>(<span class="keyword">const</span> <span class="keyword">struct</span> <a class="code" href="structxccdf__value.html" title="XCCDF Value allows test parametrization or capturing output of tests.">xccdf_value</a> *value);
<a name="l02146"></a>02146 <span class="keyword">struct </span><a class="code" href="structxccdf__warning__iterator.html" title="Warning iterator.">xccdf_warning_iterator</a> *<a class="code" href="group__XCCDF.html#ga1b15685c2b0bb6339fd11dda172581c0">xccdf_value_get_warnings</a>(<span class="keyword">const</span> <span class="keyword">struct</span> <a class="code" href="structxccdf__value.html" title="XCCDF Value allows test parametrization or capturing output of tests.">xccdf_value</a> *value);
<a name="l02148"></a>02148 <span class="keyword">const</span> <span class="keywordtype">char</span> *<a class="code" href="group__XCCDF.html#gac4e50f1fbe4b67977e5ab2734128a0fc">xccdf_value_get_version_update</a>(<span class="keyword">const</span> <span class="keyword">struct</span> <a class="code" href="structxccdf__value.html" title="XCCDF Value allows test parametrization or capturing output of tests.">xccdf_value</a> *value);
<a name="l02150"></a>02150 time_t <a class="code" href="group__XCCDF.html#ga8cd21f2497214091aecf6d231ddeb73d">xccdf_value_get_version_time</a>(<span class="keyword">const</span> <span class="keyword">struct</span> <a class="code" href="structxccdf__value.html" title="XCCDF Value allows test parametrization or capturing output of tests.">xccdf_value</a> *value);
<a name="l02152"></a>02152 <span class="keyword">struct </span><a class="code" href="structxccdf__benchmark.html" title="Top level XCCDF structure containing profiles, rules, values and results.">xccdf_benchmark</a> *<a class="code" href="group__XCCDF.html#gacdf624d546368433220b44816d3535fa">xccdf_value_get_benchmark</a>(<span class="keyword">const</span> <span class="keyword">struct</span> <a class="code" href="structxccdf__value.html" title="XCCDF Value allows test parametrization or capturing output of tests.">xccdf_value</a> *value);
<a name="l02154"></a>02154 <span class="keyword">struct </span><a class="code" href="structoscap__string__iterator.html" title="String iterator.">oscap_string_iterator</a> *<a class="code" href="group__XCCDF.html#ga6f3d5254e3b30ee39eb4300f32543132">xccdf_value_get_sources</a>(<span class="keyword">const</span> <span class="keyword">struct</span> <a class="code" href="structxccdf__value.html" title="XCCDF Value allows test parametrization or capturing output of tests.">xccdf_value</a> *value);
<a name="l02156"></a>02156 <span class="keyword">const</span> <span class="keywordtype">char</span> *<a class="code" href="group__XCCDF.html#ga82e93431f4f2f606c5d0c254f63c60a6">xccdf_value_get_cluster_id</a>(<span class="keyword">const</span> <span class="keyword">struct</span> <a class="code" href="structxccdf__value.html" title="XCCDF Value allows test parametrization or capturing output of tests.">xccdf_value</a> *value);
<a name="l02157"></a>02157
<a name="l02159"></a>02159 <span class="keyword">struct </span><a class="code" href="structoscap__text__iterator.html" title="Internationalized string iterator.">oscap_text_iterator</a> *<a class="code" href="group__XCCDF.html#gab4af0809bd3555164c610dd11ccd8063">xccdf_item_get_question</a>(<span class="keyword">const</span> <span class="keyword">struct</span> <a class="code" href="structxccdf__item.html" title="A base class for XCCDF items.">xccdf_item</a> *item);
<a name="l02161"></a>02161 <span class="keyword">struct </span><a class="code" href="structxccdf__warning__iterator.html" title="Warning iterator.">xccdf_warning_iterator</a> *<a class="code" href="group__XCCDF.html#ga934d5afc284cd8a95c67592aa135c001">xccdf_item_get_warnings</a>(<span class="keyword">const</span> <span class="keyword">struct</span> <a class="code" href="structxccdf__item.html" title="A base class for XCCDF items.">xccdf_item</a> *item);
<a name="l02163"></a>02163 <span class="keyword">struct </span><a class="code" href="structoscap__text__iterator.html" title="Internationalized string iterator.">oscap_text_iterator</a> *<a class="code" href="group__XCCDF.html#ga44e972c1e902a83186f4f66fc82f2ca8">xccdf_item_get_rationale</a>(<span class="keyword">const</span> <span class="keyword">struct</span> <a class="code" href="structxccdf__item.html" title="A base class for XCCDF items.">xccdf_item</a> *item);
<a name="l02165"></a>02165 <span class="keyword">const</span> <span class="keywordtype">char</span> *<a class="code" href="group__XCCDF.html#ga7158bf7eaf418efd9bb1702771a78cb9">xccdf_item_get_cluster_id</a>(<span class="keyword">const</span> <span class="keyword">struct</span> <a class="code" href="structxccdf__item.html" title="A base class for XCCDF items.">xccdf_item</a> *item);
<a name="l02167"></a>02167 <span class="keyword">const</span> <span class="keywordtype">char</span> *<a class="code" href="group__XCCDF.html#gadd1a40adb7c180b660c49169cb3d987e">xccdf_item_get_version_update</a>(<span class="keyword">const</span> <span class="keyword">struct</span> <a class="code" href="structxccdf__item.html" title="A base class for XCCDF items.">xccdf_item</a> *item);
<a name="l02169"></a>02169 time_t <a class="code" href="group__XCCDF.html#ga7c948fdd6de2a476d8e603862e7292ea">xccdf_item_get_version_time</a>(<span class="keyword">const</span> <span class="keyword">struct</span> <a class="code" href="structxccdf__item.html" title="A base class for XCCDF items.">xccdf_item</a> *item);
<a name="l02171"></a>02171 <span class="keywordtype">float</span> <a class="code" href="group__XCCDF.html#gad26e4ec4aae2f1e6ce825df029db0316">xccdf_item_get_weight</a>(<span class="keyword">const</span> <span class="keyword">struct</span> <a class="code" href="structxccdf__item.html" title="A base class for XCCDF items.">xccdf_item</a> *item);
<a name="l02173"></a>02173 <span class="keyword">struct </span><a class="code" href="structxccdf__benchmark.html" title="Top level XCCDF structure containing profiles, rules, values and results.">xccdf_benchmark</a> *<a class="code" href="group__XCCDF.html#gaff197e1d8facaa788f37529dfada7526">xccdf_item_get_benchmark</a>(<span class="keyword">const</span> <span class="keyword">struct</span> <a class="code" href="structxccdf__item.html" title="A base class for XCCDF items.">xccdf_item</a> *item);
<a name="l02175"></a>02175 <span class="keyword">struct </span><a class="code" href="structoscap__string__iterator.html" title="String iterator.">oscap_string_iterator</a> *<a class="code" href="group__XCCDF.html#ga31b10a1ee35af89d6df383ec3df19e4c">xccdf_item_get_platforms</a>(<span class="keyword">const</span> <span class="keyword">struct</span> <a class="code" href="structxccdf__item.html" title="A base class for XCCDF items.">xccdf_item</a> *item);
<a name="l02176"></a>02176
<a name="l02178"></a>02178 <span class="keyword">struct </span><a class="code" href="structxccdf__warning__iterator.html" title="Warning iterator.">xccdf_warning_iterator</a> *<a class="code" href="group__XCCDF.html#gab54263d75d2620a8a0fbe275dcd511ca">xccdf_benchmark_get_warnings</a>(<span class="keyword">const</span> <span class="keyword">struct</span> <a class="code" href="structxccdf__benchmark.html" title="Top level XCCDF structure containing profiles, rules, values and results.">xccdf_benchmark</a> *benchmark);
<a name="l02180"></a>02180 <span class="keyword">const</span> <span class="keywordtype">char</span> *<a class="code" href="group__XCCDF.html#gae8ee0fd48ed6bab61123270271b67058">xccdf_benchmark_get_version_update</a>(<span class="keyword">const</span> <span class="keyword">struct</span> <a class="code" href="structxccdf__benchmark.html" title="Top level XCCDF structure containing profiles, rules, values and results.">xccdf_benchmark</a> *benchmark);
<a name="l02182"></a>02182 time_t <a class="code" href="group__XCCDF.html#ga2e8886ed0a593a6b26dc39a10ada4daf">xccdf_benchmark_get_version_time</a>(<span class="keyword">const</span> <span class="keyword">struct</span> <a class="code" href="structxccdf__benchmark.html" title="Top level XCCDF structure containing profiles, rules, values and results.">xccdf_benchmark</a> *benchmark);
<a name="l02183"></a>02183
<a name="l02185"></a>02185 <span class="keyword">const</span> <span class="keywordtype">char</span> *<a class="code" href="group__XCCDF.html#ga362e6d07e5ffc48d370f3d8374f9a2cb">xccdf_profile_get_version_update</a>(<span class="keyword">const</span> <span class="keyword">struct</span> <a class="code" href="structxccdf__profile.html" title="XCCDF profile is a set of tests and their settings in a compact package.">xccdf_profile</a> *profile);
<a name="l02187"></a>02187 time_t <a class="code" href="group__XCCDF.html#ga72eac3920646d92c72069e5a576c525b">xccdf_profile_get_version_time</a>(<span class="keyword">const</span> <span class="keyword">struct</span> <a class="code" href="structxccdf__profile.html" title="XCCDF profile is a set of tests and their settings in a compact package.">xccdf_profile</a> *profile);
<a name="l02189"></a>02189 <span class="keyword">const</span> <span class="keywordtype">char</span> *<a class="code" href="group__XCCDF.html#gadc6cdfd0b1cf96bd79256d93e960d44f">xccdf_profile_get_note_tag</a>(<span class="keyword">const</span> <span class="keyword">struct</span> <a class="code" href="structxccdf__profile.html" title="XCCDF profile is a set of tests and their settings in a compact package.">xccdf_profile</a> *profile);
<a name="l02190"></a>02190
<a name="l02192"></a>02192 <span class="keyword">const</span> <span class="keywordtype">char</span> *<a class="code" href="group__XCCDF.html#gae03fabd2e6e9d05f92e87065c221ace0">xccdf_rule_get_version_update</a>(<span class="keyword">const</span> <span class="keyword">struct</span> <a class="code" href="structxccdf__rule.html" title="XCCDF rule defines a test execution.">xccdf_rule</a> *rule);
<a name="l02194"></a>02194 time_t <a class="code" href="group__XCCDF.html#ga21cfd146dbd0c3184615d1cbcaf48750">xccdf_rule_get_version_time</a>(<span class="keyword">const</span> <span class="keyword">struct</span> <a class="code" href="structxccdf__rule.html" title="XCCDF rule defines a test execution.">xccdf_rule</a> *rule);
<a name="l02196"></a>02196 <span class="keyword">struct </span><a class="code" href="structxccdf__benchmark.html" title="Top level XCCDF structure containing profiles, rules, values and results.">xccdf_benchmark</a> *<a class="code" href="group__XCCDF.html#ga332dc16c9cb3937a60b0878ffd4bafea">xccdf_rule_get_benchmark</a>(<span class="keyword">const</span> <span class="keyword">struct</span> <a class="code" href="structxccdf__rule.html" title="XCCDF rule defines a test execution.">xccdf_rule</a> *rule);
<a name="l02197"></a>02197
<a name="l02199"></a>02199 time_t <a class="code" href="group__XCCDF.html#gace4ef30adda1dcb0c496b3d71df76db9">xccdf_group_get_version_time</a>(<span class="keyword">const</span> <span class="keyword">struct</span> <a class="code" href="structxccdf__group.html" title="XCCDF rule group.">xccdf_group</a> *group);
<a name="l02201"></a>02201 <span class="keyword">const</span> <span class="keywordtype">char</span> *<a class="code" href="group__XCCDF.html#ga37b329a42494c5201561469c6c402b91">xccdf_group_get_version_update</a>(<span class="keyword">const</span> <span class="keyword">struct</span> <a class="code" href="structxccdf__group.html" title="XCCDF rule group.">xccdf_group</a> *group);
<a name="l02203"></a>02203 <span class="keyword">struct </span><a class="code" href="structxccdf__benchmark.html" title="Top level XCCDF structure containing profiles, rules, values and results.">xccdf_benchmark</a> *<a class="code" href="group__XCCDF.html#gab77c7fcf42442890cec4919c7f13205e">xccdf_group_get_benchmark</a>(<span class="keyword">const</span> <span class="keyword">struct</span> <a class="code" href="structxccdf__group.html" title="XCCDF rule group.">xccdf_group</a> *group);
<a name="l02204"></a>02204
<a name="l02206"></a>02206 <span class="keyword">struct </span><a class="code" href="structxccdf__check__import__iterator.html" title="Check import iterator.">xccdf_check_import_iterator</a> *<a class="code" href="group__XCCDF.html#gabdaecae77df72a51977d046e299ded3f">xccdf_check_get_imports</a>(<span class="keyword">const</span> <span class="keyword">struct</span> <a class="code" href="structxccdf__check.html" title="XCCDF simple or complex check.">xccdf_check</a> *check);
<a name="l02208"></a>02208 <span class="keyword">struct </span><a class="code" href="structxccdf__check__export__iterator.html" title="Check export iterator.">xccdf_check_export_iterator</a> *<a class="code" href="group__XCCDF.html#ga8c52badd404bdede94d963121eefbf13">xccdf_check_get_exports</a>(<span class="keyword">const</span> <span class="keyword">struct</span> <a class="code" href="structxccdf__check.html" title="XCCDF simple or complex check.">xccdf_check</a> *check);
<a name="l02210"></a>02210 <span class="keyword">struct </span><a class="code" href="structxccdf__check__content__ref__iterator.html" title="Check content references iterator.">xccdf_check_content_ref_iterator</a> *<a class="code" href="group__XCCDF.html#ga1d52fd4bb33e07e00746dc2e07fa2944">xccdf_check_get_content_refs</a>(<span class="keyword">const</span> <span class="keyword">struct</span> <a class="code" href="structxccdf__check.html" title="XCCDF simple or complex check.">xccdf_check</a> *check);
<a name="l02211"></a>02211
<a name="l02213"></a>02213 <span class="keyword">struct </span><a class="code" href="structxccdf__reference.html" title="XCCDF reference.">xccdf_reference</a> *<a class="code" href="group__XCCDF.html#ga491252759fa06ae2bd731b758f59330d">xccdf_reference_new</a>(<span class="keywordtype">void</span>);
<a name="l02215"></a>02215 <span class="keyword">struct </span><a class="code" href="structxccdf__reference.html" title="XCCDF reference.">xccdf_reference</a> *<a class="code" href="group__XCCDF.html#ga3a63ad05601937d1dfebf0ff22dd8aef">xccdf_reference_clone</a>(<span class="keyword">const</span> <span class="keyword">struct</span> <a class="code" href="structxccdf__reference.html" title="XCCDF reference.">xccdf_reference</a> *old_reference);
<a name="l02217"></a>02217 <span class="keywordtype">void</span> <a class="code" href="group__XCCDF.html#ga9c2a850f257c95193de1bb78f475777c">xccdf_reference_free</a>(<span class="keyword">struct</span> <a class="code" href="structxccdf__reference.html" title="XCCDF reference.">xccdf_reference</a> * ref);
<a name="l02218"></a>02218 <span class="comment">// @memberof xccdf_reference</span>
<a name="l02219"></a>02219 <span class="comment">//bool xccdf_reference_get_override(const struct xccdf_reference *reference);</span>
<a name="l02221"></a>02221 <span class="comment"></span><span class="keyword">const</span> <span class="keywordtype">char</span> *<a class="code" href="group__XCCDF.html#gacc5124d9a9cce03e166550784e2b0710">xccdf_reference_get_href</a>(<span class="keyword">const</span> <span class="keyword">struct</span> <a class="code" href="structxccdf__reference.html" title="XCCDF reference.">xccdf_reference</a> *reference);
<a name="l02222"></a>02222 <span class="comment">// @memberof xccdf_reference</span>
<a name="l02223"></a>02223 <span class="comment">//const char *xccdf_reference_get_content(const struct xccdf_reference *reference);</span>
<a name="l02224"></a>02224 <span class="comment">// @memberof xccdf_reference</span>
<a name="l02225"></a>02225 <span class="comment">//const char *xccdf_reference_get_lang(const struct xccdf_reference *reference);</span>
<a name="l02227"></a>02227 <span class="comment"></span><span class="keyword">struct </span><a class="code" href="structoscap__text.html" title="Representation of internationalizable character strings.">oscap_text</a> *<a class="code" href="group__XCCDF.html#gacd231a53426ff7372310a3d5fa0d0b48">xccdf_reference_get_text</a>(<span class="keyword">const</span> <span class="keyword">struct</span> <a class="code" href="structxccdf__reference.html" title="XCCDF reference.">xccdf_reference</a> *reference);
<a name="l02228"></a>02228
<a name="l02230"></a>02230 <span class="keywordtype">bool</span> <a class="code" href="group__XCCDF.html#ga8474b818f98ddbaac353cdd751fd8c09">xccdf_select_get_selected</a>(<span class="keyword">const</span> <span class="keyword">struct</span> <a class="code" href="structxccdf__select.html" title="XCCDF select option usen in the profile.">xccdf_select</a> *select);
<a name="l02232"></a>02232 <span class="keyword">const</span> <span class="keywordtype">char</span> *<a class="code" href="group__XCCDF.html#ga538f1b8fde8ff6dbcdef9cbe4e816c54">xccdf_select_get_item</a>(<span class="keyword">const</span> <span class="keyword">struct</span> <a class="code" href="structxccdf__select.html" title="XCCDF select option usen in the profile.">xccdf_select</a> *select);
<a name="l02234"></a>02234 <span class="keyword">struct </span><a class="code" href="structoscap__text__iterator.html" title="Internationalized string iterator.">oscap_text_iterator</a> *<a class="code" href="group__XCCDF.html#ga0e05aca6e28b454532ea56f594ce4241">xccdf_select_get_remarks</a>(<span class="keyword">const</span> <span class="keyword">struct</span> <a class="code" href="structxccdf__select.html" title="XCCDF select option usen in the profile.">xccdf_select</a> *select);
<a name="l02235"></a>02235
<a name="l02237"></a>02237 <a class="code" href="group__XCCDF.html#ga70ec25fc378db41df2c7344a06adf6aa" title="Category of xccdf_warning.">xccdf_warning_category_t</a> <a class="code" href="group__XCCDF.html#ga3e3c671b30407285e614def55438a46e">xccdf_warning_get_category</a>(<span class="keyword">const</span> <span class="keyword">struct</span> <a class="code" href="structxccdf__warning.html" title="XCCDF warning.">xccdf_warning</a> *warning);
<a name="l02239"></a>02239 <span class="keyword">struct </span><a class="code" href="structoscap__text.html" title="Representation of internationalizable character strings.">oscap_text</a> *<a class="code" href="group__XCCDF.html#ga487ecf783ced96cb85d9a9967eadbf22">xccdf_warning_get_text</a>(<span class="keyword">const</span> <span class="keyword">struct</span> <a class="code" href="structxccdf__warning.html" title="XCCDF warning.">xccdf_warning</a> *warning);
<a name="l02241"></a>02241 <span class="keyword">const</span> <span class="keywordtype">char</span> * <a class="code" href="group__XCCDF.html#ga511cd8e0ed6e51032bc56bc362b90a03" title="xccdf_refine_rule">xccdf_refine_rule_get_item</a>(<span class="keyword">const</span> <span class="keyword">struct</span> <a class="code" href="structxccdf__refine__rule.html" title="XCCDF refine rule option used in the profile.">xccdf_refine_rule</a>* rr);
<a name="l02243"></a>02243 <span class="keyword">const</span> <span class="keywordtype">char</span> * <a class="code" href="group__XCCDF.html#ga64cd41a4ede976b9568c50ec042b30e1" title="xccdf_refine_rule">xccdf_refine_rule_get_selector</a>(<span class="keyword">const</span> <span class="keyword">struct</span> <a class="code" href="structxccdf__refine__rule.html" title="XCCDF refine rule option used in the profile.">xccdf_refine_rule</a>* rr);
<a name="l02245"></a>02245 <a class="code" href="group__XCCDF.html#ga6cb5c6fdd0ccc42b1c8cec5313df5804" title="XCCDF role.">xccdf_role_t</a> <a class="code" href="group__XCCDF.html#ga641a4bbe783ce30823bdf18f6de54ff2" title="xccdf_refine_rule">xccdf_refine_rule_get_role</a>(<span class="keyword">const</span> <span class="keyword">struct</span> <a class="code" href="structxccdf__refine__rule.html" title="XCCDF refine rule option used in the profile.">xccdf_refine_rule</a>* rr);
<a name="l02247"></a>02247 <a class="code" href="group__XCCDF.html#ga209163661038a6be4066cdec716c997f" title="XCCDF error, complexity, disruption, or severity level.">xccdf_level_t</a> <a class="code" href="group__XCCDF.html#ga2a121c6ab44f3ff4a18dd7dd246f7ac6" title="xccdf_refine_rule">xccdf_refine_rule_get_severity</a>(<span class="keyword">const</span> <span class="keyword">struct</span> <a class="code" href="structxccdf__refine__rule.html" title="XCCDF refine rule option used in the profile.">xccdf_refine_rule</a>* rr);
<a name="l02249"></a>02249 <span class="keyword">struct </span><a class="code" href="structoscap__text__iterator.html" title="Internationalized string iterator.">oscap_text_iterator</a>* <a class="code" href="group__XCCDF.html#gad83b5f850f0b99332ec77b389b0f95b1" title="xccdf_refine_rule">xccdf_refine_rule_get_remarks</a>(<span class="keyword">const</span> <span class="keyword">struct</span> <a class="code" href="structxccdf__refine__rule.html" title="XCCDF refine rule option used in the profile.">xccdf_refine_rule</a> *rr);
<a name="l02251"></a>02251 <a class="code" href="group__XCCDF.html#ga83ab7d5052d01468f373732e268f47b4" title="Type of a numerical content for a XCCDF value.">xccdf_numeric</a> <a class="code" href="group__XCCDF.html#gacdc874f56b1688f1f1b5c82675ee0427">xccdf_refine_rule_get_weight</a>(<span class="keyword">const</span> <span class="keyword">struct</span> <a class="code" href="structxccdf__refine__rule.html" title="XCCDF refine rule option used in the profile.">xccdf_refine_rule</a> *item);
<a name="l02252"></a>02252 <span class="keyword">const</span> <span class="keywordtype">char</span> * xccdf_refine_value_get_item(<span class="keyword">const</span> <span class="keyword">struct</span> <a class="code" href="structxccdf__refine__value.html" title="XCCDF refine value option used in the profile.">xccdf_refine_value</a>* rv);
<a name="l02254"></a>02254 <span class="keyword">const</span> <span class="keywordtype">char</span> * <a class="code" href="group__XCCDF.html#ga800b3d9b0445626d737f1b41f46deb6f">xccdf_refine_value_get_selector</a>(<span class="keyword">const</span> <span class="keyword">struct</span> <a class="code" href="structxccdf__refine__value.html" title="XCCDF refine value option used in the profile.">xccdf_refine_value</a>* rv);
<a name="l02256"></a>02256 <a class="code" href="group__XCCDF.html#ga4458b04cd1236b95d15ac2d74276c09c" title="Operator to be applied on an xccdf_value.">xccdf_operator_t</a> <a class="code" href="group__XCCDF.html#ga8f97f5e12391e1a1f91368e90c6b4802">xccdf_refine_value_get_oper</a>(<span class="keyword">const</span> <span class="keyword">struct</span> <a class="code" href="structxccdf__refine__value.html" title="XCCDF refine value option used in the profile.">xccdf_refine_value</a>* rv);
<a name="l02258"></a>02258 <span class="keyword">struct </span><a class="code" href="structoscap__text__iterator.html" title="Internationalized string iterator.">oscap_text_iterator</a>* <a class="code" href="group__XCCDF.html#ga553ad37ef782851adc0f03b3586b4eaf">xccdf_refine_value_get_remarks</a>(<span class="keyword">const</span> <span class="keyword">struct</span> <a class="code" href="structxccdf__refine__value.html" title="XCCDF refine value option used in the profile.">xccdf_refine_value</a> *rv);
<a name="l02260"></a>02260 <span class="keyword">const</span> <span class="keywordtype">char</span> *xccdf_setvalue_get_item(<span class="keyword">const</span> <span class="keyword">struct</span> <a class="code" href="structxccdf__setvalue.html" title="XCCDF set value option used in the profile.">xccdf_setvalue</a>* sv);
<a name="l02262"></a>02262 <span class="keyword">const</span> <span class="keywordtype">char</span> *xccdf_setvalue_get_value(<span class="keyword">const</span> <span class="keyword">struct</span> <a class="code" href="structxccdf__setvalue.html" title="XCCDF set value option used in the profile.">xccdf_setvalue</a>* sv);
<a name="l02263"></a>02263
<a name="l02265"></a>02265 <span class="keyword">const</span> <span class="keywordtype">char</span> *<a class="code" href="group__XCCDF.html#ga737dd8bd0117e1ddf3e95e76d19d9b84">xccdf_plain_text_get_id</a>(<span class="keyword">const</span> <span class="keyword">struct</span> <a class="code" href="structxccdf__plain__text.html" title="XCCDF target fact.">xccdf_plain_text</a> *item);
<a name="l02267"></a>02267 <span class="keyword">const</span> <span class="keywordtype">char</span> *<a class="code" href="group__XCCDF.html#ga0bdcf3b840bdc1755ada394c20f2fb2d">xccdf_plain_text_get_text</a>(<span class="keyword">const</span> <span class="keyword">struct</span> <a class="code" href="structxccdf__plain__text.html" title="XCCDF target fact.">xccdf_plain_text</a> *item);
<a name="l02268"></a>02268
<a name="l02270"></a>02270 <span class="keyword">struct </span><a class="code" href="structxccdf__benchmark.html" title="Top level XCCDF structure containing profiles, rules, values and results.">xccdf_benchmark</a> *<a class="code" href="group__XCCDF.html#gaaf9c32fe2e68bee6f9c1fc62ec790e75">xccdf_result_get_benchmark</a>(<span class="keyword">const</span> <span class="keyword">struct</span> <a class="code" href="structxccdf__result.html" title="Actual results of running a XCCDF test or profile.">xccdf_result</a> *item);
<a name="l02272"></a>02272 <span class="keyword">const</span> <span class="keywordtype">char</span> *<a class="code" href="group__XCCDF.html#ga6e59c1d9a2912573bff0f56529891f16">xccdf_result_get_id</a>(<span class="keyword">const</span> <span class="keyword">struct</span> <a class="code" href="structxccdf__result.html" title="Actual results of running a XCCDF test or profile.">xccdf_result</a> *item);
<a name="l02274"></a>02274 <span class="keyword">struct </span><a class="code" href="structoscap__text__iterator.html" title="Internationalized string iterator.">oscap_text_iterator</a> *<a class="code" href="group__XCCDF.html#ga63bf49d4b7ee9c09d00cf20be1730f8d">xccdf_result_get_title</a>(<span class="keyword">const</span> <span class="keyword">struct</span> <a class="code" href="structxccdf__result.html" title="Actual results of running a XCCDF test or profile.">xccdf_result</a> *item);
<a name="l02276"></a>02276 <span class="keyword">const</span> <span class="keywordtype">char</span> *<a class="code" href="group__XCCDF.html#ga4eca30124e310bbeafd29a9856dce569">xccdf_result_get_version</a>(<span class="keyword">const</span> <span class="keyword">struct</span> <a class="code" href="structxccdf__result.html" title="Actual results of running a XCCDF test or profile.">xccdf_result</a> *item);
<a name="l02278"></a>02278 <span class="keyword">struct </span><a class="code" href="structoscap__string__iterator.html" title="String iterator.">oscap_string_iterator</a> *<a class="code" href="group__XCCDF.html#ga2d17d8ce2b40907cecdc6e57275eb370">xccdf_result_get_platforms</a>(<span class="keyword">const</span> <span class="keyword">struct</span> <a class="code" href="structxccdf__result.html" title="Actual results of running a XCCDF test or profile.">xccdf_result</a> *item);
<a name="l02280"></a>02280 <span class="keyword">struct </span><a class="code" href="structxccdf__status__iterator.html" title="Status iterator.">xccdf_status_iterator</a> *<a class="code" href="group__XCCDF.html#ga843394bc95d4b683646e79eb2f4c6303">xccdf_result_get_statuses</a>(<span class="keyword">const</span> <span class="keyword">struct</span> <a class="code" href="structxccdf__result.html" title="Actual results of running a XCCDF test or profile.">xccdf_result</a> *item);
<a name="l02282"></a>02282 <span class="keyword">const</span> <span class="keywordtype">char</span> *<a class="code" href="group__XCCDF.html#ga17896abe91c923ab382f46707af3792d">xccdf_result_get_test_system</a>(<span class="keyword">const</span> <span class="keyword">struct</span> <a class="code" href="structxccdf__result.html" title="Actual results of running a XCCDF test or profile.">xccdf_result</a> *item);
<a name="l02284"></a>02284 <span class="keyword">const</span> <span class="keywordtype">char</span> *<a class="code" href="group__XCCDF.html#gaed335f2e8b381bbea9e2b784755eaf05">xccdf_result_get_benchmark_uri</a>(<span class="keyword">const</span> <span class="keyword">struct</span> <a class="code" href="structxccdf__result.html" title="Actual results of running a XCCDF test or profile.">xccdf_result</a> *item);
<a name="l02286"></a>02286 <span class="keyword">const</span> <span class="keywordtype">char</span> *<a class="code" href="group__XCCDF.html#ga0cbb70a41ea6e5ef0508dc11bc7c375d">xccdf_result_get_profile</a>(<span class="keyword">const</span> <span class="keyword">struct</span> <a class="code" href="structxccdf__result.html" title="Actual results of running a XCCDF test or profile.">xccdf_result</a> *item);
<a name="l02288"></a>02288 <span class="keyword">struct </span><a class="code" href="structxccdf__identity__iterator.html" title="Reference iterator.">xccdf_identity_iterator</a> *<a class="code" href="group__XCCDF.html#gaa373816b29b9559096484cacfaba9c96">xccdf_result_get_identities</a>(<span class="keyword">const</span> <span class="keyword">struct</span> <a class="code" href="structxccdf__result.html" title="Actual results of running a XCCDF test or profile.">xccdf_result</a> *item);
<a name="l02290"></a>02290 <span class="keyword">struct </span><a class="code" href="structoscap__string__iterator.html" title="String iterator.">oscap_string_iterator</a> *<a class="code" href="group__XCCDF.html#ga07712142ac1a17e997ec37f2afe35ba8">xccdf_result_get_targets</a>(<span class="keyword">const</span> <span class="keyword">struct</span> <a class="code" href="structxccdf__result.html" title="Actual results of running a XCCDF test or profile.">xccdf_result</a> *item);
<a name="l02292"></a>02292 <span class="keyword">struct </span><a class="code" href="structoscap__string__iterator.html" title="String iterator.">oscap_string_iterator</a> *<a class="code" href="group__XCCDF.html#gab9f3bcdc823078afb77fe82b96e6c60f">xccdf_result_get_target_addresses</a>(<span class="keyword">const</span> <span class="keyword">struct</span> <a class="code" href="structxccdf__result.html" title="Actual results of running a XCCDF test or profile.">xccdf_result</a> *item);
<a name="l02294"></a>02294 <span class="keyword">struct </span><a class="code" href="structoscap__string__iterator.html" title="String iterator.">oscap_string_iterator</a> *<a class="code" href="group__XCCDF.html#gaf499d7db15326115a249e141abe6dd24">xccdf_result_get_organizations</a>(<span class="keyword">const</span> <span class="keyword">struct</span> <a class="code" href="structxccdf__result.html" title="Actual results of running a XCCDF test or profile.">xccdf_result</a> *item);
<a name="l02296"></a>02296 <span class="keyword">struct </span><a class="code" href="structoscap__text__iterator.html" title="Internationalized string iterator.">oscap_text_iterator</a> *<a class="code" href="group__XCCDF.html#ga95616b8efd4d0638a8ec6b9c99feaebd">xccdf_result_get_remarks</a>(<span class="keyword">const</span> <span class="keyword">struct</span> <a class="code" href="structxccdf__result.html" title="Actual results of running a XCCDF test or profile.">xccdf_result</a> *item);
<a name="l02298"></a>02298 <span class="keyword">struct </span><a class="code" href="structxccdf__target__fact__iterator.html" title="Override iterator.">xccdf_target_fact_iterator</a> *<a class="code" href="group__XCCDF.html#ga5c6a04b6e170d2975d022877b258018e">xccdf_result_get_target_facts</a>(<span class="keyword">const</span> <span class="keyword">struct</span> <a class="code" href="structxccdf__result.html" title="Actual results of running a XCCDF test or profile.">xccdf_result</a> *item);
<a name="l02300"></a>02300 <span class="keyword">struct </span><a class="code" href="structxccdf__setvalue__iterator.html" title="Set value iterator.">xccdf_setvalue_iterator</a> *<a class="code" href="group__XCCDF.html#ga665945a705547d1a32372500bfc92841">xccdf_result_get_setvalues</a>(<span class="keyword">const</span> <span class="keyword">struct</span> <a class="code" href="structxccdf__result.html" title="Actual results of running a XCCDF test or profile.">xccdf_result</a> *item);
<a name="l02302"></a>02302 <span class="keyword">struct </span><a class="code" href="structxccdf__rule__result__iterator.html" title="Override iterator.">xccdf_rule_result_iterator</a> *<a class="code" href="group__XCCDF.html#gad0a7a26a94c2c98f243cae289aaedfd7">xccdf_result_get_rule_results</a>(<span class="keyword">const</span> <span class="keyword">struct</span> <a class="code" href="structxccdf__result.html" title="Actual results of running a XCCDF test or profile.">xccdf_result</a> *item);
<a name="l02304"></a>02304 <span class="keyword">struct </span><a class="code" href="structxccdf__score__iterator.html" title="Override iterator.">xccdf_score_iterator</a> *<a class="code" href="group__XCCDF.html#ga4e42b3096e6da9bbb05baff335e9a598">xccdf_result_get_scores</a>(<span class="keyword">const</span> <span class="keyword">struct</span> <a class="code" href="structxccdf__result.html" title="Actual results of running a XCCDF test or profile.">xccdf_result</a> *item);
<a name="l02306"></a>02306 time_t <a class="code" href="group__XCCDF.html#ga5642accb75f91078bbc156f38ef8b337">xccdf_result_get_start_time</a>(<span class="keyword">const</span> <span class="keyword">struct</span> <a class="code" href="structxccdf__result.html" title="Actual results of running a XCCDF test or profile.">xccdf_result</a> *item);
<a name="l02308"></a>02308 time_t <a class="code" href="group__XCCDF.html#ga82da3ec7c6320d4beddbc27cd0cbbddd">xccdf_result_get_end_time</a>(<span class="keyword">const</span> <span class="keyword">struct</span> <a class="code" href="structxccdf__result.html" title="Actual results of running a XCCDF test or profile.">xccdf_result</a> *item);
<a name="l02309"></a>02309
<a name="l02311"></a>02311 time_t <a class="code" href="group__XCCDF.html#gafe611c416ece4f5c68d1dc02a8902827">xccdf_rule_result_get_time</a>(<span class="keyword">const</span> <span class="keyword">struct</span> <a class="code" href="structxccdf__rule__result.html" title="XCCDF rule result.">xccdf_rule_result</a> *item);
<a name="l02313"></a>02313 <a class="code" href="group__XCCDF.html#ga6cb5c6fdd0ccc42b1c8cec5313df5804" title="XCCDF role.">xccdf_role_t</a> <a class="code" href="group__XCCDF.html#gacc856acd290567b0c36efbac946edbdb">xccdf_rule_result_get_role</a>(<span class="keyword">const</span> <span class="keyword">struct</span> <a class="code" href="structxccdf__rule__result.html" title="XCCDF rule result.">xccdf_rule_result</a> *item);
<a name="l02315"></a>02315 <span class="keywordtype">float</span> <a class="code" href="group__XCCDF.html#ga0beff94aeca4d77a806723052fcb1ad3">xccdf_rule_result_get_weight</a>(<span class="keyword">const</span> <span class="keyword">struct</span> <a class="code" href="structxccdf__rule__result.html" title="XCCDF rule result.">xccdf_rule_result</a> *item);
<a name="l02317"></a>02317 <a class="code" href="group__XCCDF.html#ga209163661038a6be4066cdec716c997f" title="XCCDF error, complexity, disruption, or severity level.">xccdf_level_t</a> <a class="code" href="group__XCCDF.html#ga59274207590469c293e18160791bef23">xccdf_rule_result_get_severity</a>(<span class="keyword">const</span> <span class="keyword">struct</span> <a class="code" href="structxccdf__rule__result.html" title="XCCDF rule result.">xccdf_rule_result</a> *item);
<a name="l02319"></a>02319 <a class="code" href="group__XCCDF.html#gabf34f4480799efc8e1af5f4706d2666d" title="Test result.">xccdf_test_result_type_t</a> <a class="code" href="group__XCCDF.html#ga2f461a1ffbf582ba11b8a1f88e80f6c5">xccdf_rule_result_get_result</a>(<span class="keyword">const</span> <span class="keyword">struct</span> <a class="code" href="structxccdf__rule__result.html" title="XCCDF rule result.">xccdf_rule_result</a> *item);
<a name="l02321"></a>02321 <span class="keyword">const</span> <span class="keywordtype">char</span> *<a class="code" href="group__XCCDF.html#ga82cea76a6a0ea83d65cad900dbd9b135">xccdf_rule_result_get_version</a>(<span class="keyword">const</span> <span class="keyword">struct</span> <a class="code" href="structxccdf__rule__result.html" title="XCCDF rule result.">xccdf_rule_result</a> *item);
<a name="l02323"></a>02323 <span class="keyword">const</span> <span class="keywordtype">char</span> *<a class="code" href="group__XCCDF.html#gac3349443150318224d64308ad29636d7">xccdf_rule_result_get_idref</a>(<span class="keyword">const</span> <span class="keyword">struct</span> <a class="code" href="structxccdf__rule__result.html" title="XCCDF rule result.">xccdf_rule_result</a> *item);
<a name="l02325"></a>02325 <span class="keyword">struct </span><a class="code" href="structxccdf__ident__iterator.html" title="Ident iterator.">xccdf_ident_iterator</a> *<a class="code" href="group__XCCDF.html#ga2706a22fc53a67cec89ebaf5edc47f84">xccdf_rule_result_get_idents</a>(<span class="keyword">const</span> <span class="keyword">struct</span> <a class="code" href="structxccdf__rule__result.html" title="XCCDF rule result.">xccdf_rule_result</a> *item);
<a name="l02327"></a>02327 <span class="keyword">struct </span><a class="code" href="structxccdf__fix__iterator.html" title="Fix iterator.">xccdf_fix_iterator</a> *<a class="code" href="group__XCCDF.html#ga8f3a04d1f95ce68f9ba7f021d492a3a3">xccdf_rule_result_get_fixes</a>(<span class="keyword">const</span> <span class="keyword">struct</span> <a class="code" href="structxccdf__rule__result.html" title="XCCDF rule result.">xccdf_rule_result</a> *item);
<a name="l02329"></a>02329 <span class="keyword">struct </span><a class="code" href="structxccdf__check__iterator.html" title="Check iterator.">xccdf_check_iterator</a> *<a class="code" href="group__XCCDF.html#gacd8534584d8ffadd3d4b9623de425feb">xccdf_rule_result_get_checks</a>(<span class="keyword">const</span> <span class="keyword">struct</span> <a class="code" href="structxccdf__rule__result.html" title="XCCDF rule result.">xccdf_rule_result</a> *item);
<a name="l02331"></a>02331 <span class="keyword">struct </span><a class="code" href="structxccdf__override__iterator.html" title="Override iterator.">xccdf_override_iterator</a> *<a class="code" href="group__XCCDF.html#gac7c93f06d081e04f7597d384cd5aa0c8">xccdf_rule_result_get_overrides</a>(<span class="keyword">const</span> <span class="keyword">struct</span> <a class="code" href="structxccdf__rule__result.html" title="XCCDF rule result.">xccdf_rule_result</a> *item);
<a name="l02333"></a>02333 <span class="keyword">struct </span><a class="code" href="structxccdf__message__iterator.html" title="Message iterator.">xccdf_message_iterator</a> *<a class="code" href="group__XCCDF.html#gade8f052b581de78c260c64f525c523f4">xccdf_rule_result_get_messages</a>(<span class="keyword">const</span> <span class="keyword">struct</span> <a class="code" href="structxccdf__rule__result.html" title="XCCDF rule result.">xccdf_rule_result</a> *item);
<a name="l02335"></a>02335 <span class="keyword">struct </span><a class="code" href="structxccdf__instance__iterator.html" title="Instance iterator.">xccdf_instance_iterator</a> *<a class="code" href="group__XCCDF.html#gadc083ec65d780a0d651b024c444319fd">xccdf_rule_result_get_instances</a>(<span class="keyword">const</span> <span class="keyword">struct</span> <a class="code" href="structxccdf__rule__result.html" title="XCCDF rule result.">xccdf_rule_result</a> *item);
<a name="l02337"></a>02337 <span class="keywordtype">bool</span> <a class="code" href="group__XCCDF.html#ga0e1f96c1ca9a8aa3103d0c454df5131a">xccdf_identity_get_authenticated</a>(<span class="keyword">const</span> <span class="keyword">struct</span> <a class="code" href="structxccdf__identity.html" title="XCCDF identity.">xccdf_identity</a> *item);
<a name="l02339"></a>02339 <span class="keywordtype">bool</span> <a class="code" href="group__XCCDF.html#gabc128f574dba3a49d96e00813a9bf548">xccdf_identity_get_privileged</a>(<span class="keyword">const</span> <span class="keyword">struct</span> <a class="code" href="structxccdf__identity.html" title="XCCDF identity.">xccdf_identity</a> *item);
<a name="l02341"></a>02341 <span class="keyword">const</span> <span class="keywordtype">char</span> *<a class="code" href="group__XCCDF.html#gad3b9bbcf2b9071c31d9d0d0ebdbbd648">xccdf_identity_get_name</a>(<span class="keyword">const</span> <span class="keyword">struct</span> <a class="code" href="structxccdf__identity.html" title="XCCDF identity.">xccdf_identity</a> *item);
<a name="l02343"></a>02343 <a class="code" href="group__XCCDF.html#ga83ab7d5052d01468f373732e268f47b4" title="Type of a numerical content for a XCCDF value.">xccdf_numeric</a> <a class="code" href="group__XCCDF.html#gac026b4c0a20d9d2a7bc33dd0e22a7ee8">xccdf_score_get_maximum</a>(<span class="keyword">const</span> <span class="keyword">struct</span> <a class="code" href="structxccdf__score.html" title="XCCDF score.">xccdf_score</a> *item);
<a name="l02345"></a>02345 <a class="code" href="group__XCCDF.html#ga83ab7d5052d01468f373732e268f47b4" title="Type of a numerical content for a XCCDF value.">xccdf_numeric</a> <a class="code" href="group__XCCDF.html#ga644b6165ff8cb160bcf3220b75c08385">xccdf_score_get_score</a>(<span class="keyword">const</span> <span class="keyword">struct</span> <a class="code" href="structxccdf__score.html" title="XCCDF score.">xccdf_score</a> *item);
<a name="l02347"></a>02347 <span class="keyword">const</span> <span class="keywordtype">char</span> *<a class="code" href="group__XCCDF.html#gadb55723ccad2c441282d4787a7d7273c">xccdf_score_get_system</a>(<span class="keyword">const</span> <span class="keyword">struct</span> <a class="code" href="structxccdf__score.html" title="XCCDF score.">xccdf_score</a> *item);
<a name="l02349"></a>02349 time_t <a class="code" href="group__XCCDF.html#ga3a6b26f4ee0401ab49374ea888fb2abf">xccdf_override_get_time</a>(<span class="keyword">const</span> <span class="keyword">struct</span> <a class="code" href="structxccdf__override.html" title="XCCDF override.">xccdf_override</a> *item);
<a name="l02351"></a>02351 <a class="code" href="group__XCCDF.html#gabf34f4480799efc8e1af5f4706d2666d" title="Test result.">xccdf_test_result_type_t</a> <a class="code" href="group__XCCDF.html#ga07de3b42940d11f5d7f4cd07569f6444">xccdf_override_get_new_result</a>(<span class="keyword">const</span> <span class="keyword">struct</span> <a class="code" href="structxccdf__override.html" title="XCCDF override.">xccdf_override</a> *item);
<a name="l02353"></a>02353 <a class="code" href="group__XCCDF.html#gabf34f4480799efc8e1af5f4706d2666d" title="Test result.">xccdf_test_result_type_t</a> <a class="code" href="group__XCCDF.html#ga080f31d91327b8487d6100aae3b19124">xccdf_override_get_old_result</a>(<span class="keyword">const</span> <span class="keyword">struct</span> <a class="code" href="structxccdf__override.html" title="XCCDF override.">xccdf_override</a> *item);
<a name="l02355"></a>02355 <span class="keyword">const</span> <span class="keywordtype">char</span> *<a class="code" href="group__XCCDF.html#gab0cdc708f859a042a384f02970a20d96">xccdf_override_get_authority</a>(<span class="keyword">const</span> <span class="keyword">struct</span> <a class="code" href="structxccdf__override.html" title="XCCDF override.">xccdf_override</a> *item);
<a name="l02357"></a>02357 <span class="keyword">struct </span><a class="code" href="structoscap__text.html" title="Representation of internationalizable character strings.">oscap_text</a> *<a class="code" href="group__XCCDF.html#ga3b7f61f4607e3e0b3cdc5e0f1e73cd87">xccdf_override_get_remark</a>(<span class="keyword">const</span> <span class="keyword">struct</span> <a class="code" href="structxccdf__override.html" title="XCCDF override.">xccdf_override</a> *item);
<a name="l02359"></a>02359 <a class="code" href="group__XCCDF.html#ga1485899f9bf18c3aa0b0efbb6fe2beb7" title="Severity of an xccdf_message.">xccdf_message_severity_t</a> <a class="code" href="group__XCCDF.html#gac91fa791657d119a35e3c77953216f29">xccdf_message_get_severity</a>(<span class="keyword">const</span> <span class="keyword">struct</span> <a class="code" href="structxccdf__message.html" title="XCCDF message.">xccdf_message</a> *item);
<a name="l02361"></a>02361 <span class="keyword">const</span> <span class="keywordtype">char</span> *<a class="code" href="group__XCCDF.html#ga0b5048b0fe3b8e08d8d93b72fb473924">xccdf_message_get_content</a>(<span class="keyword">const</span> <span class="keyword">struct</span> <a class="code" href="structxccdf__message.html" title="XCCDF message.">xccdf_message</a> *item);
<a name="l02363"></a>02363 <a class="code" href="group__XCCDF.html#gaa2d75ea6d3cd6957100f532b2ab8e8a8" title="Type of an xccdf_value.">xccdf_value_type_t</a> <a class="code" href="group__XCCDF.html#gadc78a5066a80302ba2cf1dd557bc0c69">xccdf_target_fact_get_type</a>(<span class="keyword">const</span> <span class="keyword">struct</span> <a class="code" href="structxccdf__target__fact.html" title="XCCDF target fact.">xccdf_target_fact</a> *item);
<a name="l02365"></a>02365 <span class="keyword">const</span> <span class="keywordtype">char</span> *<a class="code" href="group__XCCDF.html#ga17bcf444aca47f77ef07ac723393fcdb">xccdf_target_fact_get_value</a>(<span class="keyword">const</span> <span class="keyword">struct</span> <a class="code" href="structxccdf__target__fact.html" title="XCCDF target fact.">xccdf_target_fact</a> *item);
<a name="l02367"></a>02367 <span class="keyword">const</span> <span class="keywordtype">char</span> *<a class="code" href="group__XCCDF.html#ga3c2da8535f7b3da91b3737789f5135ec">xccdf_target_fact_get_name</a>(<span class="keyword">const</span> <span class="keyword">struct</span> <a class="code" href="structxccdf__target__fact.html" title="XCCDF target fact.">xccdf_target_fact</a> *item);
<a name="l02369"></a>02369 <span class="keyword">const</span> <span class="keywordtype">char</span> *<a class="code" href="group__XCCDF.html#ga60f9e4a4e1d2a1d1d648e34b729f0c67">xccdf_instance_get_context</a>(<span class="keyword">const</span> <span class="keyword">struct</span> <a class="code" href="structxccdf__instance.html" title="XCCDF instance.">xccdf_instance</a> *item);
<a name="l02371"></a>02371 <span class="keyword">const</span> <span class="keywordtype">char</span> *<a class="code" href="group__XCCDF.html#gac606a1c795b2e8df78675c20f7e70ba2">xccdf_instance_get_parent_context</a>(<span class="keyword">const</span> <span class="keyword">struct</span> <a class="code" href="structxccdf__instance.html" title="XCCDF instance.">xccdf_instance</a> *item);
<a name="l02373"></a>02373 <span class="keyword">const</span> <span class="keywordtype">char</span> *<a class="code" href="group__XCCDF.html#ga6b09c466ad4ff362e637d040254a8156">xccdf_instance_get_content</a>(<span class="keyword">const</span> <span class="keyword">struct</span> <a class="code" href="structxccdf__instance.html" title="XCCDF instance.">xccdf_instance</a> *item);
<a name="l02374"></a>02374
<a name="l02375"></a>02375
<a name="l02376"></a>02376 <span class="comment">/************************************************************</span>
<a name="l02377"></a>02377 <span class="comment"> ** @} End of Getters group */</span>
<a name="l02378"></a>02378
<a name="l02379"></a>02379 <span class="comment">/************************************************************/</span>
<a name="l02387"></a>02387
<a name="l02388"></a>02388 <span class="keywordtype">bool</span> <a class="code" href="group__XCCDF.html#ga24d4c52cdeea8b0815e6bb55036353cf">xccdf_item_set_weight</a>(<span class="keyword">struct</span> <a class="code" href="structxccdf__item.html" title="A base class for XCCDF items.">xccdf_item</a> *item, <a class="code" href="group__XCCDF.html#ga83ab7d5052d01468f373732e268f47b4" title="Type of a numerical content for a XCCDF value.">xccdf_numeric</a> newval);
<a name="l02390"></a>02390 <span class="keywordtype">bool</span> <a class="code" href="group__XCCDF.html#ga596edc97baaa93314506c1df1aa92047">xccdf_item_set_id</a>(<span class="keyword">struct</span> <a class="code" href="structxccdf__item.html" title="A base class for XCCDF items.">xccdf_item</a> *item, <span class="keyword">const</span> <span class="keywordtype">char</span> *newval);
<a name="l02392"></a>02392 <span class="keywordtype">bool</span> <a class="code" href="group__XCCDF.html#gab216410a559939ae91d051c679e70f68">xccdf_item_set_cluster_id</a>(<span class="keyword">struct</span> <a class="code" href="structxccdf__item.html" title="A base class for XCCDF items.">xccdf_item</a> *item, <span class="keyword">const</span> <span class="keywordtype">char</span> *newval);
<a name="l02394"></a>02394 <span class="keywordtype">bool</span> <a class="code" href="group__XCCDF.html#ga270b34ceee5dbd077eaed29379a6f359">xccdf_item_set_extends</a>(<span class="keyword">struct</span> <a class="code" href="structxccdf__item.html" title="A base class for XCCDF items.">xccdf_item</a> *item, <span class="keyword">const</span> <span class="keywordtype">char</span> *newval);
<a name="l02396"></a>02396 <span class="keywordtype">bool</span> <a class="code" href="group__XCCDF.html#ga07296fff86f2ee66f74f705ad3bdf3ee">xccdf_item_set_version</a>(<span class="keyword">struct</span> <a class="code" href="structxccdf__item.html" title="A base class for XCCDF items.">xccdf_item</a> *item, <span class="keyword">const</span> <span class="keywordtype">char</span> *newval);
<a name="l02398"></a>02398 <span class="keywordtype">bool</span> <a class="code" href="group__XCCDF.html#ga14043d866e9e3ad3ef659cd60c471e00">xccdf_item_set_version_time</a>(<span class="keyword">struct</span> <a class="code" href="structxccdf__item.html" title="A base class for XCCDF items.">xccdf_item</a> *item, time_t newval);
<a name="l02400"></a>02400 <span class="keywordtype">bool</span> <a class="code" href="group__XCCDF.html#gad1c1c2e65384aa43946bacde19254f1a">xccdf_item_set_version_update</a>(<span class="keyword">struct</span> <a class="code" href="structxccdf__item.html" title="A base class for XCCDF items.">xccdf_item</a> *item, <span class="keyword">const</span> <span class="keywordtype">char</span> *newval);
<a name="l02402"></a>02402 <span class="keywordtype">bool</span> <a class="code" href="group__XCCDF.html#ga931fde4491fbe4eb98447cd20db19da4">xccdf_item_set_abstract</a>(<span class="keyword">struct</span> <a class="code" href="structxccdf__item.html" title="A base class for XCCDF items.">xccdf_item</a> *item, <span class="keywordtype">bool</span> newval);
<a name="l02404"></a>02404 <span class="keywordtype">bool</span> <a class="code" href="group__XCCDF.html#ga9ccbbbf6f99676fc098a5b1333a335e4">xccdf_item_set_hidden</a>(<span class="keyword">struct</span> <a class="code" href="structxccdf__item.html" title="A base class for XCCDF items.">xccdf_item</a> *item, <span class="keywordtype">bool</span> newval);
<a name="l02406"></a>02406 <span class="keywordtype">bool</span> <a class="code" href="group__XCCDF.html#ga37df2c91c8b34c45ea5f16154159f4df">xccdf_item_set_interactive</a>(<span class="keyword">struct</span> <a class="code" href="structxccdf__item.html" title="A base class for XCCDF items.">xccdf_item</a> *item, <span class="keywordtype">bool</span> newval);
<a name="l02408"></a>02408 <span class="keywordtype">bool</span> <a class="code" href="group__XCCDF.html#gaf1b960ff7cc117f0579edec1569b9c19">xccdf_item_set_prohibit_changes</a>(<span class="keyword">struct</span> <a class="code" href="structxccdf__item.html" title="A base class for XCCDF items.">xccdf_item</a> *item, <span class="keywordtype">bool</span> newval);
<a name="l02410"></a>02410 <span class="keywordtype">bool</span> <a class="code" href="group__XCCDF.html#ga853cf91c7e4ff57c39f6d1a8541a37cb">xccdf_item_set_selected</a>(<span class="keyword">struct</span> <a class="code" href="structxccdf__item.html" title="A base class for XCCDF items.">xccdf_item</a> *item, <span class="keywordtype">bool</span> newval);
<a name="l02411"></a>02411
<a name="l02413"></a>02413 <span class="keywordtype">bool</span> <a class="code" href="group__XCCDF.html#ga294a47c163a122a618d49a449c33c71e">xccdf_benchmark_set_resolved</a>(<span class="keyword">struct</span> <a class="code" href="structxccdf__benchmark.html" title="Top level XCCDF structure containing profiles, rules, values and results.">xccdf_benchmark</a> *item, <span class="keywordtype">bool</span> newval);
<a name="l02414"></a>02414
<a name="l02416"></a>02416 <span class="keywordtype">bool</span> <a class="code" href="group__XCCDF.html#ga33be99e326ab39ddaff56a017b9a1255">xccdf_benchmark_set_metadata</a>(<span class="keyword">struct</span> <a class="code" href="structxccdf__benchmark.html" title="Top level XCCDF structure containing profiles, rules, values and results.">xccdf_benchmark</a> *item, <span class="keyword">const</span> <span class="keywordtype">char</span> *newval);
<a name="l02418"></a>02418 <span class="keywordtype">bool</span> <a class="code" href="group__XCCDF.html#ga79685f9db64304378c156582dede161c">xccdf_benchmark_set_style_href</a>(<span class="keyword">struct</span> <a class="code" href="structxccdf__benchmark.html" title="Top level XCCDF structure containing profiles, rules, values and results.">xccdf_benchmark</a> *item, <span class="keyword">const</span> <span class="keywordtype">char</span> *newval);
<a name="l02420"></a>02420 <span class="keywordtype">bool</span> <a class="code" href="group__XCCDF.html#gaeb877f43e25ee1d5ef561dbf48f74d1a">xccdf_benchmark_set_style</a>(<span class="keyword">struct</span> <a class="code" href="structxccdf__benchmark.html" title="Top level XCCDF structure containing profiles, rules, values and results.">xccdf_benchmark</a> *item, <span class="keyword">const</span> <span class="keywordtype">char</span> *newval);
<a name="l02422"></a>02422 <span class="keywordtype">bool</span> <a class="code" href="group__XCCDF.html#ga0065b7ae8e50617d9ac8e8c45f10ac65">xccdf_benchmark_set_id</a>(<span class="keyword">struct</span> <a class="code" href="structxccdf__benchmark.html" title="Top level XCCDF structure containing profiles, rules, values and results.">xccdf_benchmark</a> *item, <span class="keyword">const</span> <span class="keywordtype">char</span> *newval);
<a name="l02424"></a>02424 <span class="keywordtype">bool</span> <a class="code" href="group__XCCDF.html#ga1a64271b9a1952d2ce2130b1f97b7e43">xccdf_benchmark_set_version</a>(<span class="keyword">struct</span> <a class="code" href="structxccdf__benchmark.html" title="Top level XCCDF structure containing profiles, rules, values and results.">xccdf_benchmark</a> *item, <span class="keyword">const</span> <span class="keywordtype">char</span> *newval);
<a name="l02426"></a>02426 <span class="keywordtype">bool</span> <a class="code" href="group__XCCDF.html#gad26a92995ab034296a1b7bf6d8b39c92">xccdf_benchmark_set_version_time</a>(<span class="keyword">struct</span> <a class="code" href="structxccdf__benchmark.html" title="Top level XCCDF structure containing profiles, rules, values and results.">xccdf_benchmark</a> *item, time_t newval);
<a name="l02428"></a>02428 <span class="keywordtype">bool</span> <a class="code" href="group__XCCDF.html#gaa7a238d79a0f77e8603eac301c5ea80b">xccdf_benchmark_set_version_update</a>(<span class="keyword">struct</span> <a class="code" href="structxccdf__benchmark.html" title="Top level XCCDF structure containing profiles, rules, values and results.">xccdf_benchmark</a> *item, <span class="keyword">const</span> <span class="keywordtype">char</span> *newval);
<a name="l02429"></a>02429
<a name="l02431"></a>02431 <span class="keywordtype">bool</span> <a class="code" href="group__XCCDF.html#ga40624656146dc614abc5730db5e4048e">xccdf_profile_set_note_tag</a>(<span class="keyword">struct</span> <a class="code" href="structxccdf__profile.html" title="XCCDF profile is a set of tests and their settings in a compact package.">xccdf_profile</a> *item, <span class="keyword">const</span> <span class="keywordtype">char</span> *newval);
<a name="l02433"></a>02433 <span class="keywordtype">bool</span> <a class="code" href="group__XCCDF.html#ga89b1d5e244460d0a55ed2a67e1ec0bfd">xccdf_profile_set_id</a>(<span class="keyword">struct</span> <a class="code" href="structxccdf__profile.html" title="XCCDF profile is a set of tests and their settings in a compact package.">xccdf_profile</a> *item, <span class="keyword">const</span> <span class="keywordtype">char</span> *newval);
<a name="l02435"></a>02435 <span class="keywordtype">bool</span> <a class="code" href="group__XCCDF.html#ga09cea00e9dd68642c261f89d300a9673">xccdf_profile_set_abstract</a>(<span class="keyword">struct</span> <a class="code" href="structxccdf__profile.html" title="XCCDF profile is a set of tests and their settings in a compact package.">xccdf_profile</a> *item, <span class="keywordtype">bool</span> newval);
<a name="l02437"></a>02437 <span class="keywordtype">bool</span> <a class="code" href="group__XCCDF.html#ga3bedeb6863f483ab056b30b5eaec877e">xccdf_profile_set_prohibit_changes</a>(<span class="keyword">struct</span> <a class="code" href="structxccdf__profile.html" title="XCCDF profile is a set of tests and their settings in a compact package.">xccdf_profile</a> *item, <span class="keywordtype">bool</span> newval);
<a name="l02439"></a>02439 <span class="keywordtype">bool</span> <a class="code" href="group__XCCDF.html#gaa0489630ef6420c6ab0bbea941fc82b8">xccdf_profile_set_extends</a>(<span class="keyword">struct</span> <a class="code" href="structxccdf__profile.html" title="XCCDF profile is a set of tests and their settings in a compact package.">xccdf_profile</a> *item, <span class="keyword">const</span> <span class="keywordtype">char</span> *newval);
<a name="l02441"></a>02441 <span class="keywordtype">bool</span> <a class="code" href="group__XCCDF.html#ga54e8d7a4628eb9943dbe1e5ba09f3d96">xccdf_profile_set_version</a>(<span class="keyword">struct</span> <a class="code" href="structxccdf__profile.html" title="XCCDF profile is a set of tests and their settings in a compact package.">xccdf_profile</a> *item, <span class="keyword">const</span> <span class="keywordtype">char</span> *newval);
<a name="l02443"></a>02443 <span class="keywordtype">bool</span> <a class="code" href="group__XCCDF.html#gacdeacb7d013ee05f3ee97dd415c88b9d">xccdf_profile_set_version_time</a>(<span class="keyword">struct</span> <a class="code" href="structxccdf__profile.html" title="XCCDF profile is a set of tests and their settings in a compact package.">xccdf_profile</a> *item, time_t newval);
<a name="l02445"></a>02445 <span class="keywordtype">bool</span> <a class="code" href="group__XCCDF.html#ga36523e4113f67cfed377d1c44f1a4a61">xccdf_profile_set_version_update</a>(<span class="keyword">struct</span> <a class="code" href="structxccdf__profile.html" title="XCCDF profile is a set of tests and their settings in a compact package.">xccdf_profile</a> *item, <span class="keyword">const</span> <span class="keywordtype">char</span> *newval);
<a name="l02446"></a>02446
<a name="l02448"></a>02448 <span class="keywordtype">bool</span> <a class="code" href="group__XCCDF.html#gac303eb743bbbc962c79d2954e1c036f7">xccdf_rule_set_id</a>(<span class="keyword">struct</span> <a class="code" href="structxccdf__rule.html" title="XCCDF rule defines a test execution.">xccdf_rule</a> *item, <span class="keyword">const</span> <span class="keywordtype">char</span> *newval);
<a name="l02450"></a>02450 <span class="keywordtype">bool</span> <a class="code" href="group__XCCDF.html#gaf7ce5fb75242d26ede9f5b38d935d017">xccdf_rule_set_cluster_id</a>(<span class="keyword">struct</span> <a class="code" href="structxccdf__rule.html" title="XCCDF rule defines a test execution.">xccdf_rule</a> *item, <span class="keyword">const</span> <span class="keywordtype">char</span> *newval);
<a name="l02452"></a>02452 <span class="keywordtype">bool</span> <a class="code" href="group__XCCDF.html#gaba4c1a23585bfecde50f397e57215925">xccdf_rule_set_extends</a>(<span class="keyword">struct</span> <a class="code" href="structxccdf__rule.html" title="XCCDF rule defines a test execution.">xccdf_rule</a> *item, <span class="keyword">const</span> <span class="keywordtype">char</span> *newval);
<a name="l02454"></a>02454 <span class="keywordtype">bool</span> <a class="code" href="group__XCCDF.html#ga3a996b30096b22190586d6e5ec1834b5">xccdf_rule_set_version</a>(<span class="keyword">struct</span> <a class="code" href="structxccdf__rule.html" title="XCCDF rule defines a test execution.">xccdf_rule</a> *item, <span class="keyword">const</span> <span class="keywordtype">char</span> *newval);
<a name="l02456"></a>02456 <span class="keywordtype">bool</span> <a class="code" href="group__XCCDF.html#gad4e043bfa5ba4ea5f7dffb111f5f1235">xccdf_rule_set_version_time</a>(<span class="keyword">struct</span> <a class="code" href="structxccdf__rule.html" title="XCCDF rule defines a test execution.">xccdf_rule</a> *item, time_t newval);
<a name="l02458"></a>02458 <span class="keywordtype">bool</span> <a class="code" href="group__XCCDF.html#ga36c646afa0814ef2adf9bcc055456a4b">xccdf_rule_set_version_update</a>(<span class="keyword">struct</span> <a class="code" href="structxccdf__rule.html" title="XCCDF rule defines a test execution.">xccdf_rule</a> *item, <span class="keyword">const</span> <span class="keywordtype">char</span> *newval);
<a name="l02460"></a>02460 <span class="keywordtype">bool</span> <a class="code" href="group__XCCDF.html#ga33d0ac81a6954d3fffb310be2e2308d5">xccdf_rule_set_abstract</a>(<span class="keyword">struct</span> <a class="code" href="structxccdf__rule.html" title="XCCDF rule defines a test execution.">xccdf_rule</a> *item, <span class="keywordtype">bool</span> newval);
<a name="l02462"></a>02462 <span class="keywordtype">bool</span> <a class="code" href="group__XCCDF.html#gab0b4f412b46a64b48fda3dbd0a2fab11">xccdf_rule_set_hidden</a>(<span class="keyword">struct</span> <a class="code" href="structxccdf__rule.html" title="XCCDF rule defines a test execution.">xccdf_rule</a> *item, <span class="keywordtype">bool</span> newval);
<a name="l02464"></a>02464 <span class="keywordtype">bool</span> <a class="code" href="group__XCCDF.html#ga95df88dc11b1f8278e98b0b344fd8b3f">xccdf_rule_set_prohibit_changes</a>(<span class="keyword">struct</span> <a class="code" href="structxccdf__rule.html" title="XCCDF rule defines a test execution.">xccdf_rule</a> *item, <span class="keywordtype">bool</span> newval);
<a name="l02466"></a>02466 <span class="keywordtype">bool</span> <a class="code" href="group__XCCDF.html#ga3e8adaf90165ae1144c5f8f539942242">xccdf_rule_set_selected</a>(<span class="keyword">struct</span> <a class="code" href="structxccdf__rule.html" title="XCCDF rule defines a test execution.">xccdf_rule</a> *item, <span class="keywordtype">bool</span> newval);
<a name="l02468"></a>02468 <span class="keywordtype">bool</span> <a class="code" href="group__XCCDF.html#gacdb315f962b2ea7cf0676ec65a8fa321">xccdf_rule_set_interactive</a>(<span class="keyword">struct</span> <a class="code" href="structxccdf__rule.html" title="XCCDF rule defines a test execution.">xccdf_rule</a> *item, <span class="keywordtype">bool</span> newval);
<a name="l02470"></a>02470 <span class="keywordtype">bool</span> <a class="code" href="group__XCCDF.html#ga8c46a5930abbd467d94bede1b217da71">xccdf_rule_set_multiple</a>(<span class="keyword">struct</span> <a class="code" href="structxccdf__rule.html" title="XCCDF rule defines a test execution.">xccdf_rule</a> *item, <span class="keywordtype">bool</span> newval);
<a name="l02472"></a>02472 <span class="comment">//bool xccdf_rule_set_selector(struct xccdf_rule *item, const char * selector);</span>
<a name="l02474"></a>02474 <span class="comment"></span><span class="keywordtype">bool</span> <a class="code" href="group__XCCDF.html#ga8dceec728a6ae70a19899b8419be73af">xccdf_rule_set_impact_metric</a>(<span class="keyword">struct</span> <a class="code" href="structxccdf__rule.html" title="XCCDF rule defines a test execution.">xccdf_rule</a> *item, <span class="keyword">const</span> <span class="keywordtype">char</span> *newval);
<a name="l02476"></a>02476 <span class="keywordtype">bool</span> <a class="code" href="group__XCCDF.html#ga49ef9d2b0ca4e74b296a9f1dc1dafb60">xccdf_rule_set_role</a>(<span class="keyword">struct</span> <a class="code" href="structxccdf__rule.html" title="XCCDF rule defines a test execution.">xccdf_rule</a> *item, <a class="code" href="group__XCCDF.html#ga6cb5c6fdd0ccc42b1c8cec5313df5804" title="XCCDF role.">xccdf_role_t</a> newval);
<a name="l02478"></a>02478 <span class="keywordtype">bool</span> <a class="code" href="group__XCCDF.html#ga1c8a92a6816375de5a1f164d5ec823d5">xccdf_rule_set_severity</a>(<span class="keyword">struct</span> <a class="code" href="structxccdf__rule.html" title="XCCDF rule defines a test execution.">xccdf_rule</a> *item, <a class="code" href="group__XCCDF.html#ga209163661038a6be4066cdec716c997f" title="XCCDF error, complexity, disruption, or severity level.">xccdf_level_t</a> newval);
<a name="l02479"></a>02479
<a name="l02481"></a>02481 <span class="keywordtype">bool</span> <a class="code" href="group__XCCDF.html#ga7f3b800ccd89a3ea0508242f0464b100">xccdf_group_set_id</a>(<span class="keyword">struct</span> <a class="code" href="structxccdf__group.html" title="XCCDF rule group.">xccdf_group</a> *item, <span class="keyword">const</span> <span class="keywordtype">char</span> *newval);
<a name="l02483"></a>02483 <span class="keywordtype">bool</span> <a class="code" href="group__XCCDF.html#gaaafc9dfb3df21c810b7490f628f7f636">xccdf_group_set_cluster_id</a>(<span class="keyword">struct</span> <a class="code" href="structxccdf__group.html" title="XCCDF rule group.">xccdf_group</a> *item, <span class="keyword">const</span> <span class="keywordtype">char</span> *newval);
<a name="l02485"></a>02485 <span class="keywordtype">bool</span> <a class="code" href="group__XCCDF.html#gabebbb5661cf8976e0eb6ce0eab8e1bc4">xccdf_group_set_extends</a>(<span class="keyword">struct</span> <a class="code" href="structxccdf__group.html" title="XCCDF rule group.">xccdf_group</a> *item, <span class="keyword">const</span> <span class="keywordtype">char</span> *newval);
<a name="l02487"></a>02487 <span class="keywordtype">bool</span> <a class="code" href="group__XCCDF.html#ga97e261702c88f078ce95a5821412a385">xccdf_group_set_version</a>(<span class="keyword">struct</span> <a class="code" href="structxccdf__group.html" title="XCCDF rule group.">xccdf_group</a> *item, <span class="keyword">const</span> <span class="keywordtype">char</span> *newval);
<a name="l02489"></a>02489 <span class="keywordtype">bool</span> <a class="code" href="group__XCCDF.html#ga840354a7f7a79301462ac11db6799cd7">xccdf_group_set_version_time</a>(<span class="keyword">struct</span> <a class="code" href="structxccdf__group.html" title="XCCDF rule group.">xccdf_group</a> *item, time_t newval);
<a name="l02491"></a>02491 <span class="keywordtype">bool</span> <a class="code" href="group__XCCDF.html#ga5b8c948d5feb593a60ae7cf35d47b6d8">xccdf_group_set_version_update</a>(<span class="keyword">struct</span> <a class="code" href="structxccdf__group.html" title="XCCDF rule group.">xccdf_group</a> *item, <span class="keyword">const</span> <span class="keywordtype">char</span> *newval);
<a name="l02493"></a>02493 <span class="keywordtype">bool</span> <a class="code" href="group__XCCDF.html#ga7902072c2f264031565bfc4aa5bbbc14">xccdf_group_set_abstract</a>(<span class="keyword">struct</span> <a class="code" href="structxccdf__group.html" title="XCCDF rule group.">xccdf_group</a> *item, <span class="keywordtype">bool</span> newval);
<a name="l02495"></a>02495 <span class="keywordtype">bool</span> <a class="code" href="group__XCCDF.html#ga53e3777f9baf2234eb5a10f2f6e2ad8b">xccdf_group_set_hidden</a>(<span class="keyword">struct</span> <a class="code" href="structxccdf__group.html" title="XCCDF rule group.">xccdf_group</a> *item, <span class="keywordtype">bool</span> newval);
<a name="l02497"></a>02497 <span class="keywordtype">bool</span> <a class="code" href="group__XCCDF.html#ga1a6377f104c42cbfb2c9ec9ffaca4df9">xccdf_group_set_prohibit_changes</a>(<span class="keyword">struct</span> <a class="code" href="structxccdf__group.html" title="XCCDF rule group.">xccdf_group</a> *item, <span class="keywordtype">bool</span> newval);
<a name="l02499"></a>02499 <span class="keywordtype">bool</span> <a class="code" href="group__XCCDF.html#gad8ea5e4db6624aeb5709c39e32b96537">xccdf_group_set_selected</a>(<span class="keyword">struct</span> <a class="code" href="structxccdf__group.html" title="XCCDF rule group.">xccdf_group</a> *item, <span class="keywordtype">bool</span> newval);
<a name="l02500"></a>02500
<a name="l02502"></a>02502 <span class="keywordtype">bool</span> <a class="code" href="group__XCCDF.html#gaf67d879da29f835e2c12c07725261ac1">xccdf_value_set_id</a>(<span class="keyword">struct</span> <a class="code" href="structxccdf__value.html" title="XCCDF Value allows test parametrization or capturing output of tests.">xccdf_value</a> *item, <span class="keyword">const</span> <span class="keywordtype">char</span> *newval);
<a name="l02504"></a>02504 <span class="keywordtype">bool</span> <a class="code" href="group__XCCDF.html#gafba039ed03ac5f969ad3f3f566c6efe4">xccdf_value_set_cluster_id</a>(<span class="keyword">struct</span> <a class="code" href="structxccdf__value.html" title="XCCDF Value allows test parametrization or capturing output of tests.">xccdf_value</a> *item, <span class="keyword">const</span> <span class="keywordtype">char</span> *newval);
<a name="l02506"></a>02506 <span class="keywordtype">bool</span> <a class="code" href="group__XCCDF.html#gaecf5808fb8a695decf360499a261dfff">xccdf_value_set_extends</a>(<span class="keyword">struct</span> <a class="code" href="structxccdf__value.html" title="XCCDF Value allows test parametrization or capturing output of tests.">xccdf_value</a> *item, <span class="keyword">const</span> <span class="keywordtype">char</span> *newval);
<a name="l02508"></a>02508 <span class="keywordtype">bool</span> <a class="code" href="group__XCCDF.html#ga603c033e7763eda18037959c490df193">xccdf_value_set_version</a>(<span class="keyword">struct</span> <a class="code" href="structxccdf__value.html" title="XCCDF Value allows test parametrization or capturing output of tests.">xccdf_value</a> *item, <span class="keyword">const</span> <span class="keywordtype">char</span> *newval);
<a name="l02510"></a>02510 <span class="keywordtype">bool</span> <a class="code" href="group__XCCDF.html#ga4f268aba07585f769a98e39080bfd5bf">xccdf_value_set_version_time</a>(<span class="keyword">struct</span> <a class="code" href="structxccdf__value.html" title="XCCDF Value allows test parametrization or capturing output of tests.">xccdf_value</a> *item, time_t newval);
<a name="l02512"></a>02512 <span class="keywordtype">bool</span> <a class="code" href="group__XCCDF.html#ga42a5f346d4bf7cc5d55b4b54656dbbcf">xccdf_value_set_version_update</a>(<span class="keyword">struct</span> <a class="code" href="structxccdf__value.html" title="XCCDF Value allows test parametrization or capturing output of tests.">xccdf_value</a> *item, <span class="keyword">const</span> <span class="keywordtype">char</span> *newval);
<a name="l02514"></a>02514 <span class="keywordtype">bool</span> <a class="code" href="group__XCCDF.html#ga8f74b816aaa0aaba510de22e81ed1d49">xccdf_value_set_abstract</a>(<span class="keyword">struct</span> <a class="code" href="structxccdf__value.html" title="XCCDF Value allows test parametrization or capturing output of tests.">xccdf_value</a> *item, <span class="keywordtype">bool</span> newval);
<a name="l02516"></a>02516 <span class="keywordtype">bool</span> <a class="code" href="group__XCCDF.html#gaa6d63fd858a966ae9ca0c44249a9331b">xccdf_value_set_hidden</a>(<span class="keyword">struct</span> <a class="code" href="structxccdf__value.html" title="XCCDF Value allows test parametrization or capturing output of tests.">xccdf_value</a> *item, <span class="keywordtype">bool</span> newval);
<a name="l02518"></a>02518 <span class="keywordtype">bool</span> <a class="code" href="group__XCCDF.html#gac2a9a426810b3587d75d9e5296f614af">xccdf_value_set_multiple</a>(<span class="keyword">struct</span> <a class="code" href="structxccdf__value.html" title="XCCDF Value allows test parametrization or capturing output of tests.">xccdf_value</a> *item, <span class="keywordtype">bool</span> newval);
<a name="l02520"></a>02520 <span class="keywordtype">bool</span> <a class="code" href="group__XCCDF.html#ga0afbabcf5d9189f7a5d8c6a8ac4bf8cb">xccdf_value_set_prohibit_changes</a>(<span class="keyword">struct</span> <a class="code" href="structxccdf__value.html" title="XCCDF Value allows test parametrization or capturing output of tests.">xccdf_value</a> *item, <span class="keywordtype">bool</span> newval);
<a name="l02522"></a>02522 <span class="keywordtype">bool</span> <a class="code" href="group__XCCDF.html#ga1d846c76d3023e6ebb2380ef9b73114a">xccdf_value_set_oper</a>(<span class="keyword">struct</span> <a class="code" href="structxccdf__item.html" title="A base class for XCCDF items.">xccdf_item</a> * item, <a class="code" href="group__XCCDF.html#ga4458b04cd1236b95d15ac2d74276c09c" title="Operator to be applied on an xccdf_value.">xccdf_operator_t</a> oper);
<a name="l02523"></a>02523
<a name="l02525"></a>02525 <span class="keywordtype">bool</span> <a class="code" href="group__XCCDF.html#ga327a391902857d210c31bd2ff74adcbd">xccdf_status_set_date</a>(<span class="keyword">struct</span> <a class="code" href="structxccdf__status.html" title="XCCDF item status.">xccdf_status</a> *obj, time_t newval);
<a name="l02527"></a>02527 <span class="keywordtype">bool</span> <a class="code" href="group__XCCDF.html#ga5ad3f30d2ad90151e55ab0d0ca847255">xccdf_status_set_status</a>(<span class="keyword">struct</span> <a class="code" href="structxccdf__status.html" title="XCCDF item status.">xccdf_status</a> *obj, <a class="code" href="group__XCCDF.html#gac0d5c1c85828e13ebb13935551f8da38" title="Status of an XCCDF item.">xccdf_status_type_t</a> newval);
<a name="l02528"></a>02528
<a name="l02530"></a>02530 <span class="keywordtype">bool</span> <a class="code" href="group__XCCDF.html#ga90d812a4caf99111614a3c9ac19bf586">xccdf_notice_set_id</a>(<span class="keyword">struct</span> <a class="code" href="structxccdf__notice.html" title="XCCDF benchmark legal notice.">xccdf_notice</a> *obj, <span class="keyword">const</span> <span class="keywordtype">char</span> *newval);
<a name="l02532"></a>02532 <span class="keywordtype">bool</span> <a class="code" href="group__XCCDF.html#gac31edefbaa2417a6a3aaefee6d5ac9a8">xccdf_notice_set_text</a>(<span class="keyword">struct</span> <a class="code" href="structxccdf__notice.html" title="XCCDF benchmark legal notice.">xccdf_notice</a> *obj, <span class="keyword">struct</span> <a class="code" href="structoscap__text.html" title="Representation of internationalizable character strings.">oscap_text</a> *newval);
<a name="l02533"></a>02533
<a name="l02535"></a>02535 <span class="keywordtype">bool</span> <a class="code" href="group__XCCDF.html#ga3510c53b7f24683f4133b0991f757c5c">xccdf_model_set_system</a>(<span class="keyword">struct</span> <a class="code" href="structxccdf__model.html" title="XCCDF scoring model.">xccdf_model</a> *obj, <span class="keyword">const</span> <span class="keywordtype">char</span> *newval);
<a name="l02536"></a>02536
<a name="l02538"></a>02538 <span class="keywordtype">bool</span> <a class="code" href="group__XCCDF.html#ga5e708b633c7f6919a4ebb014a60bc589">xccdf_check_set_id</a>(<span class="keyword">struct</span> <a class="code" href="structxccdf__check.html" title="XCCDF simple or complex check.">xccdf_check</a> *obj, <span class="keyword">const</span> <span class="keywordtype">char</span> *newval);
<a name="l02540"></a>02540 <span class="keywordtype">bool</span> <a class="code" href="group__XCCDF.html#ga2055fa7309b542dd1a377b017a32c236">xccdf_check_set_system</a>(<span class="keyword">struct</span> <a class="code" href="structxccdf__check.html" title="XCCDF simple or complex check.">xccdf_check</a> *obj, <span class="keyword">const</span> <span class="keywordtype">char</span> *newval);
<a name="l02542"></a>02542 <span class="keywordtype">bool</span> <a class="code" href="group__XCCDF.html#ga6a2ca90ba21cde64cdf3e27202c93f1e">xccdf_check_set_selector</a>(<span class="keyword">struct</span> <a class="code" href="structxccdf__check.html" title="XCCDF simple or complex check.">xccdf_check</a> *obj, <span class="keyword">const</span> <span class="keywordtype">char</span> *newval);
<a name="l02544"></a>02544 <span class="keywordtype">bool</span> <a class="code" href="group__XCCDF.html#ga54c86af7aababb5a6a0a0b98374f80c6">xccdf_check_set_content</a>(<span class="keyword">struct</span> <a class="code" href="structxccdf__check.html" title="XCCDF simple or complex check.">xccdf_check</a> *obj, <span class="keyword">const</span> <span class="keywordtype">char</span> *newval);
<a name="l02546"></a>02546 <span class="keywordtype">bool</span> <a class="code" href="group__XCCDF.html#gaeb16d799bdff68c4b6752e7d09229ccc">xccdf_check_set_oper</a>(<span class="keyword">struct</span> <a class="code" href="structxccdf__check.html" title="XCCDF simple or complex check.">xccdf_check</a> *obj, <a class="code" href="group__XCCDF.html#gac5b91d8f1c9b08c92226646230e8f676" title="Boolean operators for logical expressions.">xccdf_bool_operator_t</a> newval);
<a name="l02547"></a>02547
<a name="l02549"></a>02549 <span class="keywordtype">bool</span> <a class="code" href="group__XCCDF.html#ga31a8def180c4844a7d89540f8b6e4915">xccdf_check_content_ref_set_name</a>(<span class="keyword">struct</span> <a class="code" href="structxccdf__check__content__ref.html" title="XCCDF check content reference.">xccdf_check_content_ref</a> *obj, <span class="keyword">const</span> <span class="keywordtype">char</span> *newval);
<a name="l02551"></a>02551 <span class="keywordtype">bool</span> <a class="code" href="group__XCCDF.html#ga2aeb01ff82b78969556b146658c084f3">xccdf_check_content_ref_set_href</a>(<span class="keyword">struct</span> <a class="code" href="structxccdf__check__content__ref.html" title="XCCDF check content reference.">xccdf_check_content_ref</a> *obj, <span class="keyword">const</span> <span class="keywordtype">char</span> *newval);
<a name="l02552"></a>02552
<a name="l02554"></a>02554 <span class="keywordtype">bool</span> <a class="code" href="group__XCCDF.html#gad7f03067d5e77ccea5b8b7cce2bc2fca">xccdf_profile_note_set_reftag</a>(<span class="keyword">struct</span> <a class="code" href="structxccdf__profile__note.html" title="XCCDF note for given rule in context of given profile.">xccdf_profile_note</a> *obj, <span class="keyword">const</span> <span class="keywordtype">char</span> *newval);
<a name="l02556"></a>02556 <span class="keywordtype">bool</span> <a class="code" href="group__XCCDF.html#ga3344bad4dc655b8def16b26172278fdc">xccdf_profile_note_set_text</a>(<span class="keyword">struct</span> <a class="code" href="structxccdf__profile__note.html" title="XCCDF note for given rule in context of given profile.">xccdf_profile_note</a> *obj, <span class="keyword">struct</span> <a class="code" href="structoscap__text.html" title="Representation of internationalizable character strings.">oscap_text</a> *newval);
<a name="l02557"></a>02557
<a name="l02559"></a>02559 <span class="keywordtype">bool</span> <a class="code" href="group__XCCDF.html#gade6156e567195960fd7c5a771cbfcbe1">xccdf_check_import_set_name</a>(<span class="keyword">struct</span> <a class="code" href="structxccdf__check__import.html" title="XCCDF check import.">xccdf_check_import</a> *obj, <span class="keyword">const</span> <span class="keywordtype">char</span> *newval);
<a name="l02561"></a>02561 <span class="keywordtype">bool</span> <a class="code" href="group__XCCDF.html#ga0f64cf30d7bfd03c195b614e5031c5a6">xccdf_check_import_set_content</a>(<span class="keyword">struct</span> <a class="code" href="structxccdf__check__import.html" title="XCCDF check import.">xccdf_check_import</a> *obj, <span class="keyword">const</span> <span class="keywordtype">char</span> *newval);
<a name="l02562"></a>02562
<a name="l02564"></a>02564 <span class="keywordtype">bool</span> <a class="code" href="group__XCCDF.html#gaa386edb5cd4cb7cb167c45b0597a33e8">xccdf_check_export_set_name</a>(<span class="keyword">struct</span> <a class="code" href="structxccdf__check__export.html" title="XCCDF check export.">xccdf_check_export</a> *obj, <span class="keyword">const</span> <span class="keywordtype">char</span> *newval);
<a name="l02566"></a>02566 <span class="keywordtype">bool</span> <a class="code" href="group__XCCDF.html#ga717e0a435107f5d5151adeb82da7635d">xccdf_check_export_set_value</a>(<span class="keyword">struct</span> <a class="code" href="structxccdf__check__export.html" title="XCCDF check export.">xccdf_check_export</a> *obj, <span class="keyword">const</span> <span class="keywordtype">char</span> *newval);
<a name="l02567"></a>02567
<a name="l02569"></a>02569 <span class="keywordtype">bool</span> <a class="code" href="group__XCCDF.html#gab70003188efca7d7b92af5aef7ea2c0e">xccdf_fix_set_strategy</a>(<span class="keyword">struct</span> <a class="code" href="structxccdf__fix.html" title="XCCDF automatic fix.">xccdf_fix</a> *obj, <a class="code" href="group__XCCDF.html#ga534ac2d5662227cff66913038f4263e1" title="Fix strategy type.">xccdf_strategy_t</a> newval);
<a name="l02571"></a>02571 <span class="keywordtype">bool</span> <a class="code" href="group__XCCDF.html#ga2a3c513aa1650e8d48051a90b7d74e33">xccdf_fix_set_disruption</a>(<span class="keyword">struct</span> <a class="code" href="structxccdf__fix.html" title="XCCDF automatic fix.">xccdf_fix</a> *obj, <a class="code" href="group__XCCDF.html#ga209163661038a6be4066cdec716c997f" title="XCCDF error, complexity, disruption, or severity level.">xccdf_level_t</a> newval);
<a name="l02573"></a>02573 <span class="keywordtype">bool</span> <a class="code" href="group__XCCDF.html#gaa226004d38373b2a062170ae980d9549">xccdf_fix_set_complexity</a>(<span class="keyword">struct</span> <a class="code" href="structxccdf__fix.html" title="XCCDF automatic fix.">xccdf_fix</a> *obj, <a class="code" href="group__XCCDF.html#ga209163661038a6be4066cdec716c997f" title="XCCDF error, complexity, disruption, or severity level.">xccdf_level_t</a> newval);
<a name="l02575"></a>02575 <span class="keywordtype">bool</span> <a class="code" href="group__XCCDF.html#ga07228129558a0b4d0bc1a864e1c53980">xccdf_fix_set_reboot</a>(<span class="keyword">struct</span> <a class="code" href="structxccdf__fix.html" title="XCCDF automatic fix.">xccdf_fix</a> *obj, <span class="keywordtype">bool</span> newval);
<a name="l02577"></a>02577 <span class="keywordtype">bool</span> <a class="code" href="group__XCCDF.html#ga36c6218d16b6d8691885149cb4e68509">xccdf_fix_set_content</a>(<span class="keyword">struct</span> <a class="code" href="structxccdf__fix.html" title="XCCDF automatic fix.">xccdf_fix</a> *obj, <span class="keyword">const</span> <span class="keywordtype">char</span> *newval);
<a name="l02579"></a>02579 <span class="keywordtype">bool</span> <a class="code" href="group__XCCDF.html#ga1482957c48957e2dd340748d9abbd6a6">xccdf_fix_set_system</a>(<span class="keyword">struct</span> <a class="code" href="structxccdf__fix.html" title="XCCDF automatic fix.">xccdf_fix</a> *obj, <span class="keyword">const</span> <span class="keywordtype">char</span> *newval);
<a name="l02581"></a>02581 <span class="keywordtype">bool</span> <a class="code" href="group__XCCDF.html#gaf18b831b8832e01f39a8e660d896ecaf">xccdf_fix_set_platform</a>(<span class="keyword">struct</span> <a class="code" href="structxccdf__fix.html" title="XCCDF automatic fix.">xccdf_fix</a> *obj, <span class="keyword">const</span> <span class="keywordtype">char</span> *newval);
<a name="l02583"></a>02583 <span class="keywordtype">bool</span> <a class="code" href="group__XCCDF.html#gaacdbdaf472bd8123a506d3e337dec8d9">xccdf_fix_set_id</a>(<span class="keyword">struct</span> <a class="code" href="structxccdf__fix.html" title="XCCDF automatic fix.">xccdf_fix</a> *obj, <span class="keyword">const</span> <span class="keywordtype">char</span> *newval);
<a name="l02584"></a>02584
<a name="l02586"></a>02586 <span class="keywordtype">bool</span> <a class="code" href="group__XCCDF.html#ga8795db0006b5f96c69609a70a4ef5ad9">xccdf_fixtext_set_strategy</a>(<span class="keyword">struct</span> <a class="code" href="structxccdf__fixtext.html" title="XCCDF textual fix instructions.">xccdf_fixtext</a> *obj, <a class="code" href="group__XCCDF.html#ga534ac2d5662227cff66913038f4263e1" title="Fix strategy type.">xccdf_strategy_t</a> newval);
<a name="l02588"></a>02588 <span class="keywordtype">bool</span> <a class="code" href="group__XCCDF.html#ga07909ac43f6762f02d6075672c559390">xccdf_fixtext_set_disruption</a>(<span class="keyword">struct</span> <a class="code" href="structxccdf__fixtext.html" title="XCCDF textual fix instructions.">xccdf_fixtext</a> *obj, <a class="code" href="group__XCCDF.html#ga209163661038a6be4066cdec716c997f" title="XCCDF error, complexity, disruption, or severity level.">xccdf_level_t</a> newval);
<a name="l02590"></a>02590 <span class="keywordtype">bool</span> <a class="code" href="group__XCCDF.html#gab140102351b333a17d14290a4a0d7870">xccdf_fixtext_set_complexity</a>(<span class="keyword">struct</span> <a class="code" href="structxccdf__fixtext.html" title="XCCDF textual fix instructions.">xccdf_fixtext</a> *obj, <a class="code" href="group__XCCDF.html#ga209163661038a6be4066cdec716c997f" title="XCCDF error, complexity, disruption, or severity level.">xccdf_level_t</a> newval);
<a name="l02592"></a>02592 <span class="keywordtype">bool</span> <a class="code" href="group__XCCDF.html#gae2f730530451ff4fece3623102cbc6d0">xccdf_fixtext_set_reboot</a>(<span class="keyword">struct</span> <a class="code" href="structxccdf__fixtext.html" title="XCCDF textual fix instructions.">xccdf_fixtext</a> *obj, <span class="keywordtype">bool</span> newval);
<a name="l02594"></a>02594 <span class="keywordtype">bool</span> <a class="code" href="group__XCCDF.html#ga01501d392b4019d924c71c976331c58a">xccdf_fixtext_set_text</a>(<span class="keyword">struct</span> <a class="code" href="structxccdf__fixtext.html" title="XCCDF textual fix instructions.">xccdf_fixtext</a> *obj, <span class="keyword">struct</span> <a class="code" href="structoscap__text.html" title="Representation of internationalizable character strings.">oscap_text</a> *newval);
<a name="l02596"></a>02596 <span class="keywordtype">bool</span> <a class="code" href="group__XCCDF.html#gac59eed594fa27ecf82ae979a43203292">xccdf_fixtext_set_fixref</a>(<span class="keyword">struct</span> <a class="code" href="structxccdf__fixtext.html" title="XCCDF textual fix instructions.">xccdf_fixtext</a> *obj, <span class="keyword">const</span> <span class="keywordtype">char</span> *newval);
<a name="l02597"></a>02597
<a name="l02599"></a>02599 <span class="keywordtype">bool</span> <a class="code" href="group__XCCDF.html#ga6200aca9ea2b1ec367303d5e5015ab13">xccdf_select_set_item</a>(<span class="keyword">struct</span> <a class="code" href="structxccdf__select.html" title="XCCDF select option usen in the profile.">xccdf_select</a> *obj, <span class="keyword">const</span> <span class="keywordtype">char</span> *newval);
<a name="l02601"></a>02601 <span class="keywordtype">bool</span> <a class="code" href="group__XCCDF.html#ga508752bd9750df4f39092ac83b38bd61">xccdf_select_set_selected</a>(<span class="keyword">struct</span> <a class="code" href="structxccdf__select.html" title="XCCDF select option usen in the profile.">xccdf_select</a> *obj, <span class="keywordtype">bool</span> newval);
<a name="l02602"></a>02602
<a name="l02604"></a>02604 <span class="comment">//bool xccdf_reference_set_lang(struct xccdf_reference *obj, const char *newval);</span>
<a name="l02606"></a>02606 <span class="comment"></span><span class="keywordtype">bool</span> <a class="code" href="group__XCCDF.html#gaf9a52353acfc02f7f42fc585ae490eb3">xccdf_reference_set_href</a>(<span class="keyword">struct</span> <a class="code" href="structxccdf__reference.html" title="XCCDF reference.">xccdf_reference</a> *obj, <span class="keyword">const</span> <span class="keywordtype">char</span> *newval);
<a name="l02608"></a>02608 <span class="keywordtype">bool</span> <a class="code" href="group__XCCDF.html#ga645c330602741b51237d2b80826de681">xccdf_reference_set_text</a>(<span class="keyword">struct</span> <a class="code" href="structxccdf__reference.html" title="XCCDF reference.">xccdf_reference</a> *obj, <span class="keyword">struct</span> <a class="code" href="structoscap__text.html" title="Representation of internationalizable character strings.">oscap_text</a> *newval);
<a name="l02610"></a>02610 <span class="comment">//bool xccdf_reference_set_content(struct xccdf_reference *obj, const char *newval);</span>
<a name="l02612"></a>02612 <span class="comment"></span><span class="comment">//bool xccdf_reference_set_override(struct xccdf_reference *obj, bool newval);</span>
<a name="l02613"></a>02613
<a name="l02615"></a>02615 <span class="keywordtype">bool</span> <a class="code" href="group__XCCDF.html#ga1915b7928e592ad1aa3442a98fe487e6">xccdf_warning_set_category</a>(<span class="keyword">struct</span> <a class="code" href="structxccdf__warning.html" title="XCCDF warning.">xccdf_warning</a> *obj, <a class="code" href="group__XCCDF.html#ga70ec25fc378db41df2c7344a06adf6aa" title="Category of xccdf_warning.">xccdf_warning_category_t</a> newval);
<a name="l02617"></a>02617 <span class="keywordtype">bool</span> <a class="code" href="group__XCCDF.html#ga61cb17aa0359be07014cc96425051ca5">xccdf_warning_set_text</a>(<span class="keyword">struct</span> <a class="code" href="structxccdf__warning.html" title="XCCDF warning.">xccdf_warning</a> *obj, <span class="keyword">struct</span> <a class="code" href="structoscap__text.html" title="Representation of internationalizable character strings.">oscap_text</a> *newval);
<a name="l02619"></a>02619 <span class="keyword">struct </span><a class="code" href="structxccdf__refine__rule.html" title="XCCDF refine rule option used in the profile.">xccdf_refine_rule</a> *<a class="code" href="group__XCCDF.html#ga34fed6f206079200fefc2b8c8ef5d8fb">xccdf_refine_rule_new</a>(<span class="keywordtype">void</span>);
<a name="l02620"></a>02620
<a name="l02622"></a>02622 <span class="keyword">struct </span><a class="code" href="structxccdf__refine__rule.html" title="XCCDF refine rule option used in the profile.">xccdf_refine_rule</a> * <a class="code" href="group__XCCDF.html#gaf489490d36b8d8ff2879dd521feaaa41">xccdf_refine_rule_clone</a>(<span class="keyword">const</span> <span class="keyword">struct</span> <a class="code" href="structxccdf__refine__rule.html" title="XCCDF refine rule option used in the profile.">xccdf_refine_rule</a> * old_rule);
<a name="l02624"></a>02624 <span class="keywordtype">bool</span> <a class="code" href="group__XCCDF.html#gaf8ad34c6630873b42f62d1c81269c5ca">xccdf_refine_rule_set_item</a>(<span class="keyword">struct</span> <a class="code" href="structxccdf__refine__rule.html" title="XCCDF refine rule option used in the profile.">xccdf_refine_rule</a> *obj, <span class="keyword">const</span> <span class="keywordtype">char</span> *newval);
<a name="l02626"></a>02626 <span class="keywordtype">bool</span> <a class="code" href="group__XCCDF.html#ga08b103bc07f838f00c38fa2a1434470e">xccdf_refine_rule_set_selector</a>(<span class="keyword">struct</span> <a class="code" href="structxccdf__refine__rule.html" title="XCCDF refine rule option used in the profile.">xccdf_refine_rule</a> *obj, <span class="keyword">const</span> <span class="keywordtype">char</span> *newval);
<a name="l02628"></a>02628 <span class="keywordtype">bool</span> <a class="code" href="group__XCCDF.html#gab2bad8aca208979f4fafc34579058fd0">xccdf_refine_rule_set_role</a>(<span class="keyword">struct</span> <a class="code" href="structxccdf__refine__rule.html" title="XCCDF refine rule option used in the profile.">xccdf_refine_rule</a> *obj, <a class="code" href="group__XCCDF.html#ga6cb5c6fdd0ccc42b1c8cec5313df5804" title="XCCDF role.">xccdf_role_t</a> newval);
<a name="l02630"></a>02630 <span class="keywordtype">bool</span> <a class="code" href="group__XCCDF.html#gaf6ff686755c109babff955751b65ecc8">xccdf_refine_rule_set_severity</a>(<span class="keyword">struct</span> <a class="code" href="structxccdf__refine__rule.html" title="XCCDF refine rule option used in the profile.">xccdf_refine_rule</a> *obj, <a class="code" href="group__XCCDF.html#ga209163661038a6be4066cdec716c997f" title="XCCDF error, complexity, disruption, or severity level.">xccdf_level_t</a> newval);
<a name="l02632"></a>02632 <span class="keywordtype">bool</span> <a class="code" href="group__XCCDF.html#ga973ad8e865c2f62b050eafe875c1363d">xccdf_refine_rule_set_weight</a>(<span class="keyword">struct</span> <a class="code" href="structxccdf__refine__rule.html" title="XCCDF refine rule option used in the profile.">xccdf_refine_rule</a> *obj, <a class="code" href="group__XCCDF.html#ga83ab7d5052d01468f373732e268f47b4" title="Type of a numerical content for a XCCDF value.">xccdf_numeric</a> newval);
<a name="l02633"></a>02633
<a name="l02635"></a>02635 <span class="keyword">struct </span><a class="code" href="structxccdf__refine__value.html" title="XCCDF refine value option used in the profile.">xccdf_refine_value</a> *<a class="code" href="group__XCCDF.html#gaa00c3b03c1c4802b9c36ca00b6c7a91f">xccdf_refine_value_new</a>(<span class="keywordtype">void</span>);
<a name="l02637"></a>02637 <span class="keyword">struct </span><a class="code" href="structxccdf__refine__value.html" title="XCCDF refine value option used in the profile.">xccdf_refine_value</a> * <a class="code" href="group__XCCDF.html#ga93ba6b1b7047e2db65570a297939fcde">xccdf_refine_value_clone</a>(<span class="keyword">const</span> <span class="keyword">struct</span> <a class="code" href="structxccdf__refine__value.html" title="XCCDF refine value option used in the profile.">xccdf_refine_value</a> * old_value);
<a name="l02639"></a>02639 <span class="keywordtype">bool</span> <a class="code" href="group__XCCDF.html#ga1172a249da721b6942f45c2501092fb2">xccdf_refine_value_set_item</a>(<span class="keyword">struct</span> <a class="code" href="structxccdf__refine__value.html" title="XCCDF refine value option used in the profile.">xccdf_refine_value</a> *obj, <span class="keyword">const</span> <span class="keywordtype">char</span> *newval);
<a name="l02641"></a>02641 <span class="keywordtype">bool</span> <a class="code" href="group__XCCDF.html#ga81d68930e5f1df110320c1169209e978">xccdf_refine_value_set_selector</a>(<span class="keyword">struct</span> <a class="code" href="structxccdf__refine__value.html" title="XCCDF refine value option used in the profile.">xccdf_refine_value</a> *obj, <span class="keyword">const</span> <span class="keywordtype">char</span> *newval);
<a name="l02643"></a>02643 <span class="keywordtype">bool</span> <a class="code" href="group__XCCDF.html#ga05885c0daef725ae43139b5f5910461c">xccdf_refine_value_set_oper</a>(<span class="keyword">struct</span> <a class="code" href="structxccdf__refine__value.html" title="XCCDF refine value option used in the profile.">xccdf_refine_value</a> *obj, <a class="code" href="group__XCCDF.html#ga4458b04cd1236b95d15ac2d74276c09c" title="Operator to be applied on an xccdf_value.">xccdf_operator_t</a> newval);
<a name="l02644"></a>02644
<a name="l02646"></a>02646 <span class="keyword">struct </span><a class="code" href="structxccdf__setvalue.html" title="XCCDF set value option used in the profile.">xccdf_setvalue</a> *xccdf_setvalue_new(<span class="keywordtype">void</span>);
<a name="l02648"></a>02648 <span class="keyword">struct </span><a class="code" href="structxccdf__setvalue.html" title="XCCDF set value option used in the profile.">xccdf_setvalue</a> * <a class="code" href="group__XCCDF.html#ga9a6ed3a7172d73709df974fad2502057" title="xccdf_set_value">xccdf_setvalue_clone</a>(<span class="keyword">const</span> <span class="keyword">struct</span> <a class="code" href="structxccdf__setvalue.html" title="XCCDF set value option used in the profile.">xccdf_setvalue</a> * old_value);
<a name="l02650"></a>02650 <span class="keywordtype">bool</span> xccdf_setvalue_set_item(<span class="keyword">struct</span> <a class="code" href="structxccdf__setvalue.html" title="XCCDF set value option used in the profile.">xccdf_setvalue</a> *obj, <span class="keyword">const</span> <span class="keywordtype">char</span> *newval);
<a name="l02652"></a>02652 <span class="keywordtype">bool</span> xccdf_setvalue_set_value(<span class="keyword">struct</span> <a class="code" href="structxccdf__setvalue.html" title="XCCDF set value option used in the profile.">xccdf_setvalue</a> *obj, <span class="keyword">const</span> <span class="keywordtype">char</span> *newval);
<a name="l02654"></a>02654 <span class="keywordtype">bool</span> <a class="code" href="group__XCCDF.html#gaadb9b71ee3d0e85c4da0c3b3c7135349">xccdf_plain_text_set_id</a>(<span class="keyword">struct</span> <a class="code" href="structxccdf__plain__text.html" title="XCCDF target fact.">xccdf_plain_text</a> *obj, <span class="keyword">const</span> <span class="keywordtype">char</span> *newval);
<a name="l02656"></a>02656 <span class="keywordtype">bool</span> <a class="code" href="group__XCCDF.html#gaf97ddc9ef81e8c4381fb6c11a74b9608">xccdf_plain_text_set_text</a>(<span class="keyword">struct</span> <a class="code" href="structxccdf__plain__text.html" title="XCCDF target fact.">xccdf_plain_text</a> *obj, <span class="keyword">const</span> <span class="keywordtype">char</span> *newval);
<a name="l02657"></a>02657
<a name="l02659"></a>02659 <span class="keywordtype">bool</span> <a class="code" href="group__XCCDF.html#gaafffe1c42ccfa435b556171079097489">xccdf_result_set_id</a>(<span class="keyword">struct</span> <a class="code" href="structxccdf__result.html" title="Actual results of running a XCCDF test or profile.">xccdf_result</a> *item, <span class="keyword">const</span> <span class="keywordtype">char</span> *newval);
<a name="l02661"></a>02661 <span class="keywordtype">bool</span> <a class="code" href="group__XCCDF.html#ga919c5388fb72df8052ec64552601ef5d">xccdf_result_set_test_system</a>(<span class="keyword">struct</span> <a class="code" href="structxccdf__result.html" title="Actual results of running a XCCDF test or profile.">xccdf_result</a> *item, <span class="keyword">const</span> <span class="keywordtype">char</span> *newval);
<a name="l02663"></a>02663 <span class="keywordtype">bool</span> <a class="code" href="group__XCCDF.html#gaa3e5d8292cd46b6a1888d10c8c637286">xccdf_result_set_benchmark_uri</a>(<span class="keyword">struct</span> <a class="code" href="structxccdf__result.html" title="Actual results of running a XCCDF test or profile.">xccdf_result</a> *item, <span class="keyword">const</span> <span class="keywordtype">char</span> *newval);
<a name="l02665"></a>02665 <span class="keywordtype">bool</span> <a class="code" href="group__XCCDF.html#ga0d7734a8ba994072435e9260cc9cdcd1">xccdf_result_set_profile</a>(<span class="keyword">struct</span> <a class="code" href="structxccdf__result.html" title="Actual results of running a XCCDF test or profile.">xccdf_result</a> *item, <span class="keyword">const</span> <span class="keywordtype">char</span> *newval);
<a name="l02667"></a>02667 <span class="keywordtype">bool</span> <a class="code" href="group__XCCDF.html#gaeed5e273a11e09e53e660032d72466f2">xccdf_result_set_start_time</a>(<span class="keyword">struct</span> <a class="code" href="structxccdf__result.html" title="Actual results of running a XCCDF test or profile.">xccdf_result</a> *item, time_t newval);
<a name="l02669"></a>02669 <span class="keywordtype">bool</span> <a class="code" href="group__XCCDF.html#gaf6eff3bf16c33a3ade353d5664f8a95a">xccdf_result_set_end_time</a>(<span class="keyword">struct</span> <a class="code" href="structxccdf__result.html" title="Actual results of running a XCCDF test or profile.">xccdf_result</a> *item, time_t newval);
<a name="l02671"></a>02671 <span class="keywordtype">bool</span> <a class="code" href="group__XCCDF.html#gaa7e60bb77be7779ebcab1ebfd7960c9c">xccdf_result_set_version</a>(<span class="keyword">struct</span> <a class="code" href="structxccdf__result.html" title="Actual results of running a XCCDF test or profile.">xccdf_result</a> *item, <span class="keyword">const</span> <span class="keywordtype">char</span> *newval);
<a name="l02673"></a>02673 <span class="keywordtype">bool</span> <a class="code" href="group__XCCDF.html#gaf03a02eabaac243db030621d6a9a63d0">xccdf_rule_result_set_time</a>(<span class="keyword">struct</span> <a class="code" href="structxccdf__rule__result.html" title="XCCDF rule result.">xccdf_rule_result</a> *obj, time_t newval);
<a name="l02675"></a>02675 <span class="keywordtype">bool</span> <a class="code" href="group__XCCDF.html#ga3b1cce8f8b0afeee87aa9249ce578fb7">xccdf_rule_result_set_role</a>(<span class="keyword">struct</span> <a class="code" href="structxccdf__rule__result.html" title="XCCDF rule result.">xccdf_rule_result</a> *obj, <a class="code" href="group__XCCDF.html#ga6cb5c6fdd0ccc42b1c8cec5313df5804" title="XCCDF role.">xccdf_role_t</a> newval);
<a name="l02677"></a>02677 <span class="keywordtype">bool</span> <a class="code" href="group__XCCDF.html#ga4b572283f574e0488a398ba6c3d349cd">xccdf_rule_result_set_weight</a>(<span class="keyword">struct</span> <a class="code" href="structxccdf__rule__result.html" title="XCCDF rule result.">xccdf_rule_result</a> *obj, <span class="keywordtype">float</span> newval);
<a name="l02679"></a>02679 <span class="keywordtype">bool</span> <a class="code" href="group__XCCDF.html#ga9e921bfb9f46f09c4e64021fe239509f">xccdf_rule_result_set_severity</a>(<span class="keyword">struct</span> <a class="code" href="structxccdf__rule__result.html" title="XCCDF rule result.">xccdf_rule_result</a> *obj, <a class="code" href="group__XCCDF.html#ga209163661038a6be4066cdec716c997f" title="XCCDF error, complexity, disruption, or severity level.">xccdf_level_t</a> newval);
<a name="l02681"></a>02681 <span class="keywordtype">bool</span> <a class="code" href="group__XCCDF.html#gae54162094408ab49f59da20f2990083c">xccdf_rule_result_set_result</a>(<span class="keyword">struct</span> <a class="code" href="structxccdf__rule__result.html" title="XCCDF rule result.">xccdf_rule_result</a> *obj, <a class="code" href="group__XCCDF.html#gabf34f4480799efc8e1af5f4706d2666d" title="Test result.">xccdf_test_result_type_t</a> newval);
<a name="l02683"></a>02683 <span class="keywordtype">bool</span> <a class="code" href="group__XCCDF.html#gaab997731ffd5e7da635b064f590de680">xccdf_rule_result_set_version</a>(<span class="keyword">struct</span> <a class="code" href="structxccdf__rule__result.html" title="XCCDF rule result.">xccdf_rule_result</a> *obj, <span class="keyword">const</span> <span class="keywordtype">char</span> *newval);
<a name="l02685"></a>02685 <span class="keywordtype">bool</span> <a class="code" href="group__XCCDF.html#ga3382e7b8b62d2c42e6ba9ac05680d37e">xccdf_rule_result_set_idref</a>(<span class="keyword">struct</span> <a class="code" href="structxccdf__rule__result.html" title="XCCDF rule result.">xccdf_rule_result</a> *obj, <span class="keyword">const</span> <span class="keywordtype">char</span> *newval);
<a name="l02686"></a>02686
<a name="l02688"></a>02688 <span class="keywordtype">bool</span> <a class="code" href="group__XCCDF.html#gac62060ff178dba07af8763bc3f8f2129">xccdf_identity_set_authenticated</a>(<span class="keyword">struct</span> <a class="code" href="structxccdf__identity.html" title="XCCDF identity.">xccdf_identity</a> *obj, <span class="keywordtype">bool</span> newval);
<a name="l02690"></a>02690 <span class="keywordtype">bool</span> <a class="code" href="group__XCCDF.html#ga1297ab10c563ae8557f55a9eae215ae5">xccdf_identity_set_privileged</a>(<span class="keyword">struct</span> <a class="code" href="structxccdf__identity.html" title="XCCDF identity.">xccdf_identity</a> *obj, <span class="keywordtype">bool</span> newval);
<a name="l02692"></a>02692 <span class="keywordtype">bool</span> <a class="code" href="group__XCCDF.html#ga7fd89f1b0d880a964e311265861705bd">xccdf_identity_set_name</a>(<span class="keyword">struct</span> <a class="code" href="structxccdf__identity.html" title="XCCDF identity.">xccdf_identity</a> *obj, <span class="keyword">const</span> <span class="keywordtype">char</span> *newval);
<a name="l02693"></a>02693
<a name="l02695"></a>02695 <span class="keywordtype">bool</span> <a class="code" href="group__XCCDF.html#ga7c947025931cbff1d9dedbc6e00bdc48">xccdf_score_set_maximum</a>(<span class="keyword">struct</span> <a class="code" href="structxccdf__score.html" title="XCCDF score.">xccdf_score</a> *obj, <a class="code" href="group__XCCDF.html#ga83ab7d5052d01468f373732e268f47b4" title="Type of a numerical content for a XCCDF value.">xccdf_numeric</a> newval);
<a name="l02697"></a>02697 <span class="keywordtype">bool</span> <a class="code" href="group__XCCDF.html#ga085ede5a4559065163bd7cfe7f0a4629">xccdf_score_set_score</a>(<span class="keyword">struct</span> <a class="code" href="structxccdf__score.html" title="XCCDF score.">xccdf_score</a> *obj, <a class="code" href="group__XCCDF.html#ga83ab7d5052d01468f373732e268f47b4" title="Type of a numerical content for a XCCDF value.">xccdf_numeric</a> newval);
<a name="l02699"></a>02699 <span class="keywordtype">bool</span> <a class="code" href="group__XCCDF.html#ga33eb454ec3df7eb8923515a7cbba7205">xccdf_score_set_system</a>(<span class="keyword">struct</span> <a class="code" href="structxccdf__score.html" title="XCCDF score.">xccdf_score</a> *obj, <span class="keyword">const</span> <span class="keywordtype">char</span> *newval);
<a name="l02700"></a>02700
<a name="l02702"></a>02702 <span class="keywordtype">bool</span> <a class="code" href="group__XCCDF.html#ga6eccc4b92225e6287cea466f7a77f24a">xccdf_override_set_time</a>(<span class="keyword">struct</span> <a class="code" href="structxccdf__override.html" title="XCCDF override.">xccdf_override</a> *obj, time_t newval);
<a name="l02704"></a>02704 <span class="keywordtype">bool</span> <a class="code" href="group__XCCDF.html#gaf17cb82ee51a5b24339aac9d13c701ea">xccdf_override_set_new_result</a>(<span class="keyword">struct</span> <a class="code" href="structxccdf__override.html" title="XCCDF override.">xccdf_override</a> *obj, <a class="code" href="group__XCCDF.html#gabf34f4480799efc8e1af5f4706d2666d" title="Test result.">xccdf_test_result_type_t</a> newval);
<a name="l02706"></a>02706 <span class="keywordtype">bool</span> <a class="code" href="group__XCCDF.html#gaff6abba53c785740baa420870a4edee6">xccdf_override_set_old_result</a>(<span class="keyword">struct</span> <a class="code" href="structxccdf__override.html" title="XCCDF override.">xccdf_override</a> *obj, <a class="code" href="group__XCCDF.html#gabf34f4480799efc8e1af5f4706d2666d" title="Test result.">xccdf_test_result_type_t</a> newval);
<a name="l02708"></a>02708 <span class="keywordtype">bool</span> <a class="code" href="group__XCCDF.html#ga7f7e418786635f7fe1c2641db8a70b08">xccdf_override_set_authority</a>(<span class="keyword">struct</span> <a class="code" href="structxccdf__override.html" title="XCCDF override.">xccdf_override</a> *obj, <span class="keyword">const</span> <span class="keywordtype">char</span> *newval);
<a name="l02710"></a>02710 <span class="keywordtype">bool</span> <a class="code" href="group__XCCDF.html#ga8daf074dbea1fe215df3023a9be70751">xccdf_override_set_remark</a>(<span class="keyword">struct</span> <a class="code" href="structxccdf__override.html" title="XCCDF override.">xccdf_override</a> *obj, <span class="keyword">struct</span> <a class="code" href="structoscap__text.html" title="Representation of internationalizable character strings.">oscap_text</a> *newval);
<a name="l02711"></a>02711
<a name="l02713"></a>02713 <span class="keywordtype">bool</span> <a class="code" href="group__XCCDF.html#ga022c8f45ed8157c5563b1733613f3869">xccdf_message_set_severity</a>(<span class="keyword">struct</span> <a class="code" href="structxccdf__message.html" title="XCCDF message.">xccdf_message</a> *obj, <a class="code" href="group__XCCDF.html#ga1485899f9bf18c3aa0b0efbb6fe2beb7" title="Severity of an xccdf_message.">xccdf_message_severity_t</a> newval);
<a name="l02715"></a>02715 <span class="keywordtype">bool</span> <a class="code" href="group__XCCDF.html#ga733a6605d51aa26da5760e062a3981f9">xccdf_message_set_content</a>(<span class="keyword">struct</span> <a class="code" href="structxccdf__message.html" title="XCCDF message.">xccdf_message</a> *obj, <span class="keyword">const</span> <span class="keywordtype">char</span> *newval);
<a name="l02716"></a>02716
<a name="l02718"></a>02718 <span class="keywordtype">bool</span> <a class="code" href="group__XCCDF.html#ga00a3748112f5fef80cf1072a4ea2eb54">xccdf_target_fact_set_string</a>(<span class="keyword">struct</span> <a class="code" href="structxccdf__target__fact.html" title="XCCDF target fact.">xccdf_target_fact</a> *fact, <span class="keyword">const</span> <span class="keywordtype">char</span> *str);
<a name="l02720"></a>02720 <span class="keywordtype">bool</span> <a class="code" href="group__XCCDF.html#ga8657c24f3ea8fdfe46a62d9479458d3c">xccdf_target_fact_set_number</a>(<span class="keyword">struct</span> <a class="code" href="structxccdf__target__fact.html" title="XCCDF target fact.">xccdf_target_fact</a> *fact, <a class="code" href="group__XCCDF.html#ga83ab7d5052d01468f373732e268f47b4" title="Type of a numerical content for a XCCDF value.">xccdf_numeric</a> val);
<a name="l02722"></a>02722 <span class="keywordtype">bool</span> <a class="code" href="group__XCCDF.html#gaeb847cb367717e13da6bdc1cb6d8dd52">xccdf_target_fact_set_boolean</a>(<span class="keyword">struct</span> <a class="code" href="structxccdf__target__fact.html" title="XCCDF target fact.">xccdf_target_fact</a> *fact, <span class="keywordtype">bool</span> val);
<a name="l02724"></a>02724 <span class="keywordtype">bool</span> <a class="code" href="group__XCCDF.html#ga9e7be48f67ed4e66d989597582d08226">xccdf_target_fact_set_name</a>(<span class="keyword">struct</span> <a class="code" href="structxccdf__target__fact.html" title="XCCDF target fact.">xccdf_target_fact</a> *obj, <span class="keyword">const</span> <span class="keywordtype">char</span> *newval);
<a name="l02725"></a>02725
<a name="l02727"></a>02727 <span class="keywordtype">bool</span> <a class="code" href="group__XCCDF.html#ga9dd643ad646e768634d98bd8367ffa96">xccdf_instance_set_context</a>(<span class="keyword">struct</span> <a class="code" href="structxccdf__instance.html" title="XCCDF instance.">xccdf_instance</a> *obj, <span class="keyword">const</span> <span class="keywordtype">char</span> *newval);
<a name="l02729"></a>02729 <span class="keywordtype">bool</span> <a class="code" href="group__XCCDF.html#ga9298f88357b01e3f9f51e5346114af0c">xccdf_instance_set_parent_context</a>(<span class="keyword">struct</span> <a class="code" href="structxccdf__instance.html" title="XCCDF instance.">xccdf_instance</a> *obj, <span class="keyword">const</span> <span class="keywordtype">char</span> *newval);
<a name="l02731"></a>02731 <span class="keywordtype">bool</span> <a class="code" href="group__XCCDF.html#ga30acda9478576e64859de6c82f577a57">xccdf_instance_set_content</a>(<span class="keyword">struct</span> <a class="code" href="structxccdf__instance.html" title="XCCDF instance.">xccdf_instance</a> *obj, <span class="keyword">const</span> <span class="keywordtype">char</span> *newval);
<a name="l02732"></a>02732
<a name="l02734"></a>02734 <span class="keywordtype">bool</span> <a class="code" href="group__XCCDF.html#gaf8b81208eb9acf30bc93957582e5a621">xccdf_benchmark_add_result</a>(<span class="keyword">struct</span> <a class="code" href="structxccdf__benchmark.html" title="Top level XCCDF structure containing profiles, rules, values and results.">xccdf_benchmark</a> *bench, <span class="keyword">struct</span> <a class="code" href="structxccdf__result.html" title="Actual results of running a XCCDF test or profile.">xccdf_result</a> *result);
<a name="l02735"></a>02735
<a name="l02737"></a>02737 <span class="keywordtype">bool</span> <a class="code" href="group__XCCDF.html#ga7fc2f6f739ed7ce3dd7c656b369be3f3">xccdf_benchmark_add_description</a>(<span class="keyword">struct</span> <a class="code" href="structxccdf__benchmark.html" title="Top level XCCDF structure containing profiles, rules, values and results.">xccdf_benchmark</a> *item, <span class="keyword">struct</span> <a class="code" href="structoscap__text.html" title="Representation of internationalizable character strings.">oscap_text</a> *newval);
<a name="l02739"></a>02739 <span class="keywordtype">bool</span> <a class="code" href="group__XCCDF.html#ga8d349985d7d5d121a726573cf64d43a2">xccdf_benchmark_add_platform</a>(<span class="keyword">struct</span> <a class="code" href="structxccdf__benchmark.html" title="Top level XCCDF structure containing profiles, rules, values and results.">xccdf_benchmark</a> *item, <span class="keyword">const</span> <span class="keywordtype">char</span> *newval);
<a name="l02741"></a>02741 <span class="keywordtype">bool</span> <a class="code" href="group__XCCDF.html#ga06a72ba7f846eb468d1d672c45effa8d">xccdf_benchmark_add_reference</a>(<span class="keyword">struct</span> <a class="code" href="structxccdf__benchmark.html" title="Top level XCCDF structure containing profiles, rules, values and results.">xccdf_benchmark</a> *item, <span class="keyword">struct</span> <a class="code" href="structxccdf__reference.html" title="XCCDF reference.">xccdf_reference</a> *newval);
<a name="l02743"></a>02743 <span class="keywordtype">bool</span> <a class="code" href="group__XCCDF.html#ga2f2f15e1a2f05eb522c6092b18e14084">xccdf_benchmark_add_status</a>(<span class="keyword">struct</span> <a class="code" href="structxccdf__benchmark.html" title="Top level XCCDF structure containing profiles, rules, values and results.">xccdf_benchmark</a> *item, <span class="keyword">struct</span> <a class="code" href="structxccdf__status.html" title="XCCDF item status.">xccdf_status</a> *newval);
<a name="l02745"></a>02745 <span class="keywordtype">bool</span> <a class="code" href="group__XCCDF.html#ga3953bb5e150c98bbe4910250412a89a2">xccdf_benchmark_add_title</a>(<span class="keyword">struct</span> <a class="code" href="structxccdf__benchmark.html" title="Top level XCCDF structure containing profiles, rules, values and results.">xccdf_benchmark</a> *item, <span class="keyword">struct</span> <a class="code" href="structoscap__text.html" title="Representation of internationalizable character strings.">oscap_text</a> *newval);
<a name="l02747"></a>02747 <span class="keywordtype">bool</span> <a class="code" href="group__XCCDF.html#ga499bf29b73036e1ec4dd6bf64c8d9835">xccdf_benchmark_add_front_matter</a>(<span class="keyword">struct</span> <a class="code" href="structxccdf__benchmark.html" title="Top level XCCDF structure containing profiles, rules, values and results.">xccdf_benchmark</a> *item, <span class="keyword">struct</span> <a class="code" href="structoscap__text.html" title="Representation of internationalizable character strings.">oscap_text</a> *newval);
<a name="l02749"></a>02749 <span class="comment">//bool xccdf_benchmark_add_item(struct xccdf_benchmark *item, struct xccdf_item *newval);</span>
<a name="l02751"></a>02751 <span class="comment"></span><span class="keywordtype">bool</span> <a class="code" href="group__XCCDF.html#ga2abb5745c07a0b7a3414c3e9f73f41c5">xccdf_benchmark_add_model</a>(<span class="keyword">struct</span> <a class="code" href="structxccdf__benchmark.html" title="Top level XCCDF structure containing profiles, rules, values and results.">xccdf_benchmark</a> *item, <span class="keyword">struct</span> <a class="code" href="structxccdf__model.html" title="XCCDF scoring model.">xccdf_model</a> *newval);
<a name="l02753"></a>02753 <span class="keywordtype">bool</span> <a class="code" href="group__XCCDF.html#gad7a436e66c5ed23ee79fee602825d40e">xccdf_benchmark_add_notice</a>(<span class="keyword">struct</span> <a class="code" href="structxccdf__benchmark.html" title="Top level XCCDF structure containing profiles, rules, values and results.">xccdf_benchmark</a> *item, <span class="keyword">struct</span> <a class="code" href="structxccdf__notice.html" title="XCCDF benchmark legal notice.">xccdf_notice</a> *newval);
<a name="l02755"></a>02755 <span class="keywordtype">bool</span> <a class="code" href="group__XCCDF.html#ga0e0867d3bb3f660000a88ee8cbbc1f0e">xccdf_benchmark_add_plain_text</a>(<span class="keyword">struct</span> <a class="code" href="structxccdf__benchmark.html" title="Top level XCCDF structure containing profiles, rules, values and results.">xccdf_benchmark</a> *item, <span class="keyword">struct</span> <a class="code" href="structxccdf__plain__text.html" title="XCCDF target fact.">xccdf_plain_text</a> *newval);
<a name="l02757"></a>02757 <span class="keywordtype">bool</span> <a class="code" href="group__XCCDF.html#ga5a7a178c88c9e46805b90ff1476501d3">xccdf_benchmark_add_profile</a>(<span class="keyword">struct</span> <a class="code" href="structxccdf__benchmark.html" title="Top level XCCDF structure containing profiles, rules, values and results.">xccdf_benchmark</a> *item, <span class="keyword">struct</span> <a class="code" href="structxccdf__profile.html" title="XCCDF profile is a set of tests and their settings in a compact package.">xccdf_profile</a> *newval);
<a name="l02759"></a>02759 <span class="keywordtype">bool</span> <a class="code" href="group__XCCDF.html#ga8ff9185ad00c5b915e00b1b5919f8c4a">xccdf_benchmark_add_rear_matter</a>(<span class="keyword">struct</span> <a class="code" href="structxccdf__benchmark.html" title="Top level XCCDF structure containing profiles, rules, values and results.">xccdf_benchmark</a> *item, <span class="keyword">struct</span> <a class="code" href="structoscap__text.html" title="Representation of internationalizable character strings.">oscap_text</a> *newval);
<a name="l02761"></a>02761 <span class="keywordtype">bool</span> <a class="code" href="group__XCCDF.html#ga3af47823b4b8c830b746f127b47e884f">xccdf_benchmark_add_rule</a>(<span class="keyword">struct</span> <a class="code" href="structxccdf__benchmark.html" title="Top level XCCDF structure containing profiles, rules, values and results.">xccdf_benchmark</a> *benchmark, <span class="keyword">struct</span> <a class="code" href="structxccdf__rule.html" title="XCCDF rule defines a test execution.">xccdf_rule</a> *rule);
<a name="l02763"></a>02763 <span class="keywordtype">bool</span> <a class="code" href="group__XCCDF.html#ga58cf6982e63fec35326ed13c1118d26d">xccdf_benchmark_add_group</a>(<span class="keyword">struct</span> <a class="code" href="structxccdf__benchmark.html" title="Top level XCCDF structure containing profiles, rules, values and results.">xccdf_benchmark</a> *benchmark, <span class="keyword">struct</span> <a class="code" href="structxccdf__group.html" title="XCCDF rule group.">xccdf_group</a> *group);
<a name="l02765"></a>02765 <span class="keywordtype">bool</span> <a class="code" href="group__XCCDF.html#ga8328912b18562f44f95a90efc4a47218">xccdf_benchmark_add_value</a>(<span class="keyword">struct</span> <a class="code" href="structxccdf__benchmark.html" title="Top level XCCDF structure containing profiles, rules, values and results.">xccdf_benchmark</a> *benchmark, <span class="keyword">struct</span> <a class="code" href="structxccdf__value.html" title="XCCDF Value allows test parametrization or capturing output of tests.">xccdf_value</a> *value);
<a name="l02767"></a>02767 <span class="keywordtype">bool</span> <a class="code" href="group__XCCDF.html#ga3223a26e1f305d28faeb85a3957360ff">xccdf_benchmark_add_content</a>(<span class="keyword">struct</span> <a class="code" href="structxccdf__benchmark.html" title="Top level XCCDF structure containing profiles, rules, values and results.">xccdf_benchmark</a> *bench, <span class="keyword">struct</span> <a class="code" href="structxccdf__item.html" title="A base class for XCCDF items.">xccdf_item</a> *item);
<a name="l02768"></a>02768
<a name="l02770"></a>02770 <span class="keywordtype">bool</span> <a class="code" href="group__XCCDF.html#ga588c74f0bf55cf0b23e25975c2c2c475">xccdf_profile_add_select</a>(<span class="keyword">struct</span> <a class="code" href="structxccdf__profile.html" title="XCCDF profile is a set of tests and their settings in a compact package.">xccdf_profile</a> *item, <span class="keyword">struct</span> <a class="code" href="structxccdf__select.html" title="XCCDF select option usen in the profile.">xccdf_select</a> *newval);
<a name="l02772"></a>02772 <span class="keywordtype">bool</span> <a class="code" href="group__XCCDF.html#ga12960550c409f90d258169da6807aa4d">xccdf_profile_add_setvalue</a>(<span class="keyword">struct</span> <a class="code" href="structxccdf__profile.html" title="XCCDF profile is a set of tests and their settings in a compact package.">xccdf_profile</a> *item, <span class="keyword">struct</span> <a class="code" href="structxccdf__setvalue.html" title="XCCDF set value option used in the profile.">xccdf_setvalue</a> *newval);
<a name="l02774"></a>02774 <span class="keywordtype">bool</span> <a class="code" href="group__XCCDF.html#gab47789bf6b4db787f9ac56a3d32b6751">xccdf_profile_add_refine_value</a>(<span class="keyword">struct</span> <a class="code" href="structxccdf__profile.html" title="XCCDF profile is a set of tests and their settings in a compact package.">xccdf_profile</a> *item, <span class="keyword">struct</span> <a class="code" href="structxccdf__refine__value.html" title="XCCDF refine value option used in the profile.">xccdf_refine_value</a> *newval);
<a name="l02776"></a>02776 <span class="keywordtype">bool</span> <a class="code" href="group__XCCDF.html#ga9fa104393f5e4b62a669f3ac264bf0a2">xccdf_profile_add_refine_rule</a>(<span class="keyword">struct</span> <a class="code" href="structxccdf__profile.html" title="XCCDF profile is a set of tests and their settings in a compact package.">xccdf_profile</a> *item, <span class="keyword">struct</span> <a class="code" href="structxccdf__refine__rule.html" title="XCCDF refine rule option used in the profile.">xccdf_refine_rule</a> *newval);
<a name="l02777"></a>02777
<a name="l02779"></a>02779 <span class="keywordtype">bool</span> <a class="code" href="group__XCCDF.html#gacc0018564a84f3ad2da0e26b890afc3e">xccdf_profile_add_description</a>(<span class="keyword">struct</span> <a class="code" href="structxccdf__profile.html" title="XCCDF profile is a set of tests and their settings in a compact package.">xccdf_profile</a> *item, <span class="keyword">struct</span> <a class="code" href="structoscap__text.html" title="Representation of internationalizable character strings.">oscap_text</a> *newval);
<a name="l02781"></a>02781 <span class="keywordtype">bool</span> <a class="code" href="group__XCCDF.html#ga5827cd99050d4857ea868a18974e2733">xccdf_profile_add_platform</a>(<span class="keyword">struct</span> <a class="code" href="structxccdf__profile.html" title="XCCDF profile is a set of tests and their settings in a compact package.">xccdf_profile</a> *item, <span class="keyword">const</span> <span class="keywordtype">char</span> *newval);
<a name="l02783"></a>02783 <span class="keywordtype">bool</span> <a class="code" href="group__XCCDF.html#gac950fa67ba12e0e7120b844a85399c14">xccdf_profile_add_reference</a>(<span class="keyword">struct</span> <a class="code" href="structxccdf__profile.html" title="XCCDF profile is a set of tests and their settings in a compact package.">xccdf_profile</a> *item, <span class="keyword">struct</span> <a class="code" href="structxccdf__reference.html" title="XCCDF reference.">xccdf_reference</a> *newval);
<a name="l02785"></a>02785 <span class="keywordtype">bool</span> <a class="code" href="group__XCCDF.html#ga99d83b64bdc27b9832e49b3c47d0b626">xccdf_profile_add_status</a>(<span class="keyword">struct</span> <a class="code" href="structxccdf__profile.html" title="XCCDF profile is a set of tests and their settings in a compact package.">xccdf_profile</a> *item, <span class="keyword">struct</span> <a class="code" href="structxccdf__status.html" title="XCCDF item status.">xccdf_status</a> *newval);
<a name="l02787"></a>02787 <span class="keywordtype">bool</span> <a class="code" href="group__XCCDF.html#ga46b130aca56510c24cf94762bf8c5f24">xccdf_profile_add_title</a>(<span class="keyword">struct</span> <a class="code" href="structxccdf__profile.html" title="XCCDF profile is a set of tests and their settings in a compact package.">xccdf_profile</a> *item, <span class="keyword">struct</span> <a class="code" href="structoscap__text.html" title="Representation of internationalizable character strings.">oscap_text</a> *newval);
<a name="l02788"></a>02788
<a name="l02790"></a>02790 <span class="keywordtype">bool</span> <a class="code" href="group__XCCDF.html#ga9b9907d456634495ad129b49ba6fabb5">xccdf_rule_add_description</a>(<span class="keyword">struct</span> <a class="code" href="structxccdf__rule.html" title="XCCDF rule defines a test execution.">xccdf_rule</a> *item, <span class="keyword">struct</span> <a class="code" href="structoscap__text.html" title="Representation of internationalizable character strings.">oscap_text</a> *newval);
<a name="l02792"></a>02792 <span class="keywordtype">bool</span> <a class="code" href="group__XCCDF.html#ga66fa62b0bed946f49baa176d8bc4be2b">xccdf_rule_add_platform</a>(<span class="keyword">struct</span> <a class="code" href="structxccdf__rule.html" title="XCCDF rule defines a test execution.">xccdf_rule</a> *item, <span class="keyword">const</span> <span class="keywordtype">char</span> *newval);
<a name="l02794"></a>02794 <span class="keywordtype">bool</span> <a class="code" href="group__XCCDF.html#ga634aa326ea2519ccead573349ac3c53e">xccdf_rule_add_question</a>(<span class="keyword">struct</span> <a class="code" href="structxccdf__rule.html" title="XCCDF rule defines a test execution.">xccdf_rule</a> *item, <span class="keyword">struct</span> <a class="code" href="structoscap__text.html" title="Representation of internationalizable character strings.">oscap_text</a> *newval);
<a name="l02796"></a>02796 <span class="keywordtype">bool</span> <a class="code" href="group__XCCDF.html#ga9fc2f0d8e71d01687dd489084fe1906f">xccdf_rule_add_rationale</a>(<span class="keyword">struct</span> <a class="code" href="structxccdf__rule.html" title="XCCDF rule defines a test execution.">xccdf_rule</a> *item, <span class="keyword">struct</span> <a class="code" href="structoscap__text.html" title="Representation of internationalizable character strings.">oscap_text</a> *newval);
<a name="l02798"></a>02798 <span class="keywordtype">bool</span> <a class="code" href="group__XCCDF.html#ga482ff42cf4632122c788568bac65a182">xccdf_rule_add_reference</a>(<span class="keyword">struct</span> <a class="code" href="structxccdf__rule.html" title="XCCDF rule defines a test execution.">xccdf_rule</a> *item, <span class="keyword">struct</span> <a class="code" href="structxccdf__reference.html" title="XCCDF reference.">xccdf_reference</a> *newval);
<a name="l02800"></a>02800 <span class="keywordtype">bool</span> <a class="code" href="group__XCCDF.html#gac602ca85ff1542493c42595b6890479e">xccdf_rule_add_status</a>(<span class="keyword">struct</span> <a class="code" href="structxccdf__rule.html" title="XCCDF rule defines a test execution.">xccdf_rule</a> *item, <span class="keyword">struct</span> <a class="code" href="structxccdf__status.html" title="XCCDF item status.">xccdf_status</a> *newval);
<a name="l02802"></a>02802 <span class="keywordtype">bool</span> <a class="code" href="group__XCCDF.html#gac792bdffe479b1736d7caf9b6ff1ccc3">xccdf_rule_add_title</a>(<span class="keyword">struct</span> <a class="code" href="structxccdf__rule.html" title="XCCDF rule defines a test execution.">xccdf_rule</a> *item, <span class="keyword">struct</span> <a class="code" href="structoscap__text.html" title="Representation of internationalizable character strings.">oscap_text</a> *newval);
<a name="l02804"></a>02804 <span class="keywordtype">bool</span> <a class="code" href="group__XCCDF.html#ga23ccf00d64d5ae43f10aa80d3faac074">xccdf_rule_add_warning</a>(<span class="keyword">struct</span> <a class="code" href="structxccdf__rule.html" title="XCCDF rule defines a test execution.">xccdf_rule</a> *item, <span class="keyword">struct</span> <a class="code" href="structxccdf__warning.html" title="XCCDF warning.">xccdf_warning</a> *newval);
<a name="l02806"></a>02806 <span class="keywordtype">bool</span> <a class="code" href="group__XCCDF.html#gad047e9196d516d97d8d0485bc66ba7e5">xccdf_rule_add_ident</a>(<span class="keyword">struct</span> <a class="code" href="structxccdf__rule.html" title="XCCDF rule defines a test execution.">xccdf_rule</a> *item, <span class="keyword">struct</span> <a class="code" href="structxccdf__ident.html" title="XCCDF rule ident URI.">xccdf_ident</a> *newval);
<a name="l02808"></a>02808 <span class="keywordtype">bool</span> <a class="code" href="group__XCCDF.html#ga78dbf233e94ce48b8d6f175a73779d5a">xccdf_rule_add_check</a>(<span class="keyword">struct</span> <a class="code" href="structxccdf__rule.html" title="XCCDF rule defines a test execution.">xccdf_rule</a> *item, <span class="keyword">struct</span> <a class="code" href="structxccdf__check.html" title="XCCDF simple or complex check.">xccdf_check</a> *newval);
<a name="l02810"></a>02810 <span class="keywordtype">bool</span> <a class="code" href="group__XCCDF.html#gabc1ef46e2e4fbbb5de1ed2c0b76ad1c4">xccdf_rule_add_profile_note</a>(<span class="keyword">struct</span> <a class="code" href="structxccdf__rule.html" title="XCCDF rule defines a test execution.">xccdf_rule</a> *item, <span class="keyword">struct</span> <a class="code" href="structxccdf__profile__note.html" title="XCCDF note for given rule in context of given profile.">xccdf_profile_note</a> *newval);
<a name="l02812"></a>02812 <span class="keywordtype">bool</span> <a class="code" href="group__XCCDF.html#ga8691ac1012dafaec6a46a20a83ce45bb">xccdf_rule_add_fix</a>(<span class="keyword">struct</span> <a class="code" href="structxccdf__rule.html" title="XCCDF rule defines a test execution.">xccdf_rule</a> *item, <span class="keyword">struct</span> <a class="code" href="structxccdf__fix.html" title="XCCDF automatic fix.">xccdf_fix</a> *newval);
<a name="l02814"></a>02814 <span class="keywordtype">bool</span> <a class="code" href="group__XCCDF.html#gad09a02bfcb68b8591b1df38f3bcea375">xccdf_rule_add_fixtext</a>(<span class="keyword">struct</span> <a class="code" href="structxccdf__rule.html" title="XCCDF rule defines a test execution.">xccdf_rule</a> *item, <span class="keyword">struct</span> <a class="code" href="structxccdf__fixtext.html" title="XCCDF textual fix instructions.">xccdf_fixtext</a> *newval);
<a name="l02815"></a>02815
<a name="l02817"></a>02817 <span class="keywordtype">bool</span> <a class="code" href="group__XCCDF.html#ga4b364efe4777075f55c0d18f2b73b01f">xccdf_group_add_description</a>(<span class="keyword">struct</span> <a class="code" href="structxccdf__group.html" title="XCCDF rule group.">xccdf_group</a> *item, <span class="keyword">struct</span> <a class="code" href="structoscap__text.html" title="Representation of internationalizable character strings.">oscap_text</a> *newval);
<a name="l02819"></a>02819 <span class="keywordtype">bool</span> <a class="code" href="group__XCCDF.html#gacfc9bdcf645f04a753410ca67f2e20ed">xccdf_group_add_platform</a>(<span class="keyword">struct</span> <a class="code" href="structxccdf__group.html" title="XCCDF rule group.">xccdf_group</a> *item, <span class="keyword">const</span> <span class="keywordtype">char</span> *newval);
<a name="l02821"></a>02821 <span class="keywordtype">bool</span> <a class="code" href="group__XCCDF.html#ga1e2f9e09c99451a381cb8a23297fb6fa">xccdf_group_add_question</a>(<span class="keyword">struct</span> <a class="code" href="structxccdf__group.html" title="XCCDF rule group.">xccdf_group</a> *item, <span class="keyword">struct</span> <a class="code" href="structoscap__text.html" title="Representation of internationalizable character strings.">oscap_text</a> *newval);
<a name="l02823"></a>02823 <span class="keywordtype">bool</span> <a class="code" href="group__XCCDF.html#ga31addbaffd029b7a5e3a825be79dbb56">xccdf_group_add_rationale</a>(<span class="keyword">struct</span> <a class="code" href="structxccdf__group.html" title="XCCDF rule group.">xccdf_group</a> *item, <span class="keyword">struct</span> <a class="code" href="structoscap__text.html" title="Representation of internationalizable character strings.">oscap_text</a> *newval);
<a name="l02825"></a>02825 <span class="keywordtype">bool</span> <a class="code" href="group__XCCDF.html#gaee26acc6e91b431e8d34bd959c35d802">xccdf_group_add_reference</a>(<span class="keyword">struct</span> <a class="code" href="structxccdf__group.html" title="XCCDF rule group.">xccdf_group</a> *item, <span class="keyword">struct</span> <a class="code" href="structxccdf__reference.html" title="XCCDF reference.">xccdf_reference</a> *newval);
<a name="l02827"></a>02827 <span class="keywordtype">bool</span> <a class="code" href="group__XCCDF.html#gae3127502d25009bd50280139cd9cd4ac">xccdf_group_add_status</a>(<span class="keyword">struct</span> <a class="code" href="structxccdf__group.html" title="XCCDF rule group.">xccdf_group</a> *item, <span class="keyword">struct</span> <a class="code" href="structxccdf__status.html" title="XCCDF item status.">xccdf_status</a> *newval);
<a name="l02829"></a>02829 <span class="keywordtype">bool</span> <a class="code" href="group__XCCDF.html#gacb242530f1bbe598f7271d5b7087c464">xccdf_group_add_title</a>(<span class="keyword">struct</span> <a class="code" href="structxccdf__group.html" title="XCCDF rule group.">xccdf_group</a> *item, <span class="keyword">struct</span> <a class="code" href="structoscap__text.html" title="Representation of internationalizable character strings.">oscap_text</a> *newval);
<a name="l02831"></a>02831 <span class="keywordtype">bool</span> <a class="code" href="group__XCCDF.html#gad58cb4a7fa4770797367b307168b3210">xccdf_group_add_warning</a>(<span class="keyword">struct</span> <a class="code" href="structxccdf__group.html" title="XCCDF rule group.">xccdf_group</a> *item, <span class="keyword">struct</span> <a class="code" href="structxccdf__warning.html" title="XCCDF warning.">xccdf_warning</a> *newval);
<a name="l02833"></a>02833 <span class="keywordtype">bool</span> <a class="code" href="group__XCCDF.html#ga921543ff7ef6224054e98de6cf02fe31">xccdf_group_add_rule</a>(<span class="keyword">struct</span> <a class="code" href="structxccdf__group.html" title="XCCDF rule group.">xccdf_group</a> *group, <span class="keyword">struct</span> <a class="code" href="structxccdf__rule.html" title="XCCDF rule defines a test execution.">xccdf_rule</a> *item);
<a name="l02835"></a>02835 <span class="keywordtype">bool</span> <a class="code" href="group__XCCDF.html#gaa4a5a86e2d7b0f7e4c9043b2ce7364d2">xccdf_group_add_group</a>(<span class="keyword">struct</span> <a class="code" href="structxccdf__group.html" title="XCCDF rule group.">xccdf_group</a> *group, <span class="keyword">struct</span> <a class="code" href="structxccdf__group.html" title="XCCDF rule group.">xccdf_group</a> *item);
<a name="l02837"></a>02837 <span class="keywordtype">bool</span> <a class="code" href="group__XCCDF.html#ga07002948770394617327b7fb5ad16168">xccdf_group_add_value</a>(<span class="keyword">struct</span> <a class="code" href="structxccdf__group.html" title="XCCDF rule group.">xccdf_group</a> *group, <span class="keyword">struct</span> <a class="code" href="structxccdf__value.html" title="XCCDF Value allows test parametrization or capturing output of tests.">xccdf_value</a> *item);
<a name="l02839"></a>02839 <span class="keywordtype">bool</span> <a class="code" href="group__XCCDF.html#gac5aefbf089e9338091ab4f27fb8c6f88">xccdf_group_add_content</a>(<span class="keyword">struct</span> <a class="code" href="structxccdf__group.html" title="XCCDF rule group.">xccdf_group</a> *rule, <span class="keyword">struct</span> <a class="code" href="structxccdf__item.html" title="A base class for XCCDF items.">xccdf_item</a> *item);
<a name="l02840"></a>02840
<a name="l02842"></a>02842 <span class="keywordtype">bool</span> <a class="code" href="group__XCCDF.html#ga6113b58faed1ea65a5f9035336a38ad0">xccdf_value_add_description</a>(<span class="keyword">struct</span> <a class="code" href="structxccdf__value.html" title="XCCDF Value allows test parametrization or capturing output of tests.">xccdf_value</a> *item, <span class="keyword">struct</span> <a class="code" href="structoscap__text.html" title="Representation of internationalizable character strings.">oscap_text</a> *newval);
<a name="l02844"></a>02844 <span class="keywordtype">bool</span> <a class="code" href="group__XCCDF.html#gac6dc39775105d370597feed29cb5ca88">xccdf_value_add_question</a>(<span class="keyword">struct</span> <a class="code" href="structxccdf__value.html" title="XCCDF Value allows test parametrization or capturing output of tests.">xccdf_value</a> *item, <span class="keyword">struct</span> <a class="code" href="structoscap__text.html" title="Representation of internationalizable character strings.">oscap_text</a> *newval);
<a name="l02846"></a>02846 <span class="keywordtype">bool</span> <a class="code" href="group__XCCDF.html#ga62ce2c72b1959d87a848b5cba436ab81">xccdf_value_add_reference</a>(<span class="keyword">struct</span> <a class="code" href="structxccdf__value.html" title="XCCDF Value allows test parametrization or capturing output of tests.">xccdf_value</a> *item, <span class="keyword">struct</span> <a class="code" href="structxccdf__reference.html" title="XCCDF reference.">xccdf_reference</a> *newval);
<a name="l02848"></a>02848 <span class="keywordtype">bool</span> <a class="code" href="group__XCCDF.html#gafa8116638559930eca36880d3fca185e">xccdf_value_add_status</a>(<span class="keyword">struct</span> <a class="code" href="structxccdf__value.html" title="XCCDF Value allows test parametrization or capturing output of tests.">xccdf_value</a> *item, <span class="keyword">struct</span> <a class="code" href="structxccdf__status.html" title="XCCDF item status.">xccdf_status</a> *newval);
<a name="l02850"></a>02850 <span class="keywordtype">bool</span> <a class="code" href="group__XCCDF.html#ga9baf970ff88bf11163a155696cfaf7fd">xccdf_value_add_title</a>(<span class="keyword">struct</span> <a class="code" href="structxccdf__value.html" title="XCCDF Value allows test parametrization or capturing output of tests.">xccdf_value</a> *item, <span class="keyword">struct</span> <a class="code" href="structoscap__text.html" title="Representation of internationalizable character strings.">oscap_text</a> *newval);
<a name="l02852"></a>02852 <span class="keywordtype">bool</span> <a class="code" href="group__XCCDF.html#gad6b775a476ae6c7f26c87d8ce3de97ee">xccdf_value_add_warning</a>(<span class="keyword">struct</span> <a class="code" href="structxccdf__value.html" title="XCCDF Value allows test parametrization or capturing output of tests.">xccdf_value</a> *item, <span class="keyword">struct</span> <a class="code" href="structxccdf__warning.html" title="XCCDF warning.">xccdf_warning</a> *newval);
<a name="l02853"></a>02853
<a name="l02855"></a>02855 <span class="keywordtype">bool</span> <a class="code" href="group__XCCDF.html#ga2b4973f55083dd0a0b56ce2fcedffd75">xccdf_check_add_import</a>(<span class="keyword">struct</span> <a class="code" href="structxccdf__check.html" title="XCCDF simple or complex check.">xccdf_check</a> *obj, <span class="keyword">struct</span> <a class="code" href="structxccdf__check__import.html" title="XCCDF check import.">xccdf_check_import</a> *item);
<a name="l02857"></a>02857 <span class="keywordtype">bool</span> <a class="code" href="group__XCCDF.html#ga940317274589b8f47609bd16ff61ba98">xccdf_check_add_export</a>(<span class="keyword">struct</span> <a class="code" href="structxccdf__check.html" title="XCCDF simple or complex check.">xccdf_check</a> *obj, <span class="keyword">struct</span> <a class="code" href="structxccdf__check__export.html" title="XCCDF check export.">xccdf_check_export</a> *item);
<a name="l02859"></a>02859 <span class="keywordtype">bool</span> <a class="code" href="group__XCCDF.html#gae05ca76aa055291a9640892ce7b598e5">xccdf_check_add_content_ref</a>(<span class="keyword">struct</span> <a class="code" href="structxccdf__check.html" title="XCCDF simple or complex check.">xccdf_check</a> *obj, <span class="keyword">struct</span> <a class="code" href="structxccdf__check__content__ref.html" title="XCCDF check content reference.">xccdf_check_content_ref</a> *item);
<a name="l02861"></a>02861 <span class="keywordtype">bool</span> <a class="code" href="group__XCCDF.html#ga1d3359f8328a62154c862147fbb4caa0">xccdf_check_add_child</a>(<span class="keyword">struct</span> <a class="code" href="structxccdf__check.html" title="XCCDF simple or complex check.">xccdf_check</a> *obj, <span class="keyword">struct</span> <a class="code" href="structxccdf__check.html" title="XCCDF simple or complex check.">xccdf_check</a> *item);
<a name="l02863"></a>02863 <span class="keywordtype">bool</span> <a class="code" href="group__XCCDF.html#ga0dfcc7889560fdd8c2df6ef077b70735">xccdf_select_add_remark</a>(<span class="keyword">struct</span> <a class="code" href="structxccdf__select.html" title="XCCDF select option usen in the profile.">xccdf_select</a> *obj, <span class="keyword">struct</span> <a class="code" href="structoscap__text.html" title="Representation of internationalizable character strings.">oscap_text</a> *item);
<a name="l02865"></a>02865 <span class="keywordtype">bool</span> <a class="code" href="group__XCCDF.html#gaccc75b4f9e351fa22ae03d4ffffc64af">xccdf_refine_value_add_remark</a>(<span class="keyword">struct</span> <a class="code" href="structxccdf__refine__value.html" title="XCCDF refine value option used in the profile.">xccdf_refine_value</a> *obj, <span class="keyword">struct</span> <a class="code" href="structoscap__text.html" title="Representation of internationalizable character strings.">oscap_text</a> *item);
<a name="l02867"></a>02867 <span class="keywordtype">bool</span> <a class="code" href="group__XCCDF.html#ga51a247fb683dae6969db66a8f81f1c0a">xccdf_result_add_rule_result</a>(<span class="keyword">struct</span> <a class="code" href="structxccdf__result.html" title="Actual results of running a XCCDF test or profile.">xccdf_result</a> *item, <span class="keyword">struct</span> <a class="code" href="structxccdf__rule__result.html" title="XCCDF rule result.">xccdf_rule_result</a> *newval);
<a name="l02869"></a>02869 <span class="keywordtype">bool</span> <a class="code" href="group__XCCDF.html#gafa24a9622e7ad7f7683687fd0eaf956d">xccdf_result_add_setvalue</a>(<span class="keyword">struct</span> <a class="code" href="structxccdf__result.html" title="Actual results of running a XCCDF test or profile.">xccdf_result</a> *item, <span class="keyword">struct</span> <a class="code" href="structxccdf__setvalue.html" title="XCCDF set value option used in the profile.">xccdf_setvalue</a> *newval);
<a name="l02871"></a>02871 <span class="keywordtype">bool</span> <a class="code" href="group__XCCDF.html#gaf25f84e83bb0f4a78b9700f61c1d4483">xccdf_result_add_target_fact</a>(<span class="keyword">struct</span> <a class="code" href="structxccdf__result.html" title="Actual results of running a XCCDF test or profile.">xccdf_result</a> *item, <span class="keyword">struct</span> <a class="code" href="structxccdf__target__fact.html" title="XCCDF target fact.">xccdf_target_fact</a> *newval);
<a name="l02873"></a>02873 <span class="keywordtype">bool</span> <a class="code" href="group__XCCDF.html#gab5abc09d0c774a3398d024b9ae39eb73">xccdf_result_add_remark</a>(<span class="keyword">struct</span> <a class="code" href="structxccdf__result.html" title="Actual results of running a XCCDF test or profile.">xccdf_result</a> *item, <span class="keyword">struct</span> <a class="code" href="structoscap__text.html" title="Representation of internationalizable character strings.">oscap_text</a> *newval);
<a name="l02875"></a>02875 <span class="keywordtype">bool</span> <a class="code" href="group__XCCDF.html#ga31c372b725f06ce897be4f0c465362df">xccdf_result_add_organization</a>(<span class="keyword">struct</span> <a class="code" href="structxccdf__result.html" title="Actual results of running a XCCDF test or profile.">xccdf_result</a> *item, <span class="keyword">const</span> <span class="keywordtype">char</span> *newval);
<a name="l02877"></a>02877 <span class="keywordtype">bool</span> <a class="code" href="group__XCCDF.html#ga3aad2a5e86e035adb8e90a4363bb6563">xccdf_result_add_target</a>(<span class="keyword">struct</span> <a class="code" href="structxccdf__result.html" title="Actual results of running a XCCDF test or profile.">xccdf_result</a> *item, <span class="keyword">const</span> <span class="keywordtype">char</span> *newval);
<a name="l02879"></a>02879 <span class="keywordtype">bool</span> <a class="code" href="group__XCCDF.html#ga4237090c6f3637a8ad6e97abf3aab98d">xccdf_result_add_identity</a>(<span class="keyword">struct</span> <a class="code" href="structxccdf__result.html" title="Actual results of running a XCCDF test or profile.">xccdf_result</a> *item, <span class="keyword">struct</span> <a class="code" href="structxccdf__identity.html" title="XCCDF identity.">xccdf_identity</a> *newval);
<a name="l02881"></a>02881 <span class="keywordtype">bool</span> <a class="code" href="group__XCCDF.html#ga752ba2a1eb79e9723513d19f22e06dc5">xccdf_result_add_score</a>(<span class="keyword">struct</span> <a class="code" href="structxccdf__result.html" title="Actual results of running a XCCDF test or profile.">xccdf_result</a> *item, <span class="keyword">struct</span> <a class="code" href="structxccdf__score.html" title="XCCDF score.">xccdf_score</a> *newval);
<a name="l02883"></a>02883 <span class="keywordtype">bool</span> <a class="code" href="group__XCCDF.html#ga3af4b500ade3e73b22ec5bcd3e808bc2">xccdf_result_add_title</a>(<span class="keyword">struct</span> <a class="code" href="structxccdf__result.html" title="Actual results of running a XCCDF test or profile.">xccdf_result</a> *item, <span class="keyword">struct</span> <a class="code" href="structoscap__text.html" title="Representation of internationalizable character strings.">oscap_text</a> *newval);
<a name="l02885"></a>02885 <span class="keywordtype">bool</span> <a class="code" href="group__XCCDF.html#gab75b7d24cb1a758e843d71da2c95b9bc">xccdf_result_add_target_address</a>(<span class="keyword">struct</span> <a class="code" href="structxccdf__result.html" title="Actual results of running a XCCDF test or profile.">xccdf_result</a> *item, <span class="keyword">const</span> <span class="keywordtype">char</span> *newval);
<a name="l02887"></a>02887 <span class="keywordtype">bool</span> <a class="code" href="group__XCCDF.html#gafe4df65d5ff6f4b4d15618c1e9aa3123">xccdf_rule_result_add_ident</a>(<span class="keyword">struct</span> <a class="code" href="structxccdf__rule__result.html" title="XCCDF rule result.">xccdf_rule_result</a> *obj, <span class="keyword">struct</span> <a class="code" href="structxccdf__ident.html" title="XCCDF rule ident URI.">xccdf_ident</a> *item);
<a name="l02889"></a>02889 <span class="keywordtype">bool</span> <a class="code" href="group__XCCDF.html#ga0f2155abd07bce105f08fa15983df57a">xccdf_rule_result_add_fix</a>(<span class="keyword">struct</span> <a class="code" href="structxccdf__rule__result.html" title="XCCDF rule result.">xccdf_rule_result</a> *obj, <span class="keyword">struct</span> <a class="code" href="structxccdf__fix.html" title="XCCDF automatic fix.">xccdf_fix</a> *item);
<a name="l02891"></a>02891 <span class="keywordtype">bool</span> <a class="code" href="group__XCCDF.html#ga82fcc44d0f8c5f3c53956303f87f8778">xccdf_rule_result_add_check</a>(<span class="keyword">struct</span> <a class="code" href="structxccdf__rule__result.html" title="XCCDF rule result.">xccdf_rule_result</a> *obj, <span class="keyword">struct</span> <a class="code" href="structxccdf__check.html" title="XCCDF simple or complex check.">xccdf_check</a> *item);
<a name="l02893"></a>02893 <span class="keywordtype">bool</span> <a class="code" href="group__XCCDF.html#ga2124de2d31fffddf5a777c5efc8810f5">xccdf_rule_result_add_override</a>(<span class="keyword">struct</span> <a class="code" href="structxccdf__rule__result.html" title="XCCDF rule result.">xccdf_rule_result</a> *obj, <span class="keyword">struct</span> <a class="code" href="structxccdf__override.html" title="XCCDF override.">xccdf_override</a> *item);
<a name="l02895"></a>02895 <span class="keywordtype">bool</span> <a class="code" href="group__XCCDF.html#ga9ee44900840b044d2e2913ba0c1cd391">xccdf_rule_result_add_message</a>(<span class="keyword">struct</span> <a class="code" href="structxccdf__rule__result.html" title="XCCDF rule result.">xccdf_rule_result</a> *obj, <span class="keyword">struct</span> <a class="code" href="structxccdf__message.html" title="XCCDF message.">xccdf_message</a> *item);
<a name="l02897"></a>02897 <span class="keywordtype">bool</span> <a class="code" href="group__XCCDF.html#ga7721a7113e83fd53f1c2756e3d47a984">xccdf_rule_result_add_instance</a>(<span class="keyword">struct</span> <a class="code" href="structxccdf__rule__result.html" title="XCCDF rule result.">xccdf_rule_result</a> *obj, <span class="keyword">struct</span> <a class="code" href="structxccdf__instance.html" title="XCCDF instance.">xccdf_instance</a> *item);
<a name="l02899"></a>02899 <span class="keywordtype">bool</span> <a class="code" href="group__XCCDF.html#ga142c2fd792e0f4cc9ff16562c100ca4a">xccdf_item_add_description</a>(<span class="keyword">struct</span> <a class="code" href="structxccdf__item.html" title="A base class for XCCDF items.">xccdf_item</a> *item, <span class="keyword">struct</span> <a class="code" href="structoscap__text.html" title="Representation of internationalizable character strings.">oscap_text</a> *newval);
<a name="l02901"></a>02901 <span class="keywordtype">bool</span> <a class="code" href="group__XCCDF.html#ga37a171afdafacdc85f890a53084a2941">xccdf_item_add_platform</a>(<span class="keyword">struct</span> <a class="code" href="structxccdf__item.html" title="A base class for XCCDF items.">xccdf_item</a> *item, <span class="keyword">const</span> <span class="keywordtype">char</span> *newval);
<a name="l02903"></a>02903 <span class="keywordtype">bool</span> <a class="code" href="group__XCCDF.html#ga90efa00720237f055011fc5ae2b09a68">xccdf_item_add_question</a>(<span class="keyword">struct</span> <a class="code" href="structxccdf__item.html" title="A base class for XCCDF items.">xccdf_item</a> *item, <span class="keyword">struct</span> <a class="code" href="structoscap__text.html" title="Representation of internationalizable character strings.">oscap_text</a> *newval);
<a name="l02905"></a>02905 <span class="keywordtype">bool</span> <a class="code" href="group__XCCDF.html#ga37e02de79b2fcf74ddaf685de2a3ad09">xccdf_item_add_rationale</a>(<span class="keyword">struct</span> <a class="code" href="structxccdf__item.html" title="A base class for XCCDF items.">xccdf_item</a> *item, <span class="keyword">struct</span> <a class="code" href="structoscap__text.html" title="Representation of internationalizable character strings.">oscap_text</a> *newval);
<a name="l02907"></a>02907 <span class="keywordtype">bool</span> <a class="code" href="group__XCCDF.html#gabc13b36036d4d2e2477854e686d39b43">xccdf_item_add_reference</a>(<span class="keyword">struct</span> <a class="code" href="structxccdf__item.html" title="A base class for XCCDF items.">xccdf_item</a> *item, <span class="keyword">struct</span> <a class="code" href="structxccdf__reference.html" title="XCCDF reference.">xccdf_reference</a> *newval);
<a name="l02909"></a>02909 <span class="keywordtype">bool</span> <a class="code" href="group__XCCDF.html#ga0277092bd5e0eed6b4c7ecc6817f4af6">xccdf_item_add_status</a>(<span class="keyword">struct</span> <a class="code" href="structxccdf__item.html" title="A base class for XCCDF items.">xccdf_item</a> *item, <span class="keyword">struct</span> <a class="code" href="structxccdf__status.html" title="XCCDF item status.">xccdf_status</a> *newval);
<a name="l02911"></a>02911 <span class="keywordtype">bool</span> <a class="code" href="group__XCCDF.html#gaccb73f58cea4d14967e48a4eca828b08">xccdf_item_add_title</a>(<span class="keyword">struct</span> <a class="code" href="structxccdf__item.html" title="A base class for XCCDF items.">xccdf_item</a> *item, <span class="keyword">struct</span> <a class="code" href="structoscap__text.html" title="Representation of internationalizable character strings.">oscap_text</a> *newval);
<a name="l02913"></a>02913 <span class="keywordtype">bool</span> <a class="code" href="group__XCCDF.html#ga4bc0c8f377b0157d313ca89dfa2f2c55">xccdf_item_add_warning</a>(<span class="keyword">struct</span> <a class="code" href="structxccdf__item.html" title="A base class for XCCDF items.">xccdf_item</a> *item, <span class="keyword">struct</span> <a class="code" href="structxccdf__warning.html" title="XCCDF warning.">xccdf_warning</a> *newval);
<a name="l02915"></a>02915 <span class="keywordtype">bool</span> <a class="code" href="group__XCCDF.html#ga9193e37cf2185ebea194b9d46dba643a">xccdf_refine_rule_add_remark</a>(<span class="keyword">struct</span> <a class="code" href="structxccdf__refine__rule.html" title="XCCDF refine rule option used in the profile.">xccdf_refine_rule</a> *obj, <span class="keyword">struct</span> <a class="code" href="structoscap__text.html" title="Representation of internationalizable character strings.">oscap_text</a> *item);
<a name="l02916"></a>02916
<a name="l02917"></a>02917 <span class="comment">/************************************************************</span>
<a name="l02918"></a>02918 <span class="comment"> ** @} End of Setters group */</span>
<a name="l02919"></a>02919
<a name="l02920"></a>02920
<a name="l02921"></a>02921 <span class="comment">/************************************************************</span>
<a name="l02922"></a>02922 <span class="comment"> ** @} End of XCCDF group */</span>
<a name="l02923"></a>02923
<a name="l02924"></a>02924 <span class="preprocessor">#endif</span>
</pre></div></div>
<hr size="1"/><address style="text-align: right;"><small>Generated on 30 Jun 2010 for Open SCAP Library by
<a href="http://www.doxygen.org/index.html">
<img class="footer" src="doxygen.png" alt="doxygen"/></a> 1.6.1 </small></address>
</body>
</html>
|