Searched defs:mode (Results 226 - 250 of 1040) sorted by relevance

1234567891011>>

/illumos-gate/usr/src/cmd/make/include/vroot/
H A Dargs.h45 struct { int mode;} access; member in struct:Args::__anon35
46 struct { int mode;} chmod; member in struct:Args::__anon36
48 struct { int mode;} creat; member in struct:Args::__anon38
51 struct { int mode;} mkdir; member in struct:Args::__anon41
52 struct { char *name; int mode;} mount; member in struct:Args::__anon42
53 struct { int flags; int mode;} open; member in struct:Args::__anon43
/illumos-gate/usr/src/uts/common/fs/portfs/
H A Dport_vnops.c179 * If the port was set in alert mode by the curren process then
180 * remove the alert mode.
183 /* check alert mode of the port */
322 vap->va_mode = 0; /* file access mode */
364 port_access(struct vnode *vp, int mode, int flags, cred_t *cr, argument
/illumos-gate/usr/src/lib/fm/libfmd_agent/common/
H A Dfmd_agent.c163 fmd_agent_open_dev(int ver, int mode) argument
169 if ((fd = open("/dev/fm", mode)) < 0)
/illumos-gate/usr/src/uts/common/fs/nfs/
H A Dnfs4_deleg_ops.c102 deleg_rd_open(femarg_t *arg, int mode, cred_t *cr, caller_context_t *ct) argument
115 (mode & (FWRITE|FTRUNC))) {
122 return (vnext_open(arg, mode, cr, ct));
127 deleg_wr_open(femarg_t *arg, int mode, cred_t *cr, caller_context_t *ct) argument
146 return (vnext_open(arg, mode, cr, ct));
/illumos-gate/usr/src/boot/sys/boot/efi/libefi/
H A Definet.c67 dump_mode(EFI_SIMPLE_NETWORK_MODE *mode) argument
71 printf("State = %x\n", mode->State);
72 printf("HwAddressSize = %u\n", mode->HwAddressSize);
73 printf("MediaHeaderSize = %u\n", mode->MediaHeaderSize);
74 printf("MaxPacketSize = %u\n", mode->MaxPacketSize);
75 printf("NvRamSize = %u\n", mode->NvRamSize);
76 printf("NvRamAccessSize = %u\n", mode->NvRamAccessSize);
77 printf("ReceiveFilterMask = %x\n", mode->ReceiveFilterMask);
78 printf("ReceiveFilterSetting = %u\n", mode->ReceiveFilterSetting);
79 printf("MaxMCastFilterCount = %u\n", mode
[all...]
/illumos-gate/usr/src/boot/sys/boot/userboot/userboot/
H A Dhost.c97 int mode; local
102 CALLBACK(stat, f->f_fsdata, &mode, &uid, &gid, &size);
103 sb->st_mode = mode;
/illumos-gate/usr/src/lib/pkcs11/pkcs11_tpm/common/
H A Dobject.c816 CK_ULONG mode,
845 rc = template_add_default_attributes(tmpl, class, subclass, mode);
862 rc = template_validate_attributes(tmpl2, class, subclass, mode);
867 rc = template_check_required_attributes(tmpl2, class, subclass, mode);
814 object_create_skel(CK_ATTRIBUTE * pTemplate, CK_ULONG ulCount, CK_ULONG mode, CK_ULONG class, CK_ULONG subclass, OBJECT ** obj) argument
/illumos-gate/usr/src/lib/cfgadm_plugins/scsi/SUNW,SPARC-Enterprise/common/
H A Dopl_dev_led.c48 "mode",
154 led_modeid_t mode = LED_MODE_UNK; local
163 mode = LED_MODE_FAULTED;
167 mode = LED_MODE_OFF;
171 mode = LED_MODE_ON;
175 mode = LED_MODE_UNK;
177 cfga_led_msg(msgp, apidp, LED_STR_LOCATOR, mode);
186 led_modeid_t mode = LED_MODE_UNK; local
195 mode = LED_MODE_ON;
199 mode
213 opl_setlocator( const char *mode, apid_t *apidp, char **errstring, struct cfga_msg *msgp) argument
266 opl_setled( const char *mode, apid_t *apidp, char **errstring, struct cfga_msg *msgp) argument
[all...]
/illumos-gate/usr/src/lib/libshell/common/edit/
H A Dcompletion.c96 int mode=*type; local
122 if(mode!='*' && (isaletter(c) || c=='{'))
148 *type = mode;
191 * mode is '*' for inline expansion,
192 * mode is '\' for filename completion
193 * mode is '=' cause files to be listed in select format
196 int ed_expand(Edit_t *ep, char outbuff[],int *cur,int *eol,int mode, int count) argument
207 if(mode=='=' && count>0)
211 mode = '?';
246 var = mode;
[all...]
/illumos-gate/usr/src/lib/libshell/common/include/
H A Dfault.h99 int mode; member in struct:checkpt
108 #define sh_pushcontext(bp,n) ( (bp)->mode=(n) , (bp)->olist=0, \
/illumos-gate/usr/src/lib/libshell/common/sh/
H A Darith.c354 * if mode>0, an error will be fatal with value <mode>
357 Sfdouble_t sh_strnum(register const char *str, char** ptr, int mode) argument
372 d = strval(str,&last,arith,mode);
373 if(!ptr && *last && mode>0)
H A Dbash.c47 "compatibility mode. In ksh mode, brace group expansion is always on.]"
49 "instead. Only available in bash compatibility mode.]";
66 "POSIX mode is not the same as \bksh\b.]"
81 "[q?Suppress output (quiet mode). The return status indicates whether the "
105 "[+histreedit?If set and an edit mode is selected, the user "
108 "[+histverify?If set and an edit mode is selected, the result "
304 /* mode = 0: init, called two times
307 mode > 1: re-init
308 mode <
311 bash_init(int mode) argument
[all...]
H A Dfault.c130 if(pp->mode < SH_JMPFUN)
131 pp->mode = SH_JMPFUN;
133 pp->mode = SH_JMPEXIT;
160 if(pp->mode==SH_JMPCMD)
179 if(pp->mode==SH_JMPCMD && sh_isstate(SH_STOPOK))
202 if(pp->mode==SH_JMPCMD && sh_isstate(SH_STOPOK))
308 * Free the trap strings if mode is non-zero
309 * If mode>1 then ignored traps cause signal to be ignored
311 void sh_sigreset(register int mode) argument
322 if(mode)
435 sh_trap(const char *trap, int mode) argument
[all...]
H A Dmain.c426 buff.mode = SH_JMPEXIT;
539 if(buff.mode == SH_JMPEXIT)
541 buff.mode = SH_JMPERREXIT;
543 errormsg(SH_DICT,ERROR_warn(0),"%d: mode changed to JMP_EXIT",getpid());
722 * mode is 0 for initialization
724 static void fixargs(char **argv, int mode) argument
735 if(mode==0)
747 if(mode==0)
H A Dsuid_exec.c38 * may pass file descriptor FDIN as an open file with mode SPECIAL if
102 int mode; local
125 * by root and is mode SPECIAL, then this is proof that it was
207 mode = 0;
216 mode = S_ISGID;
219 if(mode)
222 mode |= S_ISUID;
227 mode = S_ISUID;
230 if(mode)
231 setids(mode, effui
293 eaccess(register const char *name, register int mode) argument
344 setids(int mode,int owner,int group) argument
364 setids(int mode,uid_t owner,gid_t group) argument
[all...]
/illumos-gate/usr/src/lib/libcrypt/common/
H A Ddes_soft.c128 unsigned mode; local
133 mode = (unsigned)desp->des_mode;
137 switch (mode) {
/illumos-gate/usr/src/lib/libcryptoutil/common/
H A Dconfig_parsing.c108 parse_fips_mode(char *buf, boolean_t *mode) argument
116 *mode = B_FALSE;
118 *mode = B_TRUE;
/illumos-gate/usr/src/lib/libdiskmgt/common/
H A Dinuse_fs.c157 mode_t mode = S_IRUSR | S_IWUSR; local
164 (void) open("/dev/null", O_WRONLY, mode);
165 (void) open("/dev/null", O_WRONLY, mode);
/illumos-gate/usr/src/lib/libdscfg/common/
H A Dcfg_local.c227 localcf_seekblk(cfp_t *cfp, int off, int mode) argument
232 rc = lseek(cfp->cf_fd, off, mode);
263 localcf_seek(cfp_t *cfp, int off, int mode) argument
270 if ((mode == SEEK_SET) && (cfp->cf_flag & CFG_NOWRVTOC)) {
275 rc = lseek(cfp->cf_fd, offset, mode);
/illumos-gate/usr/src/lib/libtnfctl/
H A Dinternal.c95 hdl->mode = INTERNAL_MODE;
351 _tnfctl_dlopen(const char *pathname, int mode) argument
368 return ((*real_dlopen)(pathname, mode));
376 retval = (*real_dlopen)(pathname, mode);
/illumos-gate/usr/src/lib/libnsl/des/
H A Ddes_soft.c164 unsigned mode; local
169 mode = (unsigned)desp->des_mode;
173 switch (mode) {
/illumos-gate/usr/src/lib/libpkg/common/
H A Dgpkgmap.c81 * These determine how gpkgmap() deals with mode, owner and group defaults.
86 attrpreset(int mode, char *owner, char *group) argument
88 d_mode = mode;
103 * mode, owner and group. Path is evaluated at a higher level based upon
107 setmapmode(int mode) argument
109 if (mode >= 0 || mode <= 3) {
110 mapmode = mode;
111 if (mode == MAPBUILD)
113 else if (mode
[all...]
/illumos-gate/usr/src/lib/libresolv2/common/dst/
H A Dhmac_link.c80 * mode SIG_MODE_INIT, SIG_MODE_UPDATE and/or SIG_MODE_FINAL.
94 dst_hmac_md5_sign(const int mode, DST_KEY *d_key, void **context, argument
105 if (mode & SIG_MODE_INIT)
114 if (mode & SIG_MODE_INIT) {
119 if ((mode & SIG_MODE_UPDATE) && (data && len > 0))
122 if (mode & SIG_MODE_FINAL) {
151 * mode SIG_MODE_INIT, SIG_MODE_UPDATE and/or SIG_MODE_FINAL.
163 dst_hmac_md5_verify(const int mode, DST_KEY *d_key, void **context, argument
173 if (mode & SIG_MODE_INIT)
181 if (mode
[all...]
H A Dsupport.c297 * mode Mode to open the file (passed directly to fopen)
304 dst_s_fopen(const char *filename, const char *mode, int perm) argument
318 fp = fopen(pathname, mode);
325 dst_s_dump(const int mode, const u_char *data, const int size, argument
335 printf("%s: %x %d %s\n", msg, mode, n, scratch);
337 printf("%s,%x %d\n", msg, mode, size);
/illumos-gate/usr/src/lib/libresolv2/common/isc/
H A Dev_connects.c68 int mode; local
72 OKFREE(mode = fcntl(fd, F_GETFL, NULL), new); /*%< side effect: validate fd. */
80 if ((mode & PORT_NONBLOCK) == 0) {
85 OKFREE(fcntl(fd, F_SETFL, mode | PORT_NONBLOCK), new);
120 /* Do the select() first to get the socket into nonblocking mode. */
160 int mode; local
165 mode = fcntl(this->fd, F_GETFL, NULL);
166 if (mode == -1) {
174 OK(fcntl(this->fd, F_SETFL, mode & ~PORT_NONBLOCK));

Completed in 114 milliseconds

1234567891011>>