HomeSort by: relevance | last modified time | path
    Searched refs:allowed (Results 1 - 25 of 35) sorted by relevancy

1 2

  /xsrc/external/mit/xorg-server/dist/hw/xfree86/
xorg-wrapper.c 83 static void parse_config(int *allowed, int *needs_root_rights)
126 *allowed = ROOT_ONLY;
128 *allowed = CONSOLE_ONLY;
130 *allowed = ANYBODY;
201 int allowed = CONSOLE_ONLY; local
207 parse_config(&allowed, &needs_root_rights);
209 /* For non root users check if they are allowed to run the X server */
211 switch (allowed) {
214 fprintf(stderr, "%s: Only root is allowed to run the X server\n", argv[0]);
224 fprintf(stderr, "%s: Only console users are allowed to run the X server\n", argv[0])
    [all...]
xorgconf.cpp 44 # Multiple FontPath entries are allowed (which are concatenated together),
103 # but it will not be allowed to change them. If it tries it will
  /xsrc/external/mit/xorg-server/dist/Xext/
security.c 74 * Access modes that untrusted clients are allowed on trusted objects.
118 Mask requested, Mask allowed)
126 if ((requested | allowed) == allowed)
688 * TRUE if the device access should be allowed, else FALSE.
700 Mask allowed = SecurityDeviceMask; local
707 allowed = requested;
709 if (SecurityDoCheck(subj, obj, requested, allowed) != Success) {
745 Mask allowed = SecurityResourceMask; local
756 allowed |= SecurityWindowExtraMask
815 Mask allowed = SecurityServerMask; local
834 Mask allowed = SecurityClientMask; local
854 Mask allowed = SecurityResourceMask | DixReadAccess; local
    [all...]
  /xsrc/external/mit/xorg-server.old/dist/Xext/
security.c 73 * Access modes that untrusted clients are allowed on trusted objects.
117 Mask requested, Mask allowed)
125 if ((requested | allowed) == allowed)
746 * TRUE if the device access should be allowed, else FALSE.
758 Mask allowed = SecurityDeviceMask; local
765 allowed = requested;
767 if (SecurityDoCheck(subj, obj, requested, allowed) != Success) {
803 Mask allowed = SecurityResourceMask; local
814 allowed |= SecurityWindowExtraMask
874 Mask allowed = SecurityServerMask; local
893 Mask allowed = SecurityClientMask; local
913 Mask allowed = SecurityResourceMask | DixReadAccess; local
    [all...]
  /xsrc/external/mit/MesaLib.old/dist/src/mesa/main/
format_pack.py 191 assert(!"Invalid type: only integer types are allowed");
  /xsrc/external/mit/MesaLib.old/dist/src/gallium/drivers/etnaviv/
etnaviv_screen.c 550 unsigned allowed = 0; local
566 /* Validate MSAA; number of samples must be allowed, and render target
571 allowed |= PIPE_BIND_RENDER_TARGET;
574 allowed |= PIPE_BIND_RENDER_TARGET;
581 allowed |= PIPE_BIND_DEPTH_STENCIL;
591 allowed |= PIPE_BIND_SAMPLER_VIEW;
596 allowed |= PIPE_BIND_VERTEX_BUFFER;
604 allowed |= PIPE_BIND_INDEX_BUFFER;
608 /* Always allowed */
609 allowed |
    [all...]
  /xsrc/external/mit/MesaLib/dist/src/gallium/drivers/etnaviv/
etnaviv_screen.c 547 unsigned allowed = 0; local
557 allowed |= PIPE_BIND_RENDER_TARGET;
562 allowed |= PIPE_BIND_DEPTH_STENCIL;
572 allowed |= PIPE_BIND_SAMPLER_VIEW;
577 allowed |= PIPE_BIND_VERTEX_BUFFER;
585 allowed |= PIPE_BIND_INDEX_BUFFER;
589 /* Always allowed */
590 allowed |=
593 if (usage != allowed) {
595 "usage=%x, allowed=%x"
    [all...]
  /xsrc/external/mit/mesa-demos/dist/src/demos/
isosurf.c 100 static GLint state, allowed = ~0; variable
640 m &= allowed;
769 if (allowed & LOCKED) {
787 if (allowed & LOCKED) {
801 if (allowed & LOCKED) {
941 ModeMenu((LOCKED|IMMEDIATE|DRAW_ELTS|TRIANGLES) & allowed);
1075 allowed &= ~(LOCKED|DRAW_ARRAYS|DRAW_ELTS|ARRAY_ELT);
1080 allowed &= ~LOCKED;
1116 if (allowed & LOCKED) {
1122 if (allowed & DRAW_ARRAYS)
    [all...]
  /xsrc/external/mit/libXaw/dist/src/
Viewport.c 915 XtWidgetGeometry allowed; local
930 allowed = *request;
951 allowed.width = XtWidth(w);
962 allowed.width = XtWidth(w);
963 allowed.request_mode |= CWWidth;
965 if (allowed.width > XtWidth(bar) + XtBorderWidth(bar))
966 allowed.width = (Dimension)(allowed.width - (XtWidth(bar) + XtBorderWidth(bar)));
968 allowed.width = 1;
973 allowed.height = (Dimension)height_remaining
    [all...]
Form.c 469 * ret_width - actual size the form is allowed to resize to (return)
540 * True if the children are allowed to move from their
813 XtWidgetGeometry allowed; local
820 * allowed any constraint changes
829 allowed.width = request->width;
831 allowed.width = XtWidth(w);
834 allowed.height = request->height;
836 allowed.height = XtHeight(w);
838 if (allowed.width == XtWidth(w) && allowed.height == XtHeight(w))
    [all...]
  /xsrc/external/mit/MesaLib/dist/src/gallium/frontends/nine/
nine_pipe.h 187 /* Basically formats with only red channel are allowed (with some exceptions) */
188 static const D3DFORMAT allowed[] = { /* TODO: list incomplete */ local
200 for (i = 0; i < sizeof(allowed)/sizeof(D3DFORMAT); i++) {
201 if (fmt == allowed[i]) { return TRUE; }
226 static const D3DFORMAT allowed[] = { local
243 for (i = 0; i < sizeof(allowed)/sizeof(D3DFORMAT); i++) {
244 if (fmt == allowed[i]) { return TRUE; }
adapter9.c 242 static const D3DFORMAT allowed[] = { local
252 for (i = 0; i < sizeof(allowed)/sizeof(D3DFORMAT); i++) {
253 if (fmt == allowed[i]) { return TRUE; }
262 static const D3DFORMAT allowed[] = { local
272 for (i = 0; i < sizeof(allowed)/sizeof(D3DFORMAT); i++) {
273 if (fmt == allowed[i]) { return TRUE; }
  /xsrc/external/mit/MesaLib.old/dist/src/gallium/state_trackers/nine/
nine_pipe.h 204 static const D3DFORMAT allowed[] = { local
221 for (i = 0; i < sizeof(allowed)/sizeof(D3DFORMAT); i++) {
222 if (fmt == allowed[i]) { return TRUE; }
adapter9.c 234 static const D3DFORMAT allowed[] = { local
244 for (i = 0; i < sizeof(allowed)/sizeof(D3DFORMAT); i++) {
245 if (fmt == allowed[i]) { return TRUE; }
  /xsrc/external/mit/xorgproto/dist/scripts/
keysym-generator.py 170 for allowed in allowed_kvers:
171 if fnmatch(kver, allowed):
  /xsrc/external/mit/MesaLib/dist/src/asahi/lib/
gen_pack.py 191 assert(not num_str.startswith('0') and 'octals numbers not allowed')
  /xsrc/external/mit/MesaLib/dist/src/panfrost/lib/genxml/
gen_pack.py 264 assert(not num_str.startswith('0') and 'octals numbers not allowed')
  /xsrc/external/mit/xorg-server.old/dist/hw/xfree86/
xorgconf.cpp 44 # Multiple FontPath entries are allowed (which are concatenated together),
109 # but it will not be allowed to change them. If it tries it will
  /xsrc/external/mit/MesaLib.old/dist/src/intel/genxml/
gen_pack_header.py 224 assert not num_str.startswith('0'), 'octals numbers not allowed'
  /xsrc/external/mit/MesaLib/dist/docs/_extra/specs/
MESA_texture_signed_rgba.spec 107 is some leeway so other mappings are allowed for implementations which
  /xsrc/external/mit/MesaLib.old/dist/docs/specs/
MESA_texture_signed_rgba.spec 107 is some leeway so other mappings are allowed for implementations which
  /xsrc/external/mit/MesaLib/dist/src/broadcom/cle/
gen_pack_header.py 90 assert(not num_str.startswith('0') and 'octals numbers not allowed')
  /xsrc/external/mit/MesaLib.old/dist/src/broadcom/cle/
gen_pack_header.py 94 assert(not num_str.startswith('0') and 'octals numbers not allowed')
  /xsrc/external/mit/MesaLib/dist/src/compiler/nir/
nir_algebraic.py 504 from being allowed, since we'd have to merge the bitsizes for a and b due to
509 from being allowed, since the search expression has the bit size of a and b,
  /xsrc/external/mit/MesaLib.old/dist/src/compiler/nir/
nir_algebraic.py 427 from being allowed, since we'd have to merge the bitsizes for a and b due to
432 from being allowed, since the search expression has the bit size of a and b,

Completed in 52 milliseconds

1 2