#include <stdlib.h>
#include <stdio.h>
#include <string.h>
#include "oval_definitions_impl.h"
#include "adt/oval_collection_impl.h"
#include "oval_agent_api_impl.h"
#include "common/debug_priv.h"
#include "common/elements.h"
#include "public/oval_version.h"
#include "public/oval_schema_version.h"
Data Structures | |
| struct | oval_object |
| An Oval_object instance describes a set of items to look for on an instrumented host platform. More... | |
Typedefs | |
| typedef struct oval_object | oval_object_t |
Functions | |
| bool | oval_object_iterator_has_more (struct oval_object_iterator *oc_object) |
| Returns true if the iterator is not exhausted. | |
| struct oval_object * | oval_object_iterator_next (struct oval_object_iterator *oc_object) |
| Returns the next instance of oval_object. | |
| void | oval_object_iterator_free (struct oval_object_iterator *oc_object) |
| Frees the iterator. | |
| oval_family_t | oval_object_get_family (struct oval_object *object) |
| Returns attribute oval_object->family oval_object. | |
| oval_subtype_t | oval_object_get_subtype (struct oval_object *object) |
| Returns attribute oval_object->subtype oval_object. | |
| const char * | oval_object_get_name (struct oval_object *object) |
| Returns the name of an oval_object. | |
| struct oval_string_iterator * | oval_object_get_notes (struct oval_object *object) |
| Returns attribute oval_object->notes. | |
| char * | oval_object_get_comment (struct oval_object *object) |
| Returns attribute oval_object->comment. | |
| char * | oval_object_get_id (struct oval_object *object) |
| Returns attribute oval_object->id. | |
| bool | oval_object_get_deprecated (struct oval_object *object) |
| Returns attribute oval_object->deprecated. | |
| int | oval_object_get_version (struct oval_object *object) |
| Returns attribute oval_object->version. | |
| oval_version_t | oval_object_get_schema_version (struct oval_object *object) |
| Returns schema version of the associated definition model. | |
| oval_schema_version_t | oval_object_get_platform_schema_version (struct oval_object *object) |
| Returns schema version of the associated platform extension definition model oval_object. | |
| struct oval_object_content_iterator * | oval_object_get_object_contents (struct oval_object *object) |
| Returns attribute oval_object->contents. | |
| struct oval_behavior_iterator * | oval_object_get_behaviors (struct oval_object *object) |
| Returns attribute oval_object->behaviors. | |
| struct oval_object * | oval_object_new (struct oval_definition_model *model, const char *id) |
| Construct new intance of oval_object. | |
| struct oval_object * | oval_object_clone2 (struct oval_definition_model *new_model, struct oval_object *old_object, char *new_id) |
| struct oval_object * | oval_object_clone (struct oval_definition_model *new_model, struct oval_object *old_object) |
| Clone instance of oval_object and add it to the specified oval_definition_model. | |
| void | oval_object_free (struct oval_object *object) |
| Free instance of oval_object oval_object. | |
| void | oval_object_set_subtype (struct oval_object *object, oval_subtype_t subtype) |
| Sets attributes oval_object->subtype and oval_object->family. | |
| void | oval_object_add_note (struct oval_object *object, char *note) |
| Appends a copy of the note parameter to attribute oval_object->notes. | |
| void | oval_object_set_comment (struct oval_object *object, char *comm) |
| Sets a copy of the comment parameter to attribute oval_object->comment. | |
| void | oval_object_set_deprecated (struct oval_object *object, bool deprecated) |
| Sets attribute oval_object->deprecated. | |
| void | oval_object_set_version (struct oval_object *object, int version) |
| Sets attribute oval_object->version. | |
| void | oval_object_add_object_content (struct oval_object *object, struct oval_object_content *content) |
| Append instance of oval_object_content to attribute oval_object->object_contents. | |
| void | oval_object_add_behavior (struct oval_object *object, struct oval_behavior *behavior) |
| Append instance of oval_behavior to attribute oval_object->behaviors. | |
| int | oval_object_parse_tag (xmlTextReaderPtr reader, struct oval_parser_context *context, void *usr) |
| xmlNode * | oval_object_to_dom (struct oval_object *object, xmlDoc *doc, xmlNode *parent) |
| struct oval_object * | oval_object_create_internal (struct oval_object *obj, char *set_id) |
| struct oval_object * | oval_object_get_base_obj (struct oval_object *obj) |
See more details at http://oval.mitre.org/
1.5.6