Home
last modified time | relevance | path

Searched refs:mode (Results 176 – 200 of 1887) sorted by relevance

12345678910>>...76

/illumos-gate/usr/src/cmd/bnu/
H A DDialers68 # mode and not the Hayes mode.
110 # ATZ\r enter command mode, reset modem
112 # \E turn on echo check mode
138 # cannot enter the interactive mode from the data mode.
160 # cannot enter the interactive mode from the data mode.
204 # \\n3 select normal operating mode
215 # cannot enter the interactive mode from the data mode.
246 # atz enter command mode
247 # \\n3 select auto-reliable operating mode
257 # cannot enter the interactive mode from the data mode.
[all …]
/illumos-gate/usr/src/cmd/sendmail/db/os/
H A Dos_open.c33 __db_open(name, arg_flags, ok_flags, mode, fdp) in __db_open() argument
36 int mode, *fdp;
93 if ((ret = __os_open(name, flags, mode, fdp)) != 0)
129 __os_open(name, flags, mode, fdp) in __os_open() argument
131 int flags, mode, *fdp;
134 __db_jump.j_open(name, flags, mode) : open(name, flags, mode);
/illumos-gate/usr/src/uts/common/io/fibre-channel/fca/qlc/
H A Dql_ioctl.c253 sizeof (bits), mode)) { in ql_ioctl()
263 sizeof (bits), mode)) { in ql_ioctl()
1215 mode)) != QL_SUCCESS) { in ql_vpd_load()
1551 int mode) in ql_r_m_w_flash() argument
1589 mode)) != 0) { in ql_r_m_w_flash()
1799 dop->length, mode) != 0) { in ql_adm_adapter_info()
1946 dop->length, mode) != 0) { in ql_adm_device_list()
2045 mode) != 0) { in ql_adm_prop_update_int()
2221 mode)) != 0) { in ql_adm_nvram_dump()
2259 mode)) != 0) { in ql_adm_nvram_load()
[all …]
/illumos-gate/usr/src/contrib/ast/src/lib/libcmd/
H A Dvmstate.c91 if (state->vs.mode & VM_TRUST) in key()
94 if (state->vs.mode & VM_TRACE) in key()
96 if (state->vs.mode & VM_DBCHECK) in key()
98 if (state->vs.mode & VM_DBABORT) in key()
115 if (state->vs.mode & VM_MTBEST) in key()
117 else if (state->vs.mode & VM_MTPOOL) in key()
119 else if (state->vs.mode & VM_MTLAST) in key()
121 else if (state->vs.mode & VM_MTDEBUG) in key()
123 else if (state->vs.mode & VM_MTPROFILE) in key()
H A Duniq.c85 static int uniq(Sfio_t *fdin, Sfio_t *fdout, int fields, int chars, int width, int mode, int* all, … in uniq() argument
91 if(mode&C_FLAG) in uniq()
161 if(((mode&D_FLAG)&&count==0) || ((mode&U_FLAG)&&count)) in uniq()
248 register int mode=0; in b_uniq() local
262 mode |= C_FLAG; in b_uniq()
265 mode |= D_FLAG; in b_uniq()
268 mode |= D_FLAG; in b_uniq()
287 mode |= U_FLAG; in b_uniq()
311 if(all && (mode&C_FLAG)) in b_uniq()
335 error_info.errors = uniq(fpin,fpout,fields,chars,width,mode,all,compare); in b_uniq()
H A Dwclib.c60 Wc_t* wc_init(int mode) in wc_init() argument
76 w = mode & WC_WORDS; in wc_init()
80 if ((mode & (WC_MBYTE|WC_WORDS)) && wp->mb > 0) in wc_init()
101 wp->mode = mode; in wc_init()
188 if (wp->mb < 0 && (wp->mode & (WC_MBYTE|WC_WORDS))) in wc_count()
255 if (!(wp->mode & WC_MBYTE)) in wc_count()
258 …else if (!wp->mb && !(wp->mode & WC_LONGEST) || wp->mb > 0 && !(wp->mode & (WC_MBYTE|WC_WORDS|WC_L… in wc_count()
260 if (!(wp->mode & (WC_MBYTE|WC_WORDS|WC_LONGEST))) in wc_count()
393 if(wp->mode&WC_LONGEST) in wc_count()
469 if(eline!=nlines && !(wp->mode & WC_QUIET)) in wc_count()
[all …]
H A Dchmod.c162 register int mode; in b_chmod() local
210 mode = st.st_mode; in b_chmod()
254 mode = strperm(amode, &last, 0); in b_chmod()
295 mode = strperm(amode, &last, ent->fts_statp->st_mode); in b_chmod()
296 if (show || (*chmodf)(ent->fts_accpath, mode) >= 0) in b_chmod()
298 if (notify == 2 || notify == 1 && (mode&S_IPERM) != (ent->fts_statp->st_mode&S_IPERM)) in b_chmod()
299 … sfprintf(sfstdout, "%s: mode changed to %0.4o (%s)\n", ent->fts_path, mode, fmtmode(mode, 1)+1); in b_chmod()
/illumos-gate/usr/src/cmd/make/lib/vroot/
H A Dchmod.cc30 extern int chmod(const char *path, mode_t mode);
37 vroot_result= chmod(path, vroot_args.chmod.mode); in chmod_thunk()
41 int chmod_vroot(char *path, int mode, pathpt vroot_path, pathpt vroot_vroot) in chmod_vroot() argument
43 vroot_args.chmod.mode= mode; in chmod_vroot()
H A Dcreat.cc31 extern int creat(const char *path, mode_t mode);
38 vroot_result= creat(path, vroot_args.creat.mode); in creat_thunk()
42 int creat_vroot(char *path, int mode, pathpt vroot_path, pathpt vroot_vroot) in creat_vroot() argument
44 vroot_args.creat.mode= mode; in creat_vroot()
H A Dmkdir.cc30 extern int mkdir(const char *path, mode_t mode);
37 vroot_result= mkdir(path, vroot_args.mkdir.mode); in mkdir_thunk()
41 int mkdir_vroot(char *path, int mode, pathpt vroot_path, pathpt vroot_vroot) in mkdir_vroot() argument
43 vroot_args.mkdir.mode= mode; in mkdir_vroot()
/illumos-gate/usr/src/cmd/mdb/common/kmdb/
H A Dkmdb_module_load.c63 mdb_module_load(const char *fname, int mode) in mdb_module_load() argument
85 kmc->kmc_loadmode = mode; in mdb_module_load()
102 if (!(mode & MDB_MOD_DEFER) && in mdb_module_load()
106 if (!(mode & MDB_MOD_SILENT)) in mdb_module_load()
112 if (!(mode & MDB_MOD_SILENT)) in mdb_module_load()
205 mdb_module_load_all(int mode) in mdb_module_load_all() argument
209 ASSERT(mode & MDB_MOD_DEFER); in mdb_module_load_all()
235 if (!(mode & MDB_MOD_DEFER) && in kmdb_module_request_unload()
239 if (!(mode & MDB_MOD_SILENT)) in kmdb_module_request_unload()
245 mdb_module_unload(const char *name, int mode) in mdb_module_unload() argument
[all …]
/illumos-gate/usr/src/lib/libc/port/sys/
H A Dmknod.c32 mknodat(int fd, const char *path, mode_t mode, dev_t dev) in mknodat() argument
34 return (syscall(SYS_mknodat, fd, path, mode, dev)); in mknodat()
39 mknod(const char *path, mode_t mode, dev_t dev) in mknod() argument
42 return (syscall(SYS_mknod, path, mode, dev)); in mknod()
44 return (mknodat(AT_FDCWD, path, mode, dev)); in mknod()
/illumos-gate/usr/src/uts/i86pc/io/gfx_private/
H A Dgfxp_fb.c217 softc->mode = -1; /* the actual value will be set by tem */ in gfxp_fb_attach()
343 kd_mode = softc->mode; in do_gfx_ioctl()
350 sizeof (struct vis_identifier), mode)) in do_gfx_ioctl()
356 if (!(mode & FKIOCTL)) { in do_gfx_ioctl()
375 sizeof (struct vis_consclear), mode)) in do_gfx_ioctl()
386 sizeof (struct vis_conscopy), mode)) in do_gfx_ioctl()
398 sizeof (display_request), mode)) in do_gfx_ioctl()
410 sizeof (cursor_request), mode)) in do_gfx_ioctl()
417 sizeof (cursor_request), mode)) in do_gfx_ioctl()
453 gfxp_fb_ioctl(dev_t dev, int cmd, intptr_t data, int mode, in gfxp_fb_ioctl() argument
[all …]
/illumos-gate/usr/src/contrib/ast/src/lib/libast/string/
H A Dfmtmode.c34 fmtmode(register int mode, int external) in fmtmode() argument
41 mode = modex(mode); in fmtmode()
44 *s++ = p->name[((mode & p->mask1) >> p->shift1) | ((mode & p->mask2) >> p->shift2)]; in fmtmode()
/illumos-gate/usr/src/contrib/ast/src/cmd/ksh93/sh/
H A Dfault.c143 pp->mode = SH_JMPEXIT; in sh_fault()
171 if(pp->mode==SH_JMPCMD || (pp->mode==1 && shp->bltinfun) && !(flag&SH_SIGIGNORE)) in sh_fault()
333 if(mode) in sh_sigreset()
337 else if(sig && mode>1) in sh_sigreset()
351 if(mode) in sh_sigreset()
358 if(mode) in sh_sigreset()
410 pp->mode = SH_JMPEXIT; in sh_chktrap()
466 if(mode==2) in sh_trap()
471 if(mode) in sh_trap()
519 if(pp && pp->mode>1) in sh_exit()
[all …]
/illumos-gate/usr/src/lib/gss_mechs/mech_krb5/krb5/os/
H A Dsafechown.c22 safechown(const char *src, uid_t uid, gid_t gid, int mode) in safechown() argument
61 if (mode != -1) { in safechown()
62 if (fchmod(fd, (mode_t)mode)) { in safechown()
84 int mode = -1; in main() local
90 mode = strtol(optarg, 0, 8); in main()
103 if (safechown(argv[optind], uid, getgid(), mode)) { in main()
/illumos-gate/usr/src/tools/scripts/
H A Dvalidate_pkg.py93 self.mode = None
122 m = int(self.mode, 8)
216 return lhs.mode != rhs.mode
267 mode = self.mode
279 mode = "777"
362 self.mode = mode
383 mode = lstat.st_mode
388 if stat.S_ISREG(mode):
390 elif stat.S_ISDIR(mode):
399 self.mode = "%04o" % stat.S_IMODE(mode)
[all …]
/illumos-gate/usr/src/lib/brand/solaris10/s10_brand/common/
H A Ds10_deleted.c115 fd, path, oflag, mode)); in s10_openat()
122 AT_FDCWD, path, oflag, mode)); in s10_open()
126 s10_creat(sysret_t *rval, char *path, mode_t mode) in s10_creat() argument
138 fd, path, oflag, mode)); in s10_openat64()
145 AT_FDCWD, path, oflag, mode)); in s10_open64()
149 s10_creat64(sysret_t *rval, char *path, mode_t mode) in s10_creat64() argument
211 AT_FDCWD, name, mode, 0)); in s10_chmod()
215 s10_fchmod(sysret_t *rval, int filedes, mode_t mode) in s10_fchmod() argument
218 filedes, NULL, mode, 0)); in s10_fchmod()
454 mode_t mode, dev_t dev) in s10_xmknod() argument
[all …]
/illumos-gate/usr/src/contrib/ast/src/lib/libast/vmalloc/
H A Dvmopen.c56 Vmalloc_t* vmopen(Vmdisc_t* disc, Vmethod_t* meth, int mode) in vmopen() argument
58 Vmalloc_t* vmopen(disc, meth, mode) in vmopen()
61 int mode; /* type of region */
83 mode &= VM_FLAGS; /* start with user-settable flags */
92 mode |= VM_MEMORYF;
115 vd->mode = mode | meth->meth;
120 if(vd->mode&(VM_MTBEST|VM_MTDEBUG|VM_MTPROFILE))
154 if(vd->mode&(VM_MTLAST|VM_MTPOOL))
159 if(vd->mode&VM_MEMORYF)
/illumos-gate/usr/src/lib/pkcs11/pkcs11_tpm/common/
H A Ddata_obj.c297 data_object_check_required_attributes(TEMPLATE *tmpl, CK_ULONG mode) in data_object_check_required_attributes() argument
299 return (template_check_required_base_attributes(tmpl, mode)); in data_object_check_required_attributes()
312 data_object_set_default_attributes(TEMPLATE *tmpl, CK_ULONG mode) in data_object_set_default_attributes() argument
318 if (mode) in data_object_set_default_attributes()
355 CK_ULONG mode) in data_object_validate_attribute() argument
366 return (template_validate_base_attribute(tmpl, attr, mode)); in data_object_validate_attribute()
/illumos-gate/usr/src/contrib/ast/src/lib/libast/path/
H A Dpathaccess.c40 pathaccess(char* path, const char* dirs, const char* a, const char* b, int mode) in pathaccess() argument
42 return pathaccess_20100601(dirs, a, b, mode, path, PATH_MAX); in pathaccess()
50 pathaccess_20100601(register const char* dirs, const char* a, const char* b, register int mode, reg… in pathaccess_20100601() argument
60 if ((!sib || *path == '/') && pathexists(path, mode)) in pathaccess_20100601()
62 if (*path == '/' || !(mode & PATH_ABSOLUTE)) in pathaccess_20100601()
/illumos-gate/usr/src/pkg/manifests/
H A Dsystem-network-routing.p5m37 file path=lib/svc/manifest/network/routing/ndp.xml group=sys mode=0444
38 file path=lib/svc/manifest/network/routing/rdisc.xml group=sys mode=0444
42 file path=lib/svc/method/svc-ndp mode=0555
43 file path=lib/svc/method/svc-rdisc mode=0555
44 file path=lib/svc/method/svc-ripng mode=0555
45 file path=lib/svc/method/svc-route mode=0555
49 file path=usr/lib/inet/in.ndpd mode=0555
50 file path=usr/lib/inet/in.ripngd mode=0555
52 file path=usr/sbin/in.rdisc mode=0555
53 file path=usr/sbin/in.routed mode=0555
[all …]
H A Dservice-network-network-clients.p5m37 file path=usr/bin/rcp mode=4555
38 file path=usr/bin/rdate mode=0555
39 file path=usr/bin/rdist mode=4555
41 file path=usr/bin/rlogin mode=4555
42 file path=usr/bin/rsh mode=4555
43 file path=usr/bin/rup mode=0555
45 file path=usr/bin/rusers mode=0555
46 file path=usr/bin/whois mode=0555
50 file path=usr/sbin/rmt mode=0555
51 file path=usr/sbin/rwall mode=0555
[all …]
H A Dcompatibility-ucb.p5m93 file path=usr/ucb/biff mode=0755
96 file path=usr/ucb/df mode=0755
97 file path=usr/ucb/du mode=0755
99 file path=usr/ucb/echo mode=0755
102 file path=usr/ucb/expr mode=0755
105 file path=usr/ucb/file mode=0555
116 file path=usr/ucb/ln mode=0755
118 file path=usr/ucb/ls mode=0755
140 file path=usr/ucb/sed mode=0555
143 file path=usr/ucb/sum mode=0755
[all …]
/illumos-gate/usr/src/contrib/ast/src/cmd/INIT/
H A Dratz.c713 # define F_OPEN(name, mode) fopen((name), (mode)) argument
3720 s->mode = '\0';
5068 mode = 0;
5070 mode |= S_IRUSR;
5072 mode |= S_IWUSR;
5074 mode |= S_IXUSR;
5076 mode |= S_IRGRP;
5078 mode |= S_IWGRP;
5080 mode |= S_IXGRP;
5082 mode |= S_IROTH;
[all …]

12345678910>>...76