Searched refs:mode (Results 176 - 200 of 1731) sorted by relevance

1234567891011>>

/freebsd-9.3-release/tools/regression/pjdfstest/tests/chmod/
H A D05.t26 expect 0642 -u 65534 -g 65534 stat ${n1}/${n2} mode
31 expect 0420 -u 65534 -g 65534 stat ${n1}/${n2} mode
37 expect 0710 -u 65534 -g 65534 stat ${n1}/${n2} mode
/freebsd-9.3-release/sys/dev/drm2/
H A Ddrm_dp_iic_helper.c36 iic_dp_aux_transaction(device_t idev, int mode, uint8_t write_byte, argument
43 ret = (*aux_data->aux_ch)(idev, mode, write_byte, read_byte);
60 int mode, ret; local
63 mode = MODE_I2C_START;
65 mode |= MODE_I2C_READ;
67 mode |= MODE_I2C_WRITE;
70 ret = iic_dp_aux_transaction(idev, mode, 0, NULL);
82 int mode; local
85 mode = MODE_I2C_STOP;
87 mode |
220 iic_dp_aux_add_bus(device_t dev, const char *name, int (*ch)(device_t idev, int mode, uint8_t write_byte, uint8_t *read_byte), void *priv, device_t *bus, device_t *adapter) argument
[all...]
H A Ddrm_crtc_helper.c71 struct drm_display_mode *mode, *t; local
76 list_for_each_entry_safe(mode, t, &connector->modes, head) {
77 if ((mode->flags & DRM_MODE_FLAG_INTERLACE) &&
79 mode->status = MODE_NO_INTERLACE;
80 if ((mode->flags & DRM_MODE_FLAG_DBLSCAN) &&
82 mode->status = MODE_NO_DBLESCAN;
95 * Caller must hold mode config lock.
114 struct drm_display_mode *mode, *t; local
124 list_for_each_entry_safe(mode, t, &connector->modes, head)
125 mode
378 drm_crtc_helper_set_mode(struct drm_crtc *crtc, struct drm_display_mode *mode, int x, int y, struct drm_framebuffer *old_fb) argument
822 drm_helper_connector_dpms(struct drm_connector *connector, int mode) argument
[all...]
/freebsd-9.3-release/sys/powerpc/powermac/
H A Data_macio.c115 static int ata_macio_setmode(device_t dev, int target, int mode);
252 ata_macio_setmode(device_t dev, int target, int mode) argument
259 mode = min(mode, sc->max_mode);
261 if ((mode & ATA_DMA_MASK) == ATA_UDMA0) {
262 min_cycle = udma_timings[mode & ATA_MODE_MASK].cycle;
263 min_active = udma_timings[mode & ATA_MODE_MASK].active;
271 } else if ((mode & ATA_DMA_MASK) == ATA_WDMA0) {
272 min_cycle = dma_timings[mode & ATA_MODE_MASK].cycle;
273 min_active = dma_timings[mode
[all...]
/freebsd-9.3-release/contrib/gcc/
H A Dgcov-io.c60 gcov_open (const char *name, int mode)
64 const int mode = 0; local
86 if (mode > 0)
103 if (mode > 0)
104 gcov_var.mode = 1;
105 else if (mode == 0)
116 gcov_var.mode = 1;
118 gcov_var.mode = mode * 2 + 1;
121 gcov_var.mode
[all...]
H A Dloop-doloop.c235 enum machine_mode mode; local
240 mode = GET_MODE (XEXP (cond, 0));
241 if (mode == VOIDmode)
242 mode = GET_MODE (XEXP (cond, 1));
248 do_compare_rtx_and_jump (op0, op1, code, 0, mode, NULL_RTX, NULL_RTX, label);
301 enum machine_mode mode; local
322 mode = GET_MODE (counter_reg);
350 << (GET_MODE_BITSIZE (mode) - 1)))
360 count = simplify_gen_binary (PLUS, mode, count, const1_rtx);
481 enum machine_mode mode; local
[all...]
H A Dunwind-dw2-fde.h113 typedef int sword __attribute__ ((mode (SI)));
114 typedef unsigned int uword __attribute__ ((mode (SI)));
115 typedef unsigned int uaddr __attribute__ ((mode (pointer)));
116 typedef int saddr __attribute__ ((mode (pointer)));
/freebsd-9.3-release/sys/cddl/contrib/opensolaris/uts/common/zmod/
H A Dinflate.c120 state->mode = HEAD;
589 if (state->mode == TYPE) state->mode = TYPEDO; /* skip check */
595 switch (state->mode) {
598 state->mode = TYPEDO;
607 state->mode = FLAGS;
619 state->mode = BAD;
624 state->mode = BAD;
631 state->mode = BAD;
637 state->mode
[all...]
/freebsd-9.3-release/contrib/bind9/lib/dns/
H A Dorder.c41 unsigned int mode; member in struct:dns_order_ent
85 unsigned int mode)
90 REQUIRE(mode == DNS_RDATASETATTR_RANDOMIZE ||
91 mode == DNS_RDATASETATTR_FIXEDORDER ||
92 mode == 0 /* DNS_RDATASETATTR_CYCLIC */ );
103 ent->mode = mode;
133 return (ent->mode);
83 dns_order_add(dns_order_t *order, dns_name_t *name, dns_rdatatype_t rdtype, dns_rdataclass_t rdclass, unsigned int mode) argument
/freebsd-9.3-release/contrib/groff/src/libs/libgroff/
H A Dspawnvp.c59 spawnvp_wrapper(int mode, char *path, char **argv) argument
104 status = spawnvp(mode, path, quoted_argv);
/freebsd-9.3-release/contrib/libarchive/libarchive/test/
H A Dtest_write_format_mtree.c33 mode_t mode; member in struct:__anon1641
74 archive_entry_set_mode(ae, entries[i].mode);
75 assert(entries[i].mode == archive_entry_mode(ae));
81 if ((entries[i].mode & AE_IFMT) != S_IFDIR)
84 if ((entries[i].mode & AE_IFMT) != S_IFDIR)
107 o = "/set type=dir uid=1001 gid=1001 mode=755";
109 o = "/set type=file uid=1001 gid=1001 mode=644";
126 if (dironly && (entries[i].mode & AE_IFMT) != S_IFDIR)
130 assertEqualInt(entries[i].mode, archive_entry_mode(ae));
134 if ((entries[i].mode
[all...]
/freebsd-9.3-release/contrib/telnet/libtelnet/
H A Dencrypt.c83 int EncryptType(char *type, char *mode);
84 int EncryptStart(char *mode);
85 int EncryptStop(char *mode);
233 EncryptEnable(char *type, char *mode) argument
240 if (EncryptType(type, mode))
241 return(EncryptStart(mode));
246 EncryptDisable(char *type, char *mode) argument
260 if ((mode == 0) || (isprefix(mode, "input") ? 1 : 0)) {
266 if ((mode
279 EncryptType(char *type, char *mode) argument
310 EncryptStart(char *mode) argument
353 EncryptStop(char *mode) argument
[all...]
/freebsd-9.3-release/tools/regression/pjdfstest/tests/open/
H A D03.t17 expect regular,0642 stat ${nx} type,mode
/freebsd-9.3-release/tools/regression/pjdfstest/tests/rmdir/
H A D03.t17 expect dir,0755 stat ${nx} type,mode
/freebsd-9.3-release/tools/regression/sysvshm/
H A Dshmtest.c127 s_ds.shm_perm.mode = (s_ds.shm_perm.mode & ~0777) | 0600;
137 if ((s_ds.shm_perm.mode & 0777) != 0600)
138 err(1, "IPC_SET of mode didn't hold");
231 print_shmid_ds(sp, mode)
233 mode_t mode;
238 printf("PERM: uid %d, gid %d, cuid %d, cgid %d, mode 0%o\n",
241 sp->shm_perm.mode & 0777);
261 if ((sp->shm_perm.mode & 0777) != mode)
[all...]
/freebsd-9.3-release/usr.bin/tset/
H A Dtset.c62 struct termios mode, oldmode; variable in typeref:struct:termios
81 if (tcgetattr(STDERR_FILENO, &mode) < 0)
84 oldmode = mode;
85 Ospeed = cfgetospeed(&mode);
182 if (memcmp(&mode, &oldmode, sizeof(mode)))
183 tcsetattr(STDERR_FILENO, TCSADRAIN, &mode);
244 new = mode.c_cc[which];
/freebsd-9.3-release/usr.sbin/ppp/
H A Dasync.c68 async->mode = MODE_HUNT;
151 if ((async->mode & MODE_HUNT) && c != HDLC_SYN)
156 async->mode &= ~MODE_HUNT;
165 if (!(async->mode & MODE_ESC)) {
166 async->mode |= MODE_ESC;
176 async->mode = MODE_HUNT;
179 if (async->mode & MODE_ESC) {
181 async->mode &= ~MODE_ESC;
/freebsd-9.3-release/usr.sbin/pw/
H A Dpw_log.c39 pw_log(struct userconf * cnf, int mode, int which, char const * fmt,...) argument
61 sprintf(nfmt + strlen(nfmt), "[%s:%s%s] %s\n", name, Which[which], Modes[mode], fmt);
H A Dpw_nis.c40 pw_nisupdate(const char * path, struct passwd * pwd, char const * user, int mode) argument
53 return fileupdate(path, 0600, pwbuf, pfx, l, mode) != 0;
/freebsd-9.3-release/contrib/ntp/sntp/libevent/include/event2/
H A Dthread.h113 /** Acquire an already-allocated lock at 'lock' with mode 'mode'.
115 int (*lock)(unsigned mode, void *lock);
116 /** Release a lock at 'lock' using mode 'mode'. Returns 0 on success,
118 int (*unlock)(unsigned mode, void *lock);
/freebsd-9.3-release/cddl/compat/opensolaris/misc/
H A Dmkdirp.c55 mkdirp(const char *d, mode_t mode) argument
68 if (mkdir(str, mode) == 0) {
99 if (mkdir(str, mode) != 0 && errno != EEXIST) {
112 if (mkdir(str, mode) != 0 && errno != EEXIST) {
/freebsd-9.3-release/contrib/bind9/bin/named/unix/include/named/
H A Dos.h55 ns_os_openfile(const char *filename, mode_t mode, isc_boolean_t switch_user);
/freebsd-9.3-release/contrib/gdb/gdb/
H A Dmemattr.h53 enum mem_access_mode mode; member in struct:mem_attrib
/freebsd-9.3-release/contrib/gdtoa/
H A Dg_Qfmt.c62 int decpt, ex, i, mode; local
111 mode = 2;
115 mode = 0;
117 s = gdtoa(fpi, ex, bits, &i, mode, ndig, &decpt, &se);
/freebsd-9.3-release/contrib/libstdc++/config/cpu/arm/
H A Dcxxabi_tweaks.h65 __extension__ typedef int __guard __attribute__((mode (__DI__)));

Completed in 146 milliseconds

1234567891011>>