Searched refs:mode (Results 226 - 250 of 2233) sorted by relevance

1234567891011>>

/freebsd-11-stable/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-11-stable/contrib/ncurses/ncurses/widechar/
H A Dlib_vid_attr.c41 #define doPut(mode) \
42 TPUTS_TRACE(#mode); \
43 NCURSES_SP_NAME(tputs) (NCURSES_SP_ARGx mode, 1, outc)
45 #define TurnOn(mask, mode) \
46 if ((turn_on & mask) && mode) { doPut(mode); }
48 #define TurnOff(mask, mode) \
49 if ((turn_off & mask) && mode) { doPut(mode); turn_off &= ~mask; }
64 #define set_color(mode, pai
[all...]
/freebsd-11-stable/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-11-stable/contrib/ntp/sntp/libevent/
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-11-stable/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-11-stable/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-11-stable/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-11-stable/sys/dev/drm2/
H A Ddrm_crtc_helper.c77 struct drm_display_mode *mode; local
82 list_for_each_entry(mode, &connector->modes, head) {
83 if ((mode->flags & DRM_MODE_FLAG_INTERLACE) &&
85 mode->status = MODE_NO_INTERLACE;
86 if ((mode->flags & DRM_MODE_FLAG_DBLSCAN) &&
88 mode->status = MODE_NO_DBLESCAN;
101 * Caller must hold mode config lock.
109 * callback for drivers that use the crtc helpers for output mode filtering and
119 struct drm_display_mode *mode; local
128 list_for_each_entry(mode,
387 drm_crtc_helper_set_mode(struct drm_crtc *crtc, struct drm_display_mode *mode, int x, int y, struct drm_framebuffer *old_fb) argument
855 drm_helper_connector_dpms(struct drm_connector *connector, int mode) argument
[all...]
/freebsd-11-stable/sys/dev/drm2/i915/
H A Ddvo.h74 * Callback for testing a video mode for a given output.
76 * This function should only check for cases where a mode can't
80 * \return MODE_OK if the mode is valid, or another MODE_* otherwise.
83 struct drm_display_mode *mode);
86 * Callback to adjust the mode to be set in the CRTC.
93 const struct drm_display_mode *mode,
97 * Callback for preparing mode changes on an output
102 * Callback for committing mode changes on an output
107 * Callback for setting up a video mode after fixups have been made.
114 struct drm_display_mode *mode,
[all...]
/freebsd-11-stable/sys/dev/ata/chipsets/
H A Data-ati.c57 static int ata_ati_setmode(device_t dev, int target, int mode);
147 * When "combined mode" is enabled, an additional PATA channel is
149 * This mode can only be detected via SMB controller.
157 (satacfg & 0x08) == 0 ? "" : "combined mode, ",
161 * If SATA controller is enabled but combined mode is disabled,
206 ata_ati_setmode(device_t dev, int target, int mode) argument
217 mode = min(mode, ctlr->chip->max_dma);
218 if (mode >= ATA_UDMA0) {
219 /* Set UDMA mode, enabl
[all...]
/freebsd-11-stable/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-11-stable/contrib/xz/src/liblzma/lzma/
H A Dlzma_encoder_presets.c39 options->mode = LZMA_MODE_FAST;
45 options->mode = LZMA_MODE_NORMAL;
52 options->mode = LZMA_MODE_NORMAL;
/freebsd-11-stable/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-11-stable/contrib/sendmail/libsm/
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-11-stable/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-11-stable/usr.sbin/ppp/
H A Dmain.c208 int mode; member in struct:switches
220 sw->mode = PHYS_INTERACTIVE;
268 sw->mode = newmode;
275 fprintf(stderr, "You may specify only one mode.\n");
279 if (sw->mode == PHYS_AUTO && arg == argc) {
280 fprintf(stderr, "A system must be specified in auto mode.\n");
288 CheckLabel(const char *label, struct prompt *prompt, int mode) argument
292 if ((err = system_IsValid(label, prompt, mode)) != NULL) {
294 if (mode == PHYS_DIRECT)
341 * routing table and then run ppp in interactive mode
[all...]
/freebsd-11-stable/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...]
H A Dtarghooks.c119 enum machine_mode mode ATTRIBUTE_UNUSED,
158 default_shift_truncation_mask (enum machine_mode mode) argument
160 return SHIFT_COUNT_TRUNCATED ? GET_MODE_BITSIZE (mode) - 1 : 0;
166 default_min_divisions_for_recip_mul (enum machine_mode mode ATTRIBUTE_UNUSED)
168 return have_insn_for (DIV, mode) ? 3 : 2;
174 default_mode_rep_extended (enum machine_mode mode ATTRIBUTE_UNUSED,
226 enum machine_mode mode ATTRIBUTE_UNUSED, tree type ATTRIBUTE_UNUSED,
229 return targetm.calls.must_pass_in_stack (mode, type);
237 enum machine_mode mode ATTRIBUTE_UNUSED,
258 we can't map the mode bac
263 default_scalar_mode_supported_p(enum machine_mode mode) argument
[all...]
/freebsd-11-stable/contrib/ldns/drill/
H A Dinstall-sh84 # Desired mode of installed file.
85 mode=0755
144 -m) mode=$2
145 case $mode in
148 echo "$0: invalid mode: $mode" >&2
207 case $mode in
218 cp_umask=`expr '(' 777 - $mode % 1000 ')' $u_plus_rw`;;
225 cp_umask=$mode$u_plus_rw;;
310 # Create intermediate dirs using mode 75
[all...]
/freebsd-11-stable/contrib/ldns/
H A Dinstall-sh84 # Desired mode of installed file.
85 mode=0755
144 -m) mode=$2
145 case $mode in
148 echo "$0: invalid mode: $mode" >&2
219 case $mode in
230 cp_umask=`expr '(' 777 - $mode % 1000 ')' $u_plus_rw`;;
237 cp_umask=$mode$u_plus_rw;;
317 # Create intermediate dirs using mode 75
[all...]
/freebsd-11-stable/crypto/heimdal/
H A Dinstall-sh84 # Desired mode of installed file.
85 mode=0755
144 -m) mode=$2
145 case $mode in
148 echo "$0: invalid mode: $mode" >&2
207 case $mode in
218 cp_umask=`expr '(' 777 - $mode % 1000 ')' $u_plus_rw`;;
225 cp_umask=$mode$u_plus_rw;;
310 # Create intermediate dirs using mode 75
[all...]
/freebsd-11-stable/contrib/tcsh/
H A Dinstall-sh84 # Desired mode of installed file.
85 mode=0755
144 -m) mode=$2
145 case $mode in
148 echo "$0: invalid mode: $mode" >&2
207 case $mode in
218 cp_umask=`expr '(' 777 - $mode % 1000 ')' $u_plus_rw`;;
225 cp_umask=$mode$u_plus_rw;;
310 # Create intermediate dirs using mode 75
[all...]
/freebsd-11-stable/lib/libufs/
H A Dinode.c50 getino(struct uufsd *disk, void **dino, ino_t inode, int *mode) argument
86 if (mode != NULL)
87 *mode = dp1->di_mode & IFMT;
93 if (mode != NULL)
94 *mode = dp2->di_mode & IFMT;
/freebsd-11-stable/sys/contrib/zlib/
H A Dinflate.c114 state->mode < HEAD || state->mode > SYNC)
130 state->mode = HEAD;
230 state->mode = HEAD; /* to pass state test in inflateReset2() */
650 if (state->mode == TYPE) state->mode = TYPEDO; /* skip check */
656 switch (state->mode) {
659 state->mode = TYPEDO;
670 state->mode = FLAGS;
682 state->mode
[all...]
/freebsd-11-stable/contrib/sqlite3/tea/tclconfig/
H A Dinstall-sh84 # Desired mode of installed file.
85 mode=0755
145 -m) mode=$2
146 case $mode in
149 echo "$0: invalid mode: $mode" >&2
215 case $mode in
226 cp_umask=`expr '(' 777 - $mode % 1000 ')' $u_plus_rw`;;
233 cp_umask=$mode$u_plus_rw;;
318 # Create intermediate dirs using mode 75
[all...]

Completed in 411 milliseconds

1234567891011>>