HomeSort by: relevance | last modified time | path
    Searched defs:mode (Results 1 - 25 of 586) sorted by relevancy

1 2 3 4 5 6 7 8 91011>>

  /src/games/hunt/hunt/
connect.c 50 int32_t mode; local in function:do_connect
64 mode = C_MESSAGE;
69 mode = C_MONITOR;
72 mode = C_PLAYER;
73 mode = htonl(mode);
74 (void) write(huntsocket, &mode, sizeof mode);
  /src/usr.sbin/wsmoused/
config_yacc.y 67 %type <block> main outermode mode
82 Can contain mode properties (common to all modes) and mode definitions. */
95 /* Defines the aspect of a mode definition. Returns the block given by the
96 mode definition itself. */
98 TK_MODE TK_STRING TK_LBRACE mode TK_RBRACE
106 /* Matches a mode and returns a block defining it. Contains properties */
107 mode : label
111 | mode modeprop { block_add_prop($1, $2); }
115 /* Matches a mode property and returns a prop defining it. *
    [all...]
  /src/usr.bin/mkfifo/
mkfifo.c 62 mode_t mode; local in function:main
66 /* The default mode is the value of the bitwise inclusive or of
69 mode = 0666 & ~umask(0);
75 err(1, "Cannot set file mode `%s'", optarg);
78 /* In symbolic mode strings, the + and - operators are
79 interpreted relative to an assumed initial mode of
81 mode = getmode(set, 0666);
94 if (mkfifo(*argv, mode) < 0) {
105 (void)fprintf(stderr, "usage: mkfifo [-m mode] fifoname ...\n");
  /src/sys/arch/powerpc/include/
ofw_machdep.h 41 * cell mode
43 * "mode" contains PTE WIMG bits.
52 uint32_t mode; member in struct:OF_translation
  /src/lib/libquota/
quota_open.c 50 int mode; local in function:quota_open
85 mode = QUOTA_MODE_NFS;
87 mode = QUOTA_MODE_KERNEL;
89 mode = QUOTA_MODE_OLDFILES;
122 qh->qh_mode = mode;
  /src/tests/lib/libc/c063/
t_mkdirat.c 58 mode_t mode = 0755; local in function:ATF_TC_BODY
62 ATF_REQUIRE(mkdirat(dfd, BASESDIR, mode) != -1);
75 mode_t mode = 0755; local in function:ATF_TC_BODY
78 ATF_REQUIRE(mkdirat(AT_FDCWD, SDIR, mode) != -1);
90 mode_t mode = 0755; local in function:ATF_TC_BODY
92 ATF_REQUIRE(mkdirat(AT_FDCWD, SDIRERR, mode) == -1);
103 mode_t mode = 0755; local in function:ATF_TC_BODY
108 ATF_REQUIRE(mkdirat(-1, SDIR, mode) == -1);
  /src/tests/lib/libc/sys/
t_access.c 46 static const int mode[4] = { R_OK, W_OK, X_OK, F_OK }; variable in typeref:typename:const int[4]
66 for (i = 0; i < __arraycount(mode) - 1; i++) {
72 ATF_REQUIRE(access(path, mode[i]) != 0);
94 for (i = 0; i < __arraycount(mode); i++) {
98 ATF_REQUIRE(access(NULL, mode[i]) != 0);
103 ATF_REQUIRE(access((char *)-1, mode[i]) != 0);
133 for (i = 0; i < __arraycount(mode); i++) {
147 ATF_REQUIRE(access("/etc/passwd//", mode[i]) != 0);
162 for (i = 0; i < __arraycount(mode); i++) {
166 ATF_REQUIRE(access("", mode[i]) != 0)
    [all...]
  /src/usr.bin/fstat/
fstat.h 34 mode_t mode; member in struct:filestat
  /src/usr.sbin/lptctl/
lptctl.c 53 int omode, mode, oflags, flags; local in function:main
70 if (ioctl(fd, LPTGMODE, &mode) == -1)
72 omode = mode;
85 } else if (strcmp("mode", argv[i]) == 0) {
87 mode = mode_standard;
89 mode = mode_ps2;
91 mode = mode_nibble;
93 mode = mode_fast;
95 mode = mode_ecp;
97 mode = mode_epp
    [all...]
  /src/bin/mkdir/
mkdir.c 66 mode_t mode, dir_mode; local in function:main
72 * The default file mode is a=rwx (0777) with selected permissions
73 * removed in accordance with the file mode creation mask. For
74 * intermediate path name components, the mode is the default modified
77 mode = (S_IRWXU | S_IRWXG | S_IRWXO) & ~umask(0);
78 dir_mode = mode | S_IWUSR | S_IXUSR;
88 err(EXIT_FAILURE, "Cannot set file mode `%s'",
92 mode = getmode(set, S_IRWXU | S_IRWXG | S_IRWXO);
120 if (mkpath(*argv, mode, dir_mode) < 0)
123 if (mkdir(*argv, mode) < 0)
    [all...]
  /src/common/dist/zlib/contrib/iostream/
zfstream.h 36 short mode; member in class:gzfilebuf
  /src/lib/libc/gdtoa/
g_dfmt.c 46 int decpt, ex, i, mode; local in function:g_dfmt
89 mode = 2;
91 mode = 0;
95 s = gdtoa(fpi, ex, bits, &i, mode, ndig, &decpt, &se);
g_ffmt.c 46 int decpt, ex, i, mode; local in function:g_ffmt
86 mode = 2;
90 mode = 0;
93 s = gdtoa(fpi, ex, bits, &i, mode, ndig, &decpt, &se);
g_xLfmt.c 62 int decpt, ex, i, mode; local in function:g_xLfmt
107 mode = 2;
111 mode = 0;
113 s = gdtoa(fpi, ex, bits, &i, mode, ndig, &decpt, &se);
  /src/lib/libc/posix1e/
acl_strip.c 48 mode_t mode = 0; local in function:_nfs4_acl_strip_np
58 __acl_nfs4_sync_mode_from_acl(&mode, &(aclp->ats_acl));
59 __acl_nfs4_trivial_from_mode_libc(&(newacl->ats_acl), mode, canonical_six);
152 * mode. In other words, ACL is trivial iff it doesn't have "+" to the right
153 * of the mode bits in "ls -l" output ;-)
  /src/sys/compat/sys/
ipc.h 65 unsigned short mode; /* r/w permission */ member in struct:ipc_perm14
83 CVT(mode);
97 CVT(mode);
  /src/sys/dev/ppbus/
ppbus_device.h 14 int mode; /* XXX chipset operating mode */ member in struct:ppbus_context
23 u_int16_t mode; /* current mode of the device */ member in struct:ppbus_device_softc
29 /* mode dependent get msq. If NULL,
34 /* mode dependent put msq. If NULL,
  /src/sys/external/bsd/drm2/dist/drm/amd/display/dc/dce/
amdgpu_dce_ipp.c 79 int mode; local in function:dce_ipp_cursor_set_attributes
87 mode = 0;
90 mode = 1;
93 mode = 2;
96 mode = 3;
100 mode = 0;
104 CURSOR_MODE, mode,
150 /* set to bypass mode first before change */
166 if (params->mode != IPP_PRESCALE_MODE_BYPASS) {
190 /* 256 entry mode */
    [all...]
  /src/sys/external/bsd/drm2/dist/drm/amd/display/dc/inc/hw/
gpio.h 47 enum gpio_mode mode; member in struct:gpio
  /src/sys/external/bsd/drm2/dist/drm/i915/display/
intel_dsi.c 40 struct drm_display_mode *mode; local in function:intel_dsi_get_modes
45 DRM_DEBUG_KMS("no fixed mode\n");
49 mode = drm_mode_duplicate(connector->dev,
51 if (!mode) {
56 drm_mode_probed_add(connector, mode);
61 struct drm_display_mode *mode)
70 if (mode->flags & DRM_MODE_FLAG_DBLSCAN)
74 if (mode->hdisplay > fixed_mode->hdisplay)
76 if (mode->vdisplay > fixed_mode->vdisplay)
82 return intel_mode_valid_max_plane_size(dev_priv, mode);
    [all...]
  /src/sys/external/bsd/drm2/dist/drm/i915/
i915_gem_evict.c 107 enum drm_mm_insert_mode mode; local in function:i915_gem_evict_something
125 mode = DRM_MM_INSERT_BEST;
127 mode = DRM_MM_INSERT_HIGH;
129 mode = DRM_MM_INSERT_LOW;
132 start, end, mode);
  /src/sys/external/bsd/drm2/dist/drm/nouveau/include/nvkm/subdev/bios/
iccsense.h 12 u8 mode; member in struct:pwr_rail_t
vmap.h 17 u8 mode; member in struct:nvbios_vmap_entry
  /src/sys/external/bsd/drm2/dist/drm/nouveau/nvkm/core/
nouveau_nvkm_core_option.c 102 int mode = 1, level = CONFIG_NOUVEAU_DEBUG_DEFAULT; local in function:nvkm_dbgopt
109 mode = 0;
113 if (mode) {
134 mode = 1;
  /src/sys/external/bsd/drm2/dist/drm/ttm/
ttm_bo_manager.c 64 enum drm_mm_insert_mode mode; local in function:ttm_bo_man_get_node
76 mode = DRM_MM_INSERT_BEST;
78 mode = DRM_MM_INSERT_HIGH;
84 place->fpfn, lpfn, mode);

Completed in 19 milliseconds

1 2 3 4 5 6 7 8 91011>>