HomeSort by relevance Sort by last modified time
    Searched refs:context_t (Results 1 - 25 of 32) sorted by null

1 2

  /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...]
  /external/qemu/distrib/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...]
  /system/core/libpixelflinger/
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);
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,
clear.h 26 void ggl_init_clear(context_t* c);
raster.h 26 void ggl_init_raster(context_t* c);
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...]
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...]
scanline.cpp 88 static void init_y(context_t*, int32_t);
89 static void init_y_noop(context_t*, int32_t);
90 static void init_y_packed(context_t*, int32_t);
91 static void init_y_error(context_t*, int32_t);
93 static void step_y__generic(context_t* c);
94 static void step_y__nop(context_t*);
95 static void step_y__smooth(context_t* c);
96 static void step_y__tmu(context_t* c);
97 static void step_y__w(context_t* c);
99 static void scanline(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)
  /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_,
  /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) \
  /external/qemu/distrib/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) \
  /system/core/include/private/pixelflinger/
ggl_context.h 123 #define GGL_CONTEXT(con, c) context_t *con = static_cast<context_t *>(c)
124 #define GGL_OFFSETOF(field) uintptr_t(&(((context_t*)0)->field))
274 struct context_t;
357 void (*read) (const surface_t* s, context_t* c,
359 void (*write)(const surface_t* s, context_t* c,
528 struct context_t { struct in namespace:android
542 void (*init_y)(context_t* c, int32_t y);
543 void (*step_y)(context_t* c);
544 void (*scanline)(context_t* c)
    [all...]
  /external/chromium_org/third_party/harfbuzz-ng/src/
hb-ot-layout-gsub-table.hh 222 template <typename context_t>
223 inline typename context_t::return_t dispatch (context_t *c) const
422 template <typename context_t>
423 inline typename context_t::return_t dispatch (context_t *c) const
573 template <typename context_t>
574 inline typename context_t::return_t dispatch (context_t *c) const
889 template <typename context_t>
    [all...]
hb-ot-layout-gpos-table.hh 530 template <typename context_t>
531 inline typename context_t::return_t dispatch (context_t *c) const
822 template <typename context_t>
823 inline typename context_t::return_t dispatch (context_t *c) const
989 template <typename context_t>
990 inline typename context_t::return_t dispatch (context_t *c) const
    [all...]
hb-ot-layout-gsubgpos-private.hh 42 hb_auto_trace_t<context_t::max_debug_depth, typename context_t::return_t> trace \
943 template <typename context_t>
944 static inline void recurse_lookups (context_t *c,
    [all...]
  /external/harfbuzz_ng/src/
hb-ot-layout-gsub-table.hh 222 template <typename context_t>
223 inline typename context_t::return_t dispatch (context_t *c) const
422 template <typename context_t>
423 inline typename context_t::return_t dispatch (context_t *c) const
573 template <typename context_t>
574 inline typename context_t::return_t dispatch (context_t *c) const
889 template <typename context_t>
    [all...]
hb-ot-layout-gpos-table.hh 530 template <typename context_t>
531 inline typename context_t::return_t dispatch (context_t *c) const
822 template <typename context_t>
823 inline typename context_t::return_t dispatch (context_t *c) const
989 template <typename context_t>
990 inline typename context_t::return_t dispatch (context_t *c) const
    [all...]
hb-ot-layout-gsubgpos-private.hh 42 hb_auto_trace_t<context_t::max_debug_depth, typename context_t::return_t> trace \
943 template <typename context_t>
944 static inline void recurse_lookups (context_t *c,
    [all...]
  /system/core/libpixelflinger/tests/codegen/
codegen.cpp 63 int err = assembler.scanline(needs, (context_t*)c);
  /system/core/libpixelflinger/codeflinger/
GGLAssembler.h 192 int scanline(const needs_t& needs, context_t const* c);
193 int scanline_core(const needs_t& needs, context_t const* c);
346 context_t const* c;
435 void decodeTMUNeeds(const needs_t& needs, context_t const* c);

Completed in 1744 milliseconds

1 2