Searched refs:sh (Results 1 - 25 of 559) sorted by relevance

1234567891011>>

/opensolaris-onvv-gate/usr/src/lib/libshell/common/include/
H A Dvariables.h30 #define PATHNOD (sh.bltin_nodes)
31 #define PS1NOD (sh.bltin_nodes+1)
32 #define PS2NOD (sh.bltin_nodes+2)
33 #define IFSNOD (sh.bltin_nodes+3)
34 #define PWDNOD (sh.bltin_nodes+4)
35 #define HOME (sh.bltin_nodes+5)
36 #define MAILNOD (sh.bltin_nodes+6)
37 #define REPLYNOD (sh.bltin_nodes+7)
38 #define SHELLNOD (sh.bltin_nodes+8)
39 #define EDITNOD (sh
[all...]
H A Dbuiltins.h29 #define SYSLOGIN (sh.bltin_cmds)
30 #define SYSEXEC (sh.bltin_cmds+1)
31 #define SYSSET (sh.bltin_cmds+2)
32 #define SYSTRUE (sh.bltin_cmds+4)
33 #define SYSCOMMAND (sh.bltin_cmds+5)
34 #define SYSCD (sh.bltin_cmds+6)
35 #define SYSBREAK (sh.bltin_cmds+7)
36 #define SYSCONT (sh.bltin_cmds+8)
37 #define SYSTYPESET (sh.bltin_cmds+9)
38 #define SYSTEST (sh
[all...]
/opensolaris-onvv-gate/usr/src/lib/libshell/
H A DMakefile.demo57 src/cpvprint.sh \
58 src/crawlsrccomments.sh \
59 src/filemutexdemo1.sh \
60 src/filetree1.sh \
61 src/gnaw.sh \
62 src/mandelbrotset1.sh \
63 src/multifollow.sh \
64 src/numtree1.sh \
65 src/primenumbers1.sh \
66 src/rssread.sh \
[all...]
H A DMakefile.com68 sh/args.o \
69 sh/arith.o \
70 sh/array.o \
71 sh/defs.o \
72 sh/deparse.o \
73 sh/expand.o \
74 sh/fault.o \
75 sh/fcin.o \
76 sh/init.o \
77 sh/i
[all...]
/opensolaris-onvv-gate/usr/src/cmd/csh/i386/
H A DMakefile23 CPPFLAGS += -I../../sh
30 HDDEP = sh.o sh.dir.o sh.dol.o sh.err.o sh.exec.o sh.exp.o sh.file.o \
31 sh.func.o sh
[all...]
/opensolaris-onvv-gate/usr/src/cmd/csh/sparc/
H A DMakefile23 CPPFLAGS += -I../../sh
32 HDDEP = sh.o sh.dir.o sh.dol.o sh.err.o sh.exec.o sh.exp.o sh.file.o \
33 sh.func.o sh
[all...]
/opensolaris-onvv-gate/usr/src/lib/libast/common/comp/
H A Dsystem.c46 char* sh[4]; local
50 sh[0] = "sh";
51 sh[1] = "-c";
52 sh[2] = (char*)cmd;
53 sh[3] = 0;
54 return procrun(NiL, sh, 0);
/opensolaris-onvv-gate/usr/src/lib/libsys/
H A DMakefile.targ28 $(COMSRC): ../common/libsys.sh libsys.list
29 sh ../common/libsys.sh
31 $(MACHSRC): libsys.sh libsyss.list
32 sh ./libsys.sh
/opensolaris-onvv-gate/usr/src/lib/libast/common/path/
H A Dpathshell.c53 register char* sh; local
62 if ((sh = getenv("SHELL")) && *sh == '/' && strmatch(sh, "*/(sh|*[!cC]sh)*([[:digit:]])?(-+([.[:alnum:]]))?(.exe)"))
66 if (stat(sh, &st))
68 if (ru != st.st_uid && !strmatch(sh, "?(/usr)?(/local)/?([ls])bin/?([[:lower:]])sh?(.exe)"))
81 s = sh;
[all...]
/opensolaris-onvv-gate/usr/src/cmd/csh/
H A DMakefile27 CLOBBERFILES += sh.tconst.h
28 CLEANFILES += sh.tconst.h
37 sh.o sh.char.o \
38 sh.dir.o sh.dol.o sh.err.o sh.exec.o sh.exp.o\
39 sh
[all...]
/opensolaris-onvv-gate/usr/src/lib/libc/port/sys/
H A Dsharefs.c46 _sharefs(enum sharefs_sys_op opcode, struct share *sh) argument
56 i = (sh->sh_path ? strlen(sh->sh_path) : 0);
57 sh->sh_size = i;
59 j = (sh->sh_res ? strlen(sh->sh_res) : 0);
60 sh->sh_size += j;
63 j = (sh->sh_fstype ? strlen(sh->sh_fstype) : 0);
64 sh
[all...]
/opensolaris-onvv-gate/usr/src/cmd/fs.d/nfs/lib/
H A Dsharetab.c61 static share_t *sh = NULL; local
71 if (sh == NULL) {
72 sh = (share_t *)malloc(sizeof (*sh));
73 if (sh == NULL)
82 sh->sh_path = (char *)strtok_r(p, w, &lasts);
83 if (sh->sh_path == NULL)
85 sh->sh_res = (char *)strtok_r(NULL, w, &lasts);
86 if (sh->sh_res == NULL)
88 sh
103 sharedup(share_t *sh) argument
145 sharefree(share_t *sh) argument
[all...]
/opensolaris-onvv-gate/usr/src/cmd/rexd/
H A Dsharetab.c64 static share_t *sh = NULL; local
73 if (sh == NULL) {
74 sh = (share_t *)malloc(sizeof (*sh));
75 if (sh == NULL)
84 sh->sh_path = strtok(p, w);
85 if (sh->sh_path == NULL)
87 sh->sh_res = strtok(NULL, w);
88 if (sh->sh_res == NULL)
90 sh
105 sharedup(share_t *sh) argument
136 sharefree(share_t *sh) argument
[all...]
/opensolaris-onvv-gate/usr/src/cmd/svc/shell/
H A DMakefile29 fs_include.sh \
30 ipf_include.sh \
31 net_include.sh \
32 routing_include.sh \
33 sendmail_include.sh \
34 smf_include.sh \
/opensolaris-onvv-gate/usr/src/lib/libshell/common/sh/
H A Ddefs.c32 Shell_t sh = {0}; variable
34 Shell_t *_imp__sh = &sh;
H A Dwaitevent.c34 old = sh.waitevent;
35 sh.waitevent = newevent;
/opensolaris-onvv-gate/usr/src/cmd/fs.d/nfs/nfsfind/
H A DMakefile28 SRCS= nfsfind.sh
/opensolaris-onvv-gate/usr/src/lib/scsi/libses/
H A DMakefile.targ34 ../common/ses_errno.c: ../common/mkerrno.sh ../common/libses.h
35 sh ../common/mkerrno.sh < $(ROOTSCSIHDRDIR)/libses.h > $@
/opensolaris-onvv-gate/usr/src/cmd/perl/5.8.4/
H A DMakefile43 MACH_CONFIG_FILES = config.sh
48 # Generated Makefiles, derived from config.sh.
72 # Modify config.sh to refer to the compiler used for the build.
73 distrib/config.sh: $(MACH)/config.sh
74 $(SED) $(SED_CC) $(SED_CC_E) $(MACH)/config.sh > $@
76 Makefile.perlcfg: extract_config $(MACH)/config.sh
77 ./extract_config $(MACH)/config.sh > Makefile.perlcfg
79 distrib/ext/Makefile: extract_makeext $(MACH)/config.sh
80 ./extract_makeext $(MACH)/config.sh > distri
[all...]
/opensolaris-onvv-gate/usr/src/cmd/perl/5.8.4/distrib/lib/
H A Ddotsh.pl35 local(@sh) = @_;
39 $dotsh = shift(@sh);
43 $vars = join ("\n", @sh);
46 $shell = "$1 -c" if ($_ =~ /^\#\!\s*(\S+(\/sh|\/ksh|\/zsh|\/csh))\s*$/);
49 if ($ENV{'SHELL'} =~ /\/sh$|\/ksh$|\/zsh$|\/bash$|\/csh$/) {
52 print "SHELL not recognized!\nUsing /bin/sh...\n";
53 $shell = "/bin/sh -c";
/opensolaris-onvv-gate/usr/src/lib/abi/apptrace/amd64/
H A DMakefile32 SUPPRESS_LIBS:sh= if test -z "`isainfo | grep amd64`"; then echo \\043; fi macro
/opensolaris-onvv-gate/usr/src/uts/common/fs/sharefs/
H A Dsharetab.c60 sh->sh_##field = kmem_alloc(len + 1, KM_SLEEP); \
61 bcopy(buf, sh->sh_##field, len); \
62 sh->sh_##field[len] = '\0'; \
64 sh->sh_size += shl.shl_##field; /* Debug counting */
67 if (sh->sh_##field) { \
68 kmem_free(sh->sh_##field, \
70 strlen(sh->sh_##field) + 1); \
92 sharefree(share_t *sh, sharefs_lens_t *shl) argument
94 if (!sh)
103 kmem_free(sh, sizeo
111 sharefs_remove(share_t *sh, sharefs_lens_t *shl) argument
194 sharefs_add(share_t *sh, sharefs_lens_t *shl) argument
334 share_t *sh; local
[all...]
/opensolaris-onvv-gate/usr/src/lib/libadt_jni/com/sun/audit/
H A DAuditSession.java74 private byte[] sh; // current session handle field in class:AuditSession
91 sh = new byte[8]; // NULL pointer in C
96 sh = startSession(context, 0);
100 sh = new byte[8];
104 sh = new byte[8];
112 // If you think you need this C pointer (sh), see
118 return sh;
126 sessionId = getSessionId(sh);
157 endSession(sh);
174 exportedData = exportSessionData(sh);
[all...]
/opensolaris-onvv-gate/usr/src/cmd/calendar/
H A DMakefile38 $(SHFILES): $(SHFILES).sh
40 $(CP) $(SHFILES).sh $(SHFILES)
/opensolaris-onvv-gate/usr/src/cmd/cmd-inet/usr.lib/vrrpd/
H A Dsvc-vrrp1 #!/sbin/sh
32 . /lib/svc/share/smf_include.sh

Completed in 199 milliseconds

1234567891011>>