File: booleans_active.h

package info (click to toggle)
android-platform-external-libselinux 10.0.0%2Br36-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 34,176 kB
  • sloc: ansic: 147,112; python: 25,790; makefile: 1,930; yacc: 1,389; sh: 1,206; lex: 452; xml: 180
file content (33 lines) | stat: -rw-r--r-- 1,027 bytes parent folder | download | duplicates (14)
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
/* Copyright (C) 2005 Red Hat, Inc. */

#ifndef _SEMANAGE_BOOLEANS_ACTIVE_H_
#define _SEMANAGE_BOOLEANS_ACTIVE_H_

#include <semanage/boolean_record.h>
#include <semanage/handle.h>

extern int semanage_bool_set_active(semanage_handle_t * handle,
				    const semanage_bool_key_t * key,
				    const semanage_bool_t * data);

extern int semanage_bool_query_active(semanage_handle_t * handle,
				      const semanage_bool_key_t * key,
				      semanage_bool_t ** response);

extern int semanage_bool_exists_active(semanage_handle_t * handle,
				       const semanage_bool_key_t * key,
				       int *response);

extern int semanage_bool_count_active(semanage_handle_t * handle,
				      unsigned int *response);

extern int semanage_bool_iterate_active(semanage_handle_t * handle,
					int (*handler) (const semanage_bool_t *
							record, void *varg),
					void *handler_arg);

extern int semanage_bool_list_active(semanage_handle_t * handle,
				     semanage_bool_t *** records,
				     unsigned int *count);

#endif