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

1234567891011>>

/freebsd-9.3-release/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;
H A Dstdio.c211 ** SM_STDSETMODE -- set the access mode for the file
217 ** mode -- new mode to set the file access to
225 sm_stdsetmode(fp, mode)
227 const int *mode;
231 switch (SM_IO_MODE(*mode))
253 ** SM_STDGETMODE -- for getinfo determine open mode
258 ** fp -- the file mode being determined
259 ** mode -- internal mode t
480 MODE_T mode; local
[all...]
/freebsd-9.3-release/sys/dev/usb/
H A Duftdiio.h51 * mode = One of the uftdi_bitmodes enum values.
55 * mode = Unused.
60 uint8_t mode; member in struct:uftdi_bitmode
/freebsd-9.3-release/sys/gnu/fs/xfs/FreeBSD/
H A Dxfs_dmistubs.c118 char *name1, char *name2, mode_t mode, int retcode, int flags);
122 char *name1, char *name2, mode_t mode, int retcode, int flags)
130 mode_t mode, int retcode, int flags);
133 mode_t mode, int retcode, int flags)
120 dm_send_namesp_event(dm_eventtype_t event, bhv_desc_t *bdp1, dm_right_t vp1_right, bhv_desc_t *bdp2, dm_right_t vp2_right, char *name1, char *name2, mode_t mode, int retcode, int flags) argument
132 dm_send_unmount_event(xfs_vfs_t *vfsp, xfs_vnode_t *vp, dm_right_t vfsp_right, mode_t mode, int retcode, int flags) argument
/freebsd-9.3-release/sys/ofed/include/linux/
H A Dfile.h102 _alloc_file(int mode, const struct file_operations *fops) argument
110 filp->f_mode = mode;
115 #define alloc_file(mnt, root, mode, fops) _alloc_file((mode), (fops))
H A Dmoduleparam.h84 #define module_param_named(name, var, type, mode) \
85 module_param_call(name, param_set_##type, param_get_##type, &var, mode)
87 #define module_param(var, type, mode) \
88 module_param_named(var, var, type, mode)
/freebsd-9.3-release/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...]
H A Devthread-internal.h90 #define EVLOCK_LOCK(lockvar,mode) \
93 evthread_lock_fns_.lock(mode, lockvar); \
97 #define EVLOCK_UNLOCK(lockvar,mode) \
100 evthread_lock_fns_.unlock(mode, lockvar); \
188 int evthreadimpl_lock_lock_(unsigned mode, void *lock);
189 int evthreadimpl_lock_unlock_(unsigned mode, void *lock);
214 #define EVLOCK_LOCK(lockvar,mode) \
217 evthreadimpl_lock_lock_(mode, lockvar); \
221 #define EVLOCK_UNLOCK(lockvar,mode) \
224 evthreadimpl_lock_unlock_(mode, lockva
[all...]
/freebsd-9.3-release/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-9.3-release/crypto/heimdal/appl/telnet/libtelnet/
H A Dencrypt.c226 EncryptEnable(char *type, char *mode) argument
233 if (EncryptType(type, mode))
234 return(EncryptStart(mode));
239 EncryptDisable(char *type, char *mode) argument
253 if ((mode == 0) || (isprefix(mode, "input") ? 1 : 0)) {
259 if ((mode == 0) || (isprefix(mode, "output"))) {
266 printf("%s: invalid encryption mode\n", mode);
272 EncryptType(char *type, char *mode) argument
303 EncryptStart(char *mode) argument
346 EncryptStop(char *mode) argument
966 encrypt_debug(int mode) argument
[all...]
/freebsd-9.3-release/contrib/ncurses/ncurses/widechar/
H A Dlib_vid_attr.c38 #define doPut(mode) TPUTS_TRACE(#mode); tputs(mode, 1, outc)
40 #define TurnOn(mask,mode) \
41 if ((turn_on & mask) && mode) { doPut(mode); }
43 #define TurnOff(mask,mode) \
44 if ((turn_off & mask) && mode) { doPut(mode); turn_off &= ~mask; }
57 #define set_color(mode, pai
[all...]
/freebsd-9.3-release/contrib/xz/src/liblzma/lzma/
H A Dlzma_encoder_presets.c37 options->mode = LZMA_MODE_FAST;
42 options->mode = LZMA_MODE_NORMAL;
49 options->mode = LZMA_MODE_NORMAL;
/freebsd-9.3-release/crypto/openssh/openbsd-compat/
H A Dbsd-cygwin_util.c27 * binary mode on Windows systems.
46 mode_t mode; local
49 mode = va_arg(ap, mode_t);
51 return (open(filename, flags | O_BINARY, mode));
/freebsd-9.3-release/lib/libc/stdio/
H A Dfdopen.c50 fdopen(fd, mode)
52 const char *mode;
69 if ((flags = __sflags(mode, &oflags)) == 0)
72 /* Make sure the mode the user wants is a subset of the actual mode. */
H A Dfopen.c52 fopen(file, mode)
54 const char * __restrict mode;
60 if ((flags = __sflags(mode, &oflags)) == 0)
89 * When opening in append mode, even though we use O_APPEND,
/freebsd-9.3-release/sys/cddl/contrib/opensolaris/common/acl/
H A Dacl_common.h41 uint32_t owner; /* allow mask matching mode */
42 uint32_t group; /* allow mask matching mode */
43 uint32_t everyone; /* allow mask matching mode */
47 extern void adjust_ace_pair(ace_t *pair, mode_t mode);
61 int acl_trivial_create(mode_t mode, boolean_t isdir, ace_t **acl, int *count);
62 void acl_trivial_access_masks(mode_t mode, boolean_t isdir,
/freebsd-9.3-release/sys/cddl/dev/dtrace/amd64/
H A Dinstr_size.c105 uint_t mode = SIZE64; local
108 mode = (model == DATAMODEL_LP64) ? SIZE64 : SIZE32;
115 if (dtrace_disx86(&x, mode) != 0)
/freebsd-9.3-release/sys/cddl/dev/dtrace/i386/
H A Dinstr_size.c105 uint_t mode = SIZE32; local
108 mode = (model == DATAMODEL_LP64) ? SIZE64 : SIZE32;
115 if (dtrace_disx86(&x, mode) != 0)
/freebsd-9.3-release/sys/dev/ata/chipsets/
H A Data-ati.c58 static int ata_ati_setmode(device_t dev, int target, int mode);
152 * When "combined mode" is enabled, an additional PATA channel is
154 * This mode can only be detected via SMB controller.
162 (satacfg & 0x08) == 0 ? "" : "combined mode, ",
166 * If SATA controller is enabled but combined mode is disabled,
211 ata_ati_setmode(device_t dev, int target, int mode) argument
222 mode = min(mode, ctlr->chip->max_dma);
223 if (mode >= ATA_UDMA0) {
224 /* Set UDMA mode, enabl
[all...]
/freebsd-9.3-release/sys/dev/ath/ath_hal/ar5210/
H A Dar5210_phy.c68 ar5210GetRateTable(struct ath_hal *ah, u_int mode) argument
71 switch (mode) {
79 HALDEBUG(ah, HAL_DEBUG_ANY, "%s: invalid mode 0x%x\n",
80 __func__, mode);
/freebsd-9.3-release/usr.bin/ar/
H A Dar.c244 if (*argv == NULL && bsdar->mode != 'M')
287 if (bsdar->mode == 'M') {
298 if ((!bsdar->mode || strchr("ptx", bsdar->mode)) &&
301 if (!bsdar->mode)
305 switch(bsdar->mode) {
344 if (bsdar->mode != '\0' && bsdar->mode != opt)
346 "Can't specify both -%c and -%c", opt, bsdar->mode);
347 bsdar->mode
[all...]
/freebsd-9.3-release/contrib/ntp/ntpd/
H A Dntp_monitor.c22 * Record statistics based on source address, mode and version. The
201 int mode
207 if (MON_OFF == mode) /* MON_OFF is 0 */
210 mon_enabled |= mode;
229 mon_enabled = mode;
238 int mode
245 if ((mon_enabled & mode) == 0 || mode == MON_OFF)
248 mon_enabled &= ~mode;
321 u_char mode; local
[all...]
/freebsd-9.3-release/sys/dev/utopia/
H A Dsuni.c57 * set SONET/SDH mode
203 /* disable test mode */
212 * Set loopback mode for the Lite
215 suni_set_loopback_lite(struct utopia *utp, u_int mode) argument
222 nmode = mode;
223 if (mode & UTP_LOOP_TIME) {
227 if (mode & UTP_LOOP_DIAG) {
231 if (mode & UTP_LOOP_LINE) {
245 utp->loopback = mode;
340 * Set loopback mode fo
343 suni_set_loopback_ultra(struct utopia *utp, u_int mode) argument
406 suni_set_loopback_622(struct utopia *utp, u_int mode) argument
[all...]
/freebsd-9.3-release/usr.sbin/ppp/
H A Dmain.c206 int mode; member in struct:switches
218 sw->mode = PHYS_INTERACTIVE;
266 sw->mode = newmode;
273 fprintf(stderr, "You may specify only one mode.\n");
277 if (sw->mode == PHYS_AUTO && arg == argc) {
278 fprintf(stderr, "A system must be specified in auto mode.\n");
286 CheckLabel(const char *label, struct prompt *prompt, int mode) argument
290 if ((err = system_IsValid(label, prompt, mode)) != NULL) {
292 if (mode == PHYS_DIRECT)
339 * routing table and then run ppp in interactive mode
[all...]
/freebsd-9.3-release/contrib/gcc/
H A Dexplow.c51 trunc_int_for_mode (HOST_WIDE_INT c, enum machine_mode mode) argument
53 int width = GET_MODE_BITSIZE (mode);
56 gcc_assert (SCALAR_INT_MODE_P (mode));
59 if (mode == BImode)
62 /* Sign-extend for the requested mode. */
83 enum machine_mode mode; local
93 mode = GET_MODE (x);
168 x = gen_rtx_PLUS (mode, XEXP (x, 0), plus_constant (XEXP (x, 1), c));
189 x = gen_rtx_PLUS (mode, x, GEN_INT (c));
194 return gen_rtx_CONST (mode,
403 memory_address(enum machine_mode mode, rtx x) argument
512 memory_address_noforce(enum machine_mode mode, rtx x) argument
626 copy_to_mode_reg(enum machine_mode mode, rtx x) argument
650 force_reg(enum machine_mode mode, rtx x) argument
748 copy_to_suggested_reg(rtx x, rtx target, enum machine_mode mode) argument
772 promote_mode(tree type, enum machine_mode mode, int *punsignedp, int for_call ATTRIBUTE_UNUSED) argument
924 enum machine_mode mode = STACK_SAVEAREA_MODE (save_level); local
1228 enum machine_mode mode = STACK_SIZE_MODE; local
1508 hard_libcall_value(enum machine_mode mode) argument
[all...]

Completed in 306 milliseconds

1234567891011>>