OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:capng_save_state
(Results
1 - 7
of
7
) sorted by null
/external/libcap-ng/libcap-ng-0.7/docs/
capng_save_state.3
1
.TH "
CAPNG_SAVE_STATE
" "3" "June 2009" "Red Hat" "Libcap-ng API"
3
capng_save_state
\- get the internal library state
7
void *
capng_save_state
(void);
11
capng_save_state
is a function that returns a pointer to the internal state of the libcap-ng library. It should be considered opaque and not for alteration directly. This function should be used when you suspect a third party library may use libcap-ng also and want to make sure it doesn't alter something important. This function is not available in the python bindings.
capng_restore_state.3
1
.TH "
CAPNG_SAVE_STATE
" "3" "June 2009" "Red Hat" "Libcap-ng API"
11
capng_restore_state is a function that takes the state information previously saved by
capng_save_state
and restores the libraries internal state. This function is not available in the python bindings.
19
.BR
capng_save_state
(3),
Makefile.am
33
capng_save_state
.3 capng_restore_state.3
Makefile.in
242
capng_save_state
.3 capng_restore_state.3
/external/libcap-ng/libcap-ng-0.7/src/
cap-ng.h
83
void *
capng_save_state
(void);
cap-ng.c
479
void *s =
capng_save_state
();
937
void *
capng_save_state
(void)
function
/external/libcap-ng/libcap-ng-0.7/src/test/
lib_test.c
42
saved =
capng_save_state
();
Completed in 123 milliseconds