Searched defs:boolean (Results 1 - 25 of 40) sorted by relevance

12

/external/clang/test/PCH/
H A Dcxx_exprs.cpp13 bool boolean; variable
32 bool_literal_result *bool_ptr = &boolean;
/external/selinux/libsemanage/src/
H A Dboolean_record.c34 const semanage_bool_t * boolean,
38 return sepol_bool_key_extract(handle->sepolh, boolean, key);
50 int semanage_bool_compare(const semanage_bool_t * boolean,
54 return sepol_bool_compare(boolean, key);
59 int semanage_bool_compare2(const semanage_bool_t * boolean,
63 return sepol_bool_compare2(boolean, boolean2);
68 static int semanage_bool_compare2_qsort(const semanage_bool_t ** boolean, argument
72 return sepol_bool_compare2(*boolean, *boolean2);
76 const char *semanage_bool_get_name(const semanage_bool_t * boolean) argument
79 return sepol_bool_get_name(boolean);
33 semanage_bool_key_extract(semanage_handle_t * handle, const semanage_bool_t * boolean, semanage_bool_key_t ** key) argument
[all...]
H A Dbooleans_file.c24 semanage_bool_t * boolean, FILE * str)
27 const char *name = semanage_bool_get_name(boolean);
28 int value = semanage_bool_get_value(boolean);
31 ERR(handle, "could not print boolean %s to stream", name);
39 parse_info_t * info, semanage_bool_t * boolean)
54 if (semanage_bool_set_name(handle, boolean, str) < 0)
80 ERR(handle, "invalid boolean value for \"%s\": %u "
81 "(%s: %u)\n%s", semanage_bool_get_name(boolean),
85 semanage_bool_set_value(boolean, value);
97 ERR(handle, "could not parse boolean recor
23 bool_print(semanage_handle_t * handle, semanage_bool_t * boolean, FILE * str) argument
38 bool_parse(semanage_handle_t * handle, parse_info_t * info, semanage_bool_t * boolean) argument
[all...]
/external/selinux/libsepol/src/
H A Dboolean_record.c9 /* This boolean's name */
17 /* This boolean's name */
29 ERR(handle, "out of memory, " "could not create boolean key");
50 const sepol_bool_t * boolean,
54 if (sepol_bool_key_create(handle, boolean->name, key_ptr) < 0) {
55 ERR(handle, "could not extract key from boolean %s",
56 boolean->name);
68 int sepol_bool_compare(const sepol_bool_t * boolean, argument
72 return strcmp(boolean->name, key->name);
75 int sepol_bool_compare2(const sepol_bool_t * boolean, argument
83 sepol_bool_get_name(const sepol_bool_t * boolean) argument
128 sepol_bool_t *boolean = (sepol_bool_t *) malloc(sizeof(sepol_bool_t)); local
170 sepol_bool_free(sepol_bool_t * boolean) argument
[all...]
H A Dbooleans.c33 ERR(handle, "boolean %s no longer in policy", name);
37 ERR(handle, "illegal value %d for boolean %s", value, name);
50 ERR(handle, "could not update boolean %s", cname);
77 ERR(handle, "could not convert boolean %s to record", name);
102 ERR(handle, "could not set boolean %s", name);
173 ERR(handle, "could not query boolean %s", cname);
180 int (*fn) (const sepol_bool_t * boolean,
186 sepol_bool_t *boolean = NULL; local
189 /* For each boolean */
194 if (bool_to_record(handle, policydb, i, &boolean) <
178 sepol_bool_iterate(sepol_handle_t * handle, const sepol_policydb_t * p, int (*fn) (const sepol_bool_t * boolean, void *fn_arg), void *arg) argument
[all...]
/external/google-breakpad/src/processor/
H A Dsimple_serializer-inl.h57 static size_t SizeOf(bool boolean) { return 1; } argument
59 static char *Write(bool boolean, char *dest) { argument
60 *dest = static_cast<char>(boolean? 255 : 0);
H A Dfast_source_line_resolver.cc129 const char *boolean = reinterpret_cast<const char*>(para_uint32 + 6); local
130 bool allocates_base_pointer = (*boolean != 0);
131 string program_string = boolean + 1;
/external/mesa3d/src/gallium/include/pipe/
H A Dp_compiler.h77 typedef unsigned char boolean; typedef
/external/opencv3/3rdparty/libjpeg/
H A Djconfig.h54 /* Define "boolean" as unsigned char, not int, on Windows systems.
58 typedef unsigned char boolean; typedef
H A Djmorecfg.h249 * On a few systems, type boolean and/or its values FALSE, TRUE may appear
257 #define FALSE 0 /* values of boolean */
263 typedef enum { FALSE = 0, TRUE = 1 } boolean; typedef in typeref:enum:__anon15281
/external/parameter-framework/asio/include/asio/detail/
H A Dsocket_option.hpp27 // Helper template for implementing boolean-based options.
29 class boolean class in namespace:asio::detail::socket_option
33 boolean() function in class:asio::detail::socket_option::boolean
39 explicit boolean(bool v) function in class:asio::detail::socket_option::boolean
44 // Set the current value of the boolean.
45 boolean& operator=(bool v)
51 // Get the current value of the boolean.
83 // Get the address of the boolean data.
90 // Get the address of the boolean data.
97 // Get the size of the boolean dat
[all...]
/external/parameter-framework/asio-1.10.6/include/asio/detail/
H A Dsocket_option.hpp27 // Helper template for implementing boolean-based options.
29 class boolean class in namespace:asio::detail::socket_option
33 boolean() function in class:asio::detail::socket_option::boolean
39 explicit boolean(bool v) function in class:asio::detail::socket_option::boolean
44 // Set the current value of the boolean.
45 boolean& operator=(bool v)
51 // Get the current value of the boolean.
83 // Get the address of the boolean data.
90 // Get the address of the boolean data.
97 // Get the size of the boolean dat
[all...]
/external/pdfium/third_party/libjpeg/
H A Djconfig.h24 /* Define "boolean" as unsigned char, not int, per Windows custom */
26 typedef unsigned char boolean; typedef
H A Djmorecfg.h233 * On a few systems, type boolean and/or its values FALSE, TRUE may appear
240 typedef int boolean; typedef
243 #define FALSE 0 /* values of boolean */
/external/deqp/modules/gles2/functional/
H A Des2fImplementationLimitTests.cpp79 std::ostream& operator<< (std::ostream& str, const Boolean& boolean) { return str << (boolean.value ? "GL_TRUE" : "GL_FALSE"); } argument
/external/selinux/policycoreutils/setsebool/
H A Dsetsebool.c29 ("\nUsage: setsebool [ -NPV ] boolean value | bool1=val1 bool2=val2...\n\n",
68 fprintf(stderr, "Error: boolean name required\n");
99 /* Apply temporal boolean changes to policy via libselinux */
107 "Invalid boolean\n");
122 /* Apply permanent boolean changes to policy via libsemanage */
129 semanage_bool_t *boolean = NULL; local
169 if (semanage_bool_create(handle, &boolean) < 0)
172 if (semanage_bool_set_name(handle, boolean, boollist[j].name) <
176 semanage_bool_set_value(boolean, boollist[j].value);
178 if (semanage_bool_key_extract(handle, boolean,
[all...]
/external/boringssl/src/crypto/bytestring/
H A Dcbs.c395 uint8_t boolean; local
403 boolean = CBS_data(&child2)[0];
404 if (boolean == 0) {
406 } else if (boolean == 0xff) {
/external/clang/include/clang/StaticAnalyzer/Core/PathSensitive/
H A DSValBuilder.h238 nonloc::ConcreteInt makeBoolVal(const ObjCBoolLiteralExpr *boolean) { argument
239 return makeTruthVal(boolean->getValue(), boolean->getType());
242 nonloc::ConcreteInt makeBoolVal(const CXXBoolLiteralExpr *boolean);
/external/libvterm/src/
H A Dpen.c109 static void setpenattr_bool(VTermState *state, VTermAttr attr, int boolean) argument
111 VTermValue val = { .boolean = boolean };
427 val->boolean = state->pen.bold;
435 val->boolean = state->pen.italic;
439 val->boolean = state->pen.blink;
443 val->boolean = state->pen.reverse;
447 val->boolean = state->pen.strike;
/external/skia/src/animator/
H A DSkDisplayPost.cpp141 bool boolean; local
142 meta.findBool(name, &boolean);
143 SkDebugf("boolean=\"%s\" ", boolean ? "true " : "false ");
/external/clang/lib/StaticAnalyzer/Core/
H A DSValBuilder.cpp90 nonloc::ConcreteInt SValBuilder::makeBoolVal(const CXXBoolLiteralExpr *boolean){ argument
91 return makeTruthVal(boolean->getValue());
/external/deqp/modules/gles3/functional/
H A Des3fImplementationLimitTests.cpp96 std::ostream& operator<< (std::ostream& str, const Boolean& boolean) { return str << (boolean.value ? "GL_TRUE" : "GL_FALSE"); } argument
/external/libjpeg-turbo/
H A Djmorecfg.h212 * On a few systems, type boolean and/or its values FALSE, TRUE may appear
219 typedef int boolean; typedef
222 #define FALSE 0 /* values of boolean */
/external/selinux/libselinux/src/
H A Daudit2why.c53 static int load_booleans(const sepol_bool_t * boolean, argument
57 boollist[boolcnt]->name = strdup(sepol_bool_get_name(boolean));
58 boollist[boolcnt]->active = sepol_bool_get_value(boolean);
71 sepol_bool_t *boolean = NULL; local
84 "Could not create boolean key.\n");
89 key, &boolean);
93 "Could not find boolean %s.\n", name);
98 sepol_bool_set_value(boolean, !active);
102 key, boolean);
105 "Could not set boolean dat
[all...]
/external/opencv3/modules/imgcodecs/src/
H A Dgrfmt_jpeg.cpp68 typedef unsigned char boolean; typedef
114 METHODDEF(boolean)
506 METHODDEF(boolean)

Completed in 1560 milliseconds

12