HomeSort by relevance Sort by last modified time
    Searched full:context_t (Results 1 - 23 of 23) sorted by null

  /external/libselinux/include/selinux/
context.h 16 typedef context_s_t *context_t; typedef
20 extern context_t context_new(const char *);
23 * Return a pointer to the string value of the context_t
25 * for the same context_t*
28 extern char *context_str(context_t);
31 extern void context_free(context_t);
35 extern const char *context_type_get(context_t);
36 extern const char *context_range_get(context_t);
37 extern const char *context_role_get(context_t);
38 extern const char *context_user_get(context_t);
    [all...]
  /ndk/sources/host-tools/sed-4.2.1/lib/
se-context.in.h 6 typedef int context_t; typedef
7 static inline context_t context_new (char const *s _UNUSED_PARAMETER_)
9 static inline char *context_str (context_t con _UNUSED_PARAMETER_)
11 static inline void context_free (context_t c _UNUSED_PARAMETER_) {}
13 static inline int context_user_set (context_t sc _UNUSED_PARAMETER_,
16 static inline int context_role_set (context_t sc _UNUSED_PARAMETER_,
19 static inline int context_range_set (context_t sc _UNUSED_PARAMETER_,
22 static inline int context_type_set (context_t sc _UNUSED_PARAMETER_,
  /system/core/libpixelflinger/
buffer.h 26 void ggl_init_texture(context_t* c);
28 void ggl_set_surface(context_t* c, surface_t* dst, const GGLSurface* src);
30 void ggl_pick_texture(context_t* c);
31 void ggl_pick_cb(context_t* c);
34 uint32_t ggl_pack_color(context_t* c, int32_t format,
scanline.h 26 void ggl_init_scanline(context_t* c);
27 void ggl_uninit_scanline(context_t* c);
28 void ggl_pick_scanline(context_t* c);
picker.h 26 void ggl_init_picker(context_t* c);
27 void ggl_pick(context_t* c);
trap.h 26 void ggl_init_trap(context_t* c);
27 void ggl_state_changed(context_t* c, int flags);
pixelflinger.cpp 57 static void ggl_init_procs(context_t* c);
58 static void ggl_set_scissor(context_t* c);
60 static void ggl_enable_blending(context_t* c, int enable);
61 static void ggl_enable_scissor_test(context_t* c, int enable);
62 static void ggl_enable_alpha_test(context_t* c, int enable);
63 static void ggl_enable_logic_op(context_t* c, int enable);
64 static void ggl_enable_dither(context_t* c, int enable);
65 static void ggl_enable_stencil_test(context_t* c, int enable);
66 static void ggl_enable_depth_test(context_t* c, int enable);
67 static void ggl_enable_aa(context_t* c, int enable)
    [all...]
scanline.cpp 72 static void init_y(context_t*, int32_t);
73 static void init_y_noop(context_t*, int32_t);
74 static void init_y_packed(context_t*, int32_t);
75 static void init_y_error(context_t*, int32_t);
77 static void step_y__generic(context_t* c);
78 static void step_y__nop(context_t*);
79 static void step_y__smooth(context_t* c);
80 static void step_y__tmu(context_t* c);
81 static void step_y__w(context_t* c);
83 static void scanline(context_t* c)
    [all...]
clear.h 26 void ggl_init_clear(context_t* c);
raster.h 26 void ggl_init_raster(context_t* c);
buffer.cpp 26 static void read_pixel(const surface_t* s, context_t* c,
28 static void write_pixel(const surface_t* s, context_t* c,
30 static void readRGB565(const surface_t* s, context_t* c,
32 static void readABGR8888(const surface_t* s, context_t* c,
43 void ggl_init_texture(context_t* c)
58 void ggl_set_surface(context_t* c, surface_t* dst, const GGLSurface* src)
84 void ggl_pick_texture(context_t* c)
100 void ggl_pick_cb(context_t* c)
111 void read_pixel(const surface_t* s, context_t* c,
133 void readRGB565(const surface_t* s, context_t* c
    [all...]
clear.cpp 35 void ggl_init_clear(context_t* c)
50 static void memset2d(context_t* c, const surface_t& s, uint32_t packed,
picker.cpp 29 void ggl_init_picker(context_t* c)
33 void ggl_pick(context_t* c)
raster.cpp 32 void ggl_init_raster(context_t* c)
trap.cpp 114 void ggl_init_trap(context_t* c)
119 void ggl_state_changed(context_t* c, int flags)
449 static void scanline_set(context_t* c)
471 void (*save_scanline)(context_t*) = c->scanline;
723 context_t* c )
    [all...]
  /external/libselinux/src/
context.c 22 context_t context_new(const char *str)
28 context_t result = (context_t) malloc(sizeof(context_s_t));
99 void context_free(context_t context)
121 char *context_str(context_t context)
177 const char * context_ ## name ## _get(context_t context) \
189 int context_ ## name ## _set(context_t context, const char* str) \
android.c 261 context_t ctx = NULL;
368 context_t ctx = NULL;
  /system/core/libpixelflinger/tests/codegen/
codegen.cpp 43 int err = assembler.scanline(needs, (context_t*)c);
  /system/core/include/private/pixelflinger/
ggl_context.h 103 #define GGL_CONTEXT(con, c) context_t *con = static_cast<context_t *>(c)
104 #define GGL_OFFSETOF(field) int(&(((context_t*)0)->field))
254 struct context_t;
335 void (*read) (const surface_t* s, context_t* c,
337 void (*write)(const surface_t* s, context_t* c,
506 struct context_t { struct in namespace:android
520 void (*init_y)(context_t* c, int32_t y);
521 void (*step_y)(context_t* c);
522 void (*scanline)(context_t* c)
    [all...]
  /system/core/libpixelflinger/codeflinger/
GGLAssembler.h 182 int scanline(const needs_t& needs, context_t const* c);
183 int scanline_core(const needs_t& needs, context_t const* c);
336 context_t const* c;
425 void decodeTMUNeeds(const needs_t& needs, context_t const* c);
texturing.cpp 45 context_t const* c = mBuilderContext.c;
266 void GGLAssembler::decodeTMUNeeds(const needs_t& needs, context_t const* c)
329 context_t const* c = mBuilderContext.c;
407 context_t const* c = mBuilderContext.c;
    [all...]
GGLAssembler.cpp 61 int GGLAssembler::scanline(const needs_t& needs, context_t const* c)
93 int GGLAssembler::scanline_core(const needs_t& needs, context_t const* c)
    [all...]
  /frameworks/native/opengl/libagl/
context.h 605 context_t rasterizer;

Completed in 181 milliseconds