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

1234567891011>>

/freebsd-13-stable/stand/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);
/freebsd-13-stable/tools/tools/switch_tls/
H A Dswitch_tls.c75 int ch, mode; local
80 mode = SW_TLS;
88 mode = IFNET_TLS;
98 mode = SW_TLS;
112 if (!tcpswitchall(stack, mode))
128 if (!tcpswitchbyname(argv[0], lport, argv[1], fport, mode))
130 } else if (!tcpswitchbyname(argv[0], argv[1], argv[2], argv[3], mode))
193 tcpswitch(const struct sockaddr *lsa, const struct sockaddr *fsa, int mode) argument
207 mode == SW_TLS ? "-s" : "-i",
213 rv = sysctlbyname(mode
227 tcpswitchall(const char *stack, int mode) argument
273 tcpswitchbyname(const char *lhost, const char *lport, const char *fhost, const char *fport, int mode) argument
328 tcpswitchconn(const struct in_conninfo *inc, int mode) argument
[all...]
/freebsd-13-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-13-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-13-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-13-stable/libexec/flua/modules/
H A Dlposix.c49 mode_t mode; local
55 mode = (mode_t)luaL_checkinteger(L, 2);
56 if (chmod(path, mode) == -1) {
/freebsd-13-stable/contrib/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...]
H A Dinstall-sh69 # Desired mode of installed file.
70 mode=0755
129 -m) mode=$2
130 case $mode in
132 echo "$0: invalid mode: $mode" >&2
224 case $mode in
235 cp_umask=`expr '(' 777 - $mode % 1000 ')' $u_plus_rw`;;
242 cp_umask=$mode$u_plus_rw;;
296 # Create intermediate dirs using mode 75
[all...]
/freebsd-13-stable/sys/dev/ata/chipsets/
H A Data-ati.c59 static int ata_ati_setmode(device_t dev, int target, int mode);
149 * When "combined mode" is enabled, an additional PATA channel is
151 * This mode can only be detected via SMB controller.
159 (satacfg & 0x08) == 0 ? "" : "combined mode, ",
163 * If SATA controller is enabled but combined mode is disabled,
208 ata_ati_setmode(device_t dev, int target, int mode) argument
219 mode = min(mode, ctlr->chip->max_dma);
220 if (mode >= ATA_UDMA0) {
221 /* Set UDMA mode, enabl
[all...]
/freebsd-13-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-13-stable/sys/dev/ath/ath_hal/ar5210/
H A Dar5210_phy.c70 ar5210GetRateTable(struct ath_hal *ah, u_int mode) argument
73 switch (mode) {
81 HALDEBUG(ah, HAL_DEBUG_ANY, "%s: invalid mode 0x%x\n",
82 __func__, mode);
/freebsd-13-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-13-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-13-stable/sys/cddl/dev/dtrace/x86/
H A Dinstr_size.c108 uint_t mode = SIZE32; local
110 mode = (model == DATAMODEL_LP64) ? SIZE64 : SIZE32;
116 if (dtrace_disx86(&x, mode) != 0)
/freebsd-13-stable/crypto/openssh/openbsd-compat/
H A Dbsd-cygwin_util.c27 * binary mode on Windows systems.
47 mode_t mode; local
50 mode = va_arg(ap, mode_t);
52 return (open(filename, flags | O_BINARY, mode));
/freebsd-13-stable/stand/efi/libefi/
H A Definet.c68 dump_mode(EFI_SIMPLE_NETWORK_MODE *mode) argument
72 printf("State = %x\n", mode->State);
73 printf("HwAddressSize = %u\n", mode->HwAddressSize);
74 printf("MediaHeaderSize = %u\n", mode->MediaHeaderSize);
75 printf("MaxPacketSize = %u\n", mode->MaxPacketSize);
76 printf("NvRamSize = %u\n", mode->NvRamSize);
77 printf("NvRamAccessSize = %u\n", mode->NvRamAccessSize);
78 printf("ReceiveFilterMask = %x\n", mode->ReceiveFilterMask);
79 printf("ReceiveFilterSetting = %u\n", mode->ReceiveFilterSetting);
80 printf("MaxMCastFilterCount = %u\n", mode
[all...]
/freebsd-13-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-13-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...]
/freebsd-13-stable/contrib/llvm-project/lldb/include/lldb/Utility/
H A DCompletionRequest.h54 CompletionMode mode)
56 m_mode(mode) {}
76 CompletionMode mode);
166 /// \param mode The CompletionMode for this completion.
169 CompletionMode mode = CompletionMode::Normal) {
170 m_result.AddResult(completion, description, mode);
53 Completion(llvm::StringRef completion, llvm::StringRef description, CompletionMode mode) argument
/freebsd-13-stable/contrib/sqlite3/
H A Dinstall-sh69 # Desired mode of installed file.
70 mode=0755
129 -m) mode=$2
130 case $mode in
132 echo "$0: invalid mode: $mode" >&2
224 case $mode in
235 cp_umask=`expr '(' 777 - $mode % 1000 ')' $u_plus_rw`;;
242 cp_umask=$mode$u_plus_rw;;
296 # Create intermediate dirs using mode 75
[all...]
/freebsd-13-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-13-stable/contrib/unbound/
H A Dinstall-sh69 # Desired mode of installed file.
70 mode=0755
129 -m) mode=$2
130 case $mode in
132 echo "$0: invalid mode: $mode" >&2
224 case $mode in
235 cp_umask=`expr '(' 777 - $mode % 1000 ')' $u_plus_rw`;;
242 cp_umask=$mode$u_plus_rw;;
296 # Create intermediate dirs using mode 75
[all...]
/freebsd-13-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-13-stable/contrib/ldns/
H A Dinstall-sh69 # Desired mode of installed file.
70 mode=0755
129 -m) mode=$2
130 case $mode in
132 echo "$0: invalid mode: $mode" >&2
224 case $mode in
235 cp_umask=`expr '(' 777 - $mode % 1000 ')' $u_plus_rw`;;
242 cp_umask=$mode$u_plus_rw;;
296 # Create intermediate dirs using mode 75
[all...]
/freebsd-13-stable/contrib/dialog/
H A Dmouse.c66 int mode)
69 butPtr->mode = mode;
96 if ((butPtr->mode != -1) ||
109 butPtr->mode = -1;
62 dlg_mouse_mkbigregion(int y, int x, int height, int width, int code, int step_y, int step_x, int mode) argument

Completed in 209 milliseconds

1234567891011>>