Searched refs:mode (Results 201 - 225 of 2233) sorted by relevance

1234567891011>>

/freebsd-11-stable/contrib/elftoolchain/libelf/
H A Dlibelf_open.c128 mode_t mode; local
140 mode = sb.st_mode;
146 if (!S_ISREG(mode) && !S_ISCHR(mode) && !S_ISFIFO(mode) &&
147 !S_ISSOCK(mode)) {
153 * For ELF_C_WRITE mode, allocate and return a descriptor.
161 if (!S_ISREG(mode))
170 * ELF_C_READ and ELF_C_RDWR mode.
174 if (S_ISREG(mode)) {
[all...]
/freebsd-11-stable/contrib/libarchive/libarchive/test/
H A Dtest_write_format_mtree_classic.c33 mode_t mode; member in struct:__anon1909
58 "/set type=file uid=1001 gid=1001 mode=644\n"
59 ". time=1231975636.0 mode=755 type=dir\n"
67 "/set mode=664\n"
68 "subdir time=1233504586.0 mode=755 type=dir\n"
76 "subdir2 time=1233504586.0 mode=755 type=dir\n"
82 "subdir3 time=1233504586.0 mode=755 type=dir\n"
93 "/set type=dir uid=1001 gid=1001 mode=755\n"
134 archive_entry_set_mode(ae, entries[i].mode);
135 assertEqualInt(entries[i].mode, archive_entry_mod
[all...]
H A Dtest_write_format_mtree_classic_indent.c33 mode_t mode; member in struct:__anon1910
58 "/set type=file uid=1001 gid=1001 mode=644\n"
59 ". time=1231975636.0 mode=755 type=dir\n"
67 "/set mode=664\n"
68 " subdir time=1233504586.0 mode=755 type=dir\n"
76 " subdir2 time=1233504586.0 mode=755 type=dir\n"
82 " subdir3 time=1233504586.0 mode=755 type=dir\n"
93 "/set type=dir uid=1001 gid=1001 mode=755\n"
136 archive_entry_set_mode(ae, entries[i].mode);
137 assertEqualInt(entries[i].mode, archive_entry_mod
[all...]
H A Dtest_write_format_mtree.c33 mode_t mode; member in struct:__anon1907
53 mode_t mode; member in struct:__anon1908
94 archive_entry_set_mode(ae, entries[i].mode);
95 assert(entries[i].mode == archive_entry_mode(ae));
101 if ((entries[i].mode & AE_IFMT) != S_IFDIR)
104 if ((entries[i].mode & AE_IFMT) != S_IFDIR)
125 o = "/set type=dir uid=1001 gid=1001 mode=755";
127 o = "/set type=file uid=1001 gid=1001 mode=644";
144 if (dironly && (entries[i].mode & AE_IFMT) != S_IFDIR)
148 assertEqualInt(entries[i].mode, archive_entry_mod
[all...]
/freebsd-11-stable/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-11-stable/contrib/pjdfstest/tests/open/
H A D03.t17 expect regular,0642 stat ${nx} type,mode
/freebsd-11-stable/contrib/pjdfstest/tests/rmdir/
H A D03.t17 expect dir,0755 stat ${nx} type,mode
/freebsd-11-stable/crypto/openssh/
H A Ddispatch.h55 #define dispatch_run(mode, done, ctxt) \
56 ssh_dispatch_run_fatal(active_state, (mode), (done), (ctxt))
/freebsd-11-stable/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-11-stable/sys/dev/spibus/
H A Dspibusvar.h45 uint32_t mode; member in struct:spibus_ivar
53 SPIBUS_IVAR_MODE, /* SPI mode (0-3) */
72 SPIBUS_ACCESSOR(mode, MODE, uint32_t)
/freebsd-11-stable/usr.sbin/ppp/
H A Dasync.c70 async->mode = MODE_HUNT;
153 if ((async->mode & MODE_HUNT) && c != HDLC_SYN)
158 async->mode &= ~MODE_HUNT;
167 if (!(async->mode & MODE_ESC)) {
168 async->mode |= MODE_ESC;
178 async->mode = MODE_HUNT;
181 if (async->mode & MODE_ESC) {
183 async->mode &= ~MODE_ESC;
/freebsd-11-stable/contrib/telnet/libtelnet/
H A Dencrypt.c79 int EncryptType(char *type, char *mode);
80 int EncryptStart(char *mode);
81 int EncryptStop(char *mode);
229 EncryptEnable(char *type, char *mode) argument
236 if (EncryptType(type, mode))
237 return(EncryptStart(mode));
242 EncryptDisable(char *type, char *mode) argument
256 if ((mode == 0) || (isprefix(mode, "input") ? 1 : 0)) {
262 if ((mode
275 EncryptType(char *type, char *mode) argument
306 EncryptStart(char *mode) argument
349 EncryptStop(char *mode) argument
[all...]
/freebsd-11-stable/sys/sys/
H A Ddirent.h80 #define IFTODT(mode) (((mode) & 0170000) >> 12)
/freebsd-11-stable/contrib/gcc/
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-11-stable/sys/dev/ata/chipsets/
H A Data-siliconimage.c56 static int ata_cmd_setmode(device_t dev, int target, int mode);
61 static int ata_sii_setmode(device_t dev, int target, int mode);
209 ata_cmd_setmode(device_t dev, int target, int mode) argument
224 mode = min(mode, ctlr->chip->max_dma);
225 if (mode >= ATA_UDMA0) {
229 umode |= udmatimings[mode & ATA_MODE_MASK][target];
236 piomode = mode;
239 return (mode);
344 ata_sii_setmode(device_t dev, int target, int mode) argument
[all...]
/freebsd-11-stable/contrib/ntp/sntp/libevent/
H A Devthread.c213 evthread_debug_lock_mark_locked(unsigned mode, struct debug_lock *lock) argument
229 debug_lock_lock(unsigned mode, void *lock_) argument
234 EVUTIL_ASSERT(mode & (EVTHREAD_READ|EVTHREAD_WRITE));
236 EVUTIL_ASSERT((mode & (EVTHREAD_READ|EVTHREAD_WRITE)) == 0);
238 res = original_lock_fns_.lock(mode, lock->lock);
240 evthread_debug_lock_mark_locked(mode, lock);
246 evthread_debug_lock_mark_unlocked(unsigned mode, struct debug_lock *lock) argument
250 EVUTIL_ASSERT(mode & (EVTHREAD_READ|EVTHREAD_WRITE));
252 EVUTIL_ASSERT((mode & (EVTHREAD_READ|EVTHREAD_WRITE)) == 0);
265 debug_lock_unlock(unsigned mode, voi argument
419 evthreadimpl_lock_lock_(unsigned mode, void *lock) argument
427 evthreadimpl_lock_unlock_(unsigned mode, void *lock) argument
[all...]
/freebsd-11-stable/contrib/libstdc++/config/cpu/arm/
H A Dcxxabi_tweaks.h65 __extension__ typedef int __guard __attribute__((mode (__DI__)));
/freebsd-11-stable/contrib/gdb/gdb/
H A Dmemattr.h53 enum mem_access_mode mode; member in struct:mem_attrib
/freebsd-11-stable/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-11-stable/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-11-stable/contrib/sendmail/libsm/
H A Dshm.c109 ** SM_SHMSETOWNER -- set owner/group/mode of shared memory segment.
115 ** mode -- mode to use
123 sm_shmsetowner(shmid, uid, gid, mode)
127 mode_t mode;
137 shmid_ds.shm_perm.mode = mode;
/freebsd-11-stable/contrib/ntp/util/
H A Dpps-api.c4 device as argument and you may have to modify the pp.mode = BLA assignment.
54 int i, mode; local
69 i = time_pps_getcap(ph, &mode);
73 pp.mode = PPS_CAPTUREASSERT | PPS_ECHOASSERT;
74 pp.mode = PPS_CAPTUREBOTH;
75 /* pp.mode = PPS_CAPTUREASSERT; */
/freebsd-11-stable/sys/dev/vnic/
H A Dthunder_mdio_var.h58 enum thunder_mdio_mode mode; member in struct:thunder_mdio_softc
/freebsd-11-stable/stand/ofw/libofw/
H A Dofw_memory.c42 int mode; member in struct:ofw_mapping
50 int mode; member in struct:ofw_mapping2
89 mapptr[i].mode);
107 mapptr2[i].mode);

Completed in 293 milliseconds

1234567891011>>