Open SCAP Library
|
Open Vulnerability and Assessment Language.
See more details at http://oval.mitre.org/
#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/util.h"
#include "common/debug_priv.h"
Data Structures | |
struct | oval_object_content |
An Oval_object_content instance specifies an oval_object field. More... | |
struct | oval_object_content_ENTITY |
struct | oval_object_content_SET |
struct | oval_object_content_FILTER |
Typedefs | |
typedef struct oval_object_content | oval_object_content_t |
typedef struct oval_object_content_ENTITY | oval_object_content_ENTITY_t |
typedef struct oval_object_content_SET | oval_object_content_SET_t |
typedef struct oval_object_content_FILTER | oval_object_content_FILTER_t |
Functions | |
bool | oval_object_content_iterator_has_more (struct oval_object_content_iterator *oc_object_content) |
struct oval_object_content * | oval_object_content_iterator_next (struct oval_object_content_iterator *oc_object_content) |
void | oval_object_content_iterator_free (struct oval_object_content_iterator *oc_object_content) |
char * | oval_object_content_get_field_name (struct oval_object_content *content) |
oval_object_content_type_t | oval_object_content_get_type (struct oval_object_content *content) |
struct oval_entity * | oval_object_content_get_entity (struct oval_object_content *content) |
oval_check_t | oval_object_content_get_varCheck (struct oval_object_content *content) |
struct oval_setobject * | oval_object_content_get_setobject (struct oval_object_content *content) |
struct oval_filter * | oval_object_content_get_filter (struct oval_object_content *content) |
struct oval_object_content * | oval_object_content_new (struct oval_definition_model *model, oval_object_content_type_t type) |
struct oval_object_content * | oval_object_content_clone (struct oval_definition_model *new_model, struct oval_object_content *old_content) |
void | oval_object_content_free (struct oval_object_content *content) |
void | oval_object_content_set_type (struct oval_object_content *content, oval_object_content_type_t type) |
void | oval_object_content_set_field_name (struct oval_object_content *content, char *name) |
void | oval_object_content_set_entity (struct oval_object_content *content, struct oval_entity *entity) |
void | oval_object_content_set_varCheck (struct oval_object_content *content, oval_check_t check) |
void | oval_object_content_set_setobject (struct oval_object_content *content, struct oval_setobject *set) |
void | oval_object_content_set_filter (struct oval_object_content *content, struct oval_filter *filter) |
int | oval_object_content_parse_tag (xmlTextReaderPtr reader, struct oval_parser_context *context, oval_object_content_consumer consumer, void *user) |
xmlNode * | oval_object_content_to_dom (struct oval_object_content *content, xmlDoc *doc, xmlNode *parent) |