OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:capng_name_to_capability
(Results
1 - 7
of
7
) sorted by null
/external/libcap-ng/libcap-ng-0.7/docs/
capng_name_to_capability.3
1
.TH "
CAPNG_NAME_TO_CAPABILITY
" "3" "June 2009" "Red Hat" "Libcap-ng API"
3
capng_name_to_capability
\- convert capability text to integer
7
int
capng_name_to_capability
(const char *name);
11
capng_name_to_capability
will take the string being passed and look it up to see what its integer value would be. The string being input is the same name as the define in linux/capabiliy.h with the CAP_ prefix removed. The string case does not matter. The integer that is output is the same as the define would be from linux/capabiliy.h. This is useful for taking string input and converting to something that can be used with capng_update.
Makefile.am
32
capng_name_to_capability
.3 capng_capability_to_name.3 \
Makefile.in
241
capng_name_to_capability
.3 capng_capability_to_name.3 \
/external/libcap-ng/libcap-ng-0.7/bindings/python/
capng.py
186
def
capng_name_to_capability
(*args):
function
187
return _capng.
capng_name_to_capability
(*args)
188
capng_name_to_capability
= _capng.
capng_name_to_capability
variable
/external/libcap-ng/libcap-ng-0.7/src/
cap-ng.h
77
int
capng_name_to_capability
(const char *name);
lookup_table.c
101
int
capng_name_to_capability
(const char *name)
function
/external/libcap-ng/libcap-ng-0.7/utils/
filecap.c
132
int cap =
capng_name_to_capability
(argv[i]);
Completed in 194 milliseconds