Searched refs:mode (Results 51 - 75 of 1865) sorted by relevance

1234567891011>>

/freebsd-10.1-release/contrib/gdb/gdb/cli/
H A Dcli-dump.h26 void (*func) (char *args, char *mode),
34 extern FILE *fopen_with_cleanup (char *filename, const char *mode);
/freebsd-10.1-release/lib/libc/compat-43/
H A Dcreat.c41 __creat(const char *path, mode_t mode) argument
43 return(_open(path, O_WRONLY|O_CREAT|O_TRUNC, mode));
/freebsd-10.1-release/lib/libc/gen/
H A Dlibc_dlopen.c44 libc_dlopen(const char *path, int mode) argument
48 _rtld_error("Service unavailable -- libc in restricted mode");
51 return (dlopen(path, mode));
/freebsd-10.1-release/sys/contrib/dts/arm/
H A Dat91sam9g25ek.dts20 phy-mode = "rmii";
H A Dat91sam9g35ek.dts20 phy-mode = "rmii";
H A Dat91sam9x35ek.dts20 phy-mode = "rmii";
/freebsd-10.1-release/sys/dev/ath/ath_hal/ar5312/
H A Dar5312_power.c58 * fames. If request, set power mode of chip to
68 * Set power mgt to the requested mode, and conditionally set
72 ar5312SetPowerMode(struct ath_hal *ah, HAL_POWER_MODE mode, int setChip) argument
86 modes[ahp->ah_powerMode], modes[mode],
88 switch (mode) {
99 HALDEBUG(ah, HAL_DEBUG_POWER, "%s: unknown power mode %u\n",
100 __func__, mode);
103 ahp->ah_powerMode = mode;
108 * Return the current sleep mode of the chip
123 return 0; /* Currently, 5312 is never in sleep mode
[all...]
/freebsd-10.1-release/tools/regression/geom/ConfCmp/
H A Da1.conf15 <mode>r0w0e0</mode>
27 <mode>r0w0e0</mode>
39 <mode>r0w0e0</mode>
51 <mode>r0w0e0</mode>
63 <mode>r0w0e0</mode>
[all...]
H A Da1a.conf15 <mode>r0w0e0</mode>
27 <mode>r0w0e0</mode>
39 <mode>r0w0e0</mode>
51 <mode>r0w0e0</mode>
63 <mode>r0w0e0</mode>
[all...]
H A Da1b.conf15 <mode>r0w0e0</mode>
27 <mode>r0w0e0</mode>
39 <mode>r0w0e0</mode>
51 <mode>r0w0e0</mode>
63 <mode>r0w0e0</mode>
[all...]
H A Da1c.conf15 <mode>r0w0e0</mode>
27 <mode>r0w0e0</mode>
39 <mode>r0w0e0</mode>
51 <mode>r0w0e0</mode>
63 <mode>r0w0e0</mode>
[all...]
H A Da1d.conf15 <mode>r0w0e0</mode>
27 <mode>r0w0e0</mode>
39 <mode>r0w0e0</mode>
51 <mode>r0w0e0</mode>
63 <mode>r0w0e0</mode>
[all...]
/freebsd-10.1-release/lib/libz/
H A Dgzlib.c82 if (state->mode == GZ_READ) { /* for reading ... */
94 local gzFile gz_open(path, fd, mode)
97 const char *mode;
121 /* interpret mode */
122 state->mode = GZ_NONE;
126 while (*mode) {
127 if (*mode >= '0' && *mode <= '9')
128 state->level = *mode - '0';
130 switch (*mode) {
[all...]
H A Dzopen.c11 FILE *zopen(const char *fname, const char *mode);
33 zopen(const char *fname, const char *mode) argument
35 gzFile gz = gzopen(fname, mode);
39 if(*mode == 'r')
/freebsd-10.1-release/contrib/libreadline/support/
H A Dmkdist78 while read fname type mode
89 s) ln -s $mode $newdir/$fname ; mode= ;; # symlink
90 l) ln $mode $newdir/$fname ; mode= ;; # hard link
94 if [ -n "$mode" ]; then
95 chmod $mode $newdir/$fname
/freebsd-10.1-release/tools/regression/pjdfstest/tests/chmod/
H A D11.t4 desc="chmod returns EFTYPE if the effective user ID is not the super-user, the mode includes the sticky bit (S_ISVTX), and path does not refer to a directory"
27 expect 01621 stat ${n1} mode
30 expect 01700 stat ${n1} mode
42 expect 01621 lstat ${n1} mode
54 expect 01755 stat ${n1} mode
57 expect 01700 stat ${n1} mode
68 expect 0640 stat ${n1} mode
70 expect 0640 stat ${n1} mode
74 expect 0644 stat ${n1} mode
76 expect 0640 stat ${n1} mode
[all...]
/freebsd-10.1-release/lib/libkse/thread/
H A Dthr_open.c52 int mode = 0; local
59 /* Get the creation mode: */
61 mode = va_arg(ap, int);
65 ret = __sys_open(path, flags, mode);
/freebsd-10.1-release/sys/dev/ata/chipsets/
H A Data-cyrix.c56 static int ata_cyrix_setmode(device_t dev, int target, int mode);
97 ata_cyrix_setmode(device_t dev, int target, int mode) argument
110 mode = min(mode, ATA_UDMA2);
111 /* dont try to set the mode if we dont have the resource */
113 if (mode >= ATA_UDMA0) {
116 0x24 + (devno << 3), udmatiming[mode & ATA_MODE_MASK]);
118 } else if (mode >= ATA_WDMA0) {
119 /* Set WDMA timings, and respective PIO mode. */
121 0x24 + (devno << 3), dmatiming[mode
[all...]
/freebsd-10.1-release/crypto/openssl/crypto/pkcs12/
H A Dp12_init.c66 PKCS12 *PKCS12_init(int mode) argument
74 pkcs12->authsafes->type = OBJ_nid2obj(mode);
75 switch (mode) {
/freebsd-10.1-release/contrib/groff/font/devdvi/generate/
H A DCompileFonts5 mode=cx
10 virmf "&cm \\mode=$mode; mag=$s/10; batchmode; input $f" >/dev/null
/freebsd-10.1-release/contrib/ncurses/ncurses/base/
H A Dsigaction.c54 _nc_sigprocmask(int mode, sigset_t * mask, sigset_t * omask) argument
61 if (mode == SIG_BLOCK)
63 else if (mode == SIG_UNBLOCK)
65 else if (mode == SIG_SETMASK)
/freebsd-10.1-release/contrib/wpa/src/ap/
H A Dhw_features.h25 const char * hostapd_hw_mode_txt(int mode);
30 struct hostapd_hw_modes *mode);
48 static inline const char * hostapd_hw_mode_txt(int mode) argument
64 struct hostapd_hw_modes *mode)
63 hostapd_prepare_rates(struct hostapd_iface *iface, struct hostapd_hw_modes *mode) argument
/freebsd-10.1-release/release/picobsd/build/
H A Dmfs.mtree4 /set type=dir uname=root gname=wheel mode=0755
36 tmp mode=01777
/freebsd-10.1-release/sys/dev/drm2/radeon/
H A Dradeon_agp.c135 struct drm_agp_mode mode; local
164 mode.mode = info.mode;
166 * Just use the whatever mode the host sets up.
169 agp_status = (RREG32(RADEON_AGP_STATUS) | RADEON_AGPv3_MODE) & mode.mode;
171 agp_status = mode.mode;
208 DRM_INFO("AGP mode requeste
[all...]
/freebsd-10.1-release/tools/diag/httpd-error/
H A Dhttpd-error31 mode=${1}
33 case "$mode" in

Completed in 344 milliseconds

1234567891011>>