Searched defs:context (Results 276 - 300 of 3832) sorted by last modified time

<<11121314151617181920>>

/external/qemu/distrib/libselinux/src/
H A Dfgetfilecon.c10 int fgetfilecon(int fd, char ** context) argument
48 *context = buf;
H A Dfsetfilecon.c10 int fsetfilecon(int fd, const char *context) argument
12 return fsetxattr(fd, XATTR_NAME_SELINUX, context, strlen(context) + 1,
H A Dgetfilecon.c10 int getfilecon(const char *path, char ** context) argument
48 *context = buf;
H A Dgetpeercon.c14 int getpeercon(int fd, char ** context) argument
42 *context = buf;
H A Dlabel_android_property.c16 /* A property security context specification. */
89 char *buf_p, *prop = buf1, *context = buf2; local
103 items = sscanf(line_buf, "%255s %255s", prop, context);
122 spec_arr[nspec].lr.ctx_raw = strdup(context);
125 "%s: out of memory at line %d on context %s\n",
126 path, lineno, context);
133 "%s: line %d has invalid context %s\n",
H A Dlabel_file.c25 /* A file security context specification. */
286 char *buf_p, *regex = buf1, *type = buf2, *context = buf3; local
300 items = sscanf(line_buf, "%255s %255s %255s", regex, type, context);
308 context = type;
379 spec_arr[nspec].lr.ctx_raw = strdup(context);
381 if (strcmp(context, "<<none>>") && rec->validating) {
384 "%s: line %d has invalid context %s\n",
H A Dlgetfilecon.c10 int lgetfilecon(const char *path, char ** context) argument
48 *context = buf;
H A Dlsetfilecon.c10 int lsetfilecon(const char *path, const char *context) argument
12 return lsetxattr(path, XATTR_NAME_SELINUX, context, strlen(context) + 1,
H A Dprocattr.c18 static int getprocattrcon(char ** context, argument
57 *context = NULL;
61 *context = strdup(buf);
62 if (!(*context)) {
76 static int setprocattrcon(const char * context, argument
98 if (context)
100 ret = write(fd, context, strlen(context) + 1);
H A Dsetfilecon.c10 int setfilecon(const char *path, const char *context) argument
12 return setxattr(path, XATTR_NAME_SELINUX, context, strlen(context) + 1,
/external/qemu/distrib/sdl-1.2.15/src/audio/pulse/
H A DSDL_pulseaudio.h37 pa_context *context; member in struct:SDL_PrivateAudioData
67 #define context (this->hidden->context) macro
/external/qemu/distrib/sdl-1.2.15/src/file/
H A DSDL_rwops.c48 static int SDLCALL win32_file_open(SDL_RWops *context, const char *filename, const char *mode) argument
58 if (!context)
61 context->hidden.win32io.h = INVALID_HANDLE_VALUE; /* mark this as unusable */
62 context->hidden.win32io.buffer.data = NULL;
63 context->hidden.win32io.buffer.size = 0;
64 context->hidden.win32io.buffer.left = 0;
82 context->hidden.win32io.buffer.data = (char *)SDL_malloc(READAHEAD_BUFFER_SIZE);
83 if (!context->hidden.win32io.buffer.data) {
95 SDL_free(context->hidden.win32io.buffer.data);
96 context
186 win32_file_seek(SDL_RWops *context, int offset, int whence) argument
222 win32_file_read(SDL_RWops *context, void *ptr, int size, int maxnum) argument
269 win32_file_write(SDL_RWops *context, const void *ptr, int size, int num) argument
301 win32_file_close(SDL_RWops *context) argument
323 stdio_seek(SDL_RWops *context, int offset, int whence) argument
332 stdio_read(SDL_RWops *context, void *ptr, int size, int maxnum) argument
342 stdio_write(SDL_RWops *context, const void *ptr, int size, int num) argument
352 stdio_close(SDL_RWops *context) argument
367 mem_seek(SDL_RWops *context, int offset, int whence) argument
394 mem_read(SDL_RWops *context, void *ptr, int size, int maxnum) argument
414 mem_write(SDL_RWops *context, const void *ptr, int size, int num) argument
423 mem_writeconst(SDL_RWops *context, const void *ptr, int size, int num) argument
428 mem_close(SDL_RWops *context) argument
[all...]
/external/qemu/distrib/sdl-1.2.15/src/video/aalib/
H A DSDL_aavideo.c287 static void AA_ResizeHandler(aa_context *context) argument
289 aa_resize(context);
290 local_this->hidden->x_ratio = ((double)aa_imgwidth(context)) / ((double)local_this->screen->w);
291 local_this->hidden->y_ratio = ((double)aa_imgheight(context)) / ((double)local_this->screen->h);
293 fastscale (local_this->hidden->buffer, aa_image(context), local_this->hidden->w, aa_imgwidth (context), local_this->hidden->h, aa_imgheight (context));
294 aa_renderpalette(context, local_this->hidden->palette, local_this->hidden->rparams, 0, 0, aa_scrwidth(context), aa_scrheight(context));
[all...]
H A DSDL_aavideo.h41 aa_context *context; member in struct:SDL_PrivateVideoData
53 #define AA_context (this->hidden->context)
/external/qemu/distrib/sdl-1.2.15/src/video/macdsp/
H A DSDL_dspvideo.c62 context switches (the app hogs the CPU). Eventually a book-keeping system should
339 DSpContextReference context; local
355 /* Get the first possible DSp context on this device */
356 if ( DSpGetFirstContext (displayID, &context) != noErr ) {
360 if ( DSpContext_GetAttributes (context, &attributes) != noErr )
381 OSStatus err = DSpGetNextContext (context, &context);
388 if ( DSpContext_GetAttributes (context, &attributes) != noErr )
468 DSpContextReference context;
500 if (noErr != DSpUserSelectContext (&attrib, display_id, NULL, &context)) {
636 DSp_VBLProc( DSpContextReference context, void *ref_con ) argument
[all...]
/external/ppp/pppd/plugins/radius/
H A Dmd5.c8 MD5_CTX context; local
10 MD5_Init (&context);
11 MD5_Update (&context, input, inlen);
12 MD5_Final (output, &context);
/external/ppp/pppd/
H A Dsha1.c61 /* Copy context->state[] to working vars */
88 /* Add the working vars back into context.state[] */
99 /* SHA1Init - Initialize new context */
102 SHA1_Init(SHA1_CTX *context) argument
105 context->state[0] = 0x67452301;
106 context->state[1] = 0xEFCDAB89;
107 context->state[2] = 0x98BADCFE;
108 context->state[3] = 0x10325476;
109 context->state[4] = 0xC3D2E1F0;
110 context
117 SHA1_Update(SHA1_CTX *context, const unsigned char *data, unsigned int len) argument
142 SHA1_Final(unsigned char digest[20], SHA1_CTX *context) argument
[all...]
/external/owasp/sanitizer/distrib/lib/
H A Dowasp-java-html-sanitizer.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/owasp/ org/owasp/html/ org/owasp/html/AbstractTokenStream ...
/external/owasp/sanitizer/lib/htmlparser-1.3/
H A Dhtmlparser-1.3-with-transitions.jarMETA-INF/MANIFEST.MF nu/validator/htmlparser/tools/XSLT4HTML5XOM.class XSLT4HTML5XOM.java package nu. ...
H A Dhtmlparser-1.3.jarMETA-INF/MANIFEST.MF nu/validator/htmlparser/tools/XSLT4HTML5XOM.class XSLT4HTML5XOM.java package nu. ...
/external/owasp/sanitizer/src/main/org/owasp/html/
H A DHtmlChangeListener.java41 public void discardedTag(@Nullable T context, String elementName); argument
48 @Nullable T context, String tagName, String... attributeNames);
47 discardedAttributes( @ullable T context, String tagName, String... attributeNames) argument
H A DHtmlChangeReporter.java43 * renderer, htmlChangeListener, context);
52 * @param <T> The type of context value passed to the
60 HtmlChangeListener<? super T> listener, @Nullable T context) {
62 this.input = new InputChannel<T>(output, listener, context);
80 final T context; field in class:HtmlChangeReporter.InputChannel
85 @Nullable T context) {
87 this.context = context;
120 listener.discardedTag(context, discardedElementName);
124 context, elementNam
58 HtmlChangeReporter( HtmlStreamEventReceiver renderer, HtmlChangeListener<? super T> listener, @Nullable T context) argument
83 InputChannel( OutputChannel output, HtmlChangeListener<? super T> listener, @Nullable T context) argument
[all...]
H A DHtmlPolicyBuilder.java420 * but which does not allow content to escape its clipping context.
468 * @param context if {@code (listener != null)} then the context value passed
475 @Nullable CTX context) {
476 return toFactory().apply(out, listener, context);
472 build( HtmlStreamEventReceiver out, @Nullable HtmlChangeListener<? super CTX> listener, @Nullable CTX context) argument
H A DHtmlToken.java43 boolean tokenInContextMatches(String context, String match) { argument
46 return context.regionMatches(start, match, 0, n);
H A DPolicyFactory.java82 * @param context if {@code (listener != null)} then the context value passed
88 @Nullable CTX context) {
93 out, listener, context);
111 * @param context if {@code (listener != null)} then the context value passed
118 @Nullable HtmlChangeListener<CTX> listener, @Nullable CTX context) {
124 listener, context));
86 apply( HtmlStreamEventReceiver out, @Nullable HtmlChangeListener<CTX> listener, @Nullable CTX context) argument
116 sanitize( @ullable String html, @Nullable HtmlChangeListener<CTX> listener, @Nullable CTX context) argument

Completed in 428 milliseconds

<<11121314151617181920>>