| /onnv/onnv-gate/usr/src/lib/libshell/common/include/ |
| variables.h | 30 #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.bltin_nodes+9 [all...] |
| builtins.h | 29 #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.bltin_cmds+10 [all...] |
| /onnv/onnv-gate/usr/src/lib/libshell/ |
| Makefile.demo | 58 src/cpvprint.sh \ 59 src/crawlsrccomments.sh \ 60 src/filemutexdemo1.sh \ 61 src/filetree1.sh \ 62 src/gnaw.sh \ 63 src/mandelbrotset1.sh \ 64 src/multifollow.sh \ 65 src/numtree1.sh \ 66 src/primenumbers1.sh \ 67 src/rssread.sh \ [all...] |
| Makefile.com | 69 sh/args.o \ 70 sh/arith.o \ 71 sh/array.o \ 72 sh/defs.o \ 73 sh/deparse.o \ 74 sh/expand.o \ 75 sh/fault.o \ 76 sh/fcin.o \ 77 sh/init.o \ 78 sh/io.o [all...] |
| /onnv/onnv-gate/usr/src/lib/libast/common/comp/ |
| system.c | 46 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);
|
| /onnv/onnv-gate/usr/src/lib/libsys/ |
| Makefile.targ | 28 $(COMSRC): ../common/libsys.sh libsys.list 29 sh ../common/libsys.sh 31 $(MACHSRC): libsys.sh libsyss.list 32 sh ./libsys.sh
|
| /onnv/onnv-gate/usr/src/lib/libast/common/path/ |
| pathshell.c | 44 * astconf("SH",NiL,NiL) is returned by default 53 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)") [all...] |
| /onnv/onnv-gate/usr/src/cmd/csh/sparc/ |
| Makefile | 28 CPPFLAGS += -I../../sh 37 HDDEP = sh.o sh.dir.o sh.dol.o sh.err.o sh.exec.o sh.exp.o sh.file.o \ 38 sh.func.o sh.glob.o sh.hist.o sh.init.o sh.lex.o sh.misc.o [all...] |
| /onnv/onnv-gate/usr/src/cmd/csh/ |
| Makefile | 27 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.file.o sh.func.o sh.glob.o sh.hist.o [all...] |
| /onnv/onnv-gate/usr/src/cmd/csh/i386/ |
| Makefile | 28 CPPFLAGS += -I../../sh 37 HDDEP = sh.o sh.dir.o sh.dol.o sh.err.o sh.exec.o sh.exp.o sh.file.o \ 38 sh.func.o sh.glob.o sh.hist.o sh.init.o sh.lex.o sh.misc.o [all...] |
| /onnv/onnv-gate/usr/src/lib/libc/port/sys/ |
| sharefs.c | 46 _sharefs(enum sharefs_sys_op opcode, struct share *sh) 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->sh_size += j [all...] |
| /onnv/onnv-gate/usr/src/cmd/fs.d/nfs/lib/ |
| sharetab.c | 61 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->sh_fstype = (char *)strtok_r(NULL, w, &lasts) [all...] |
| /onnv/onnv-gate/usr/src/cmd/rexd/ |
| sharetab.c | 64 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->sh_fstype = strtok(NULL, w) [all...] |
| /onnv/onnv-gate/usr/src/cmd/svc/shell/ |
| Makefile | 29 fs_include.sh \ 30 ipf_include.sh \ 31 net_include.sh \ 32 routing_include.sh \ 33 sendmail_include.sh \ 34 smf_include.sh \
|
| /onnv/onnv-gate/usr/src/lib/libshell/common/sh/ |
| defs.c | 32 Shell_t sh = {0}; variable 34 Shell_t *_imp__sh = &sh;
|
| waitevent.c | 34 old = sh.waitevent; 35 sh.waitevent = newevent;
|
| /onnv/onnv-gate/usr/src/pkgdefs/SUNWscmr/ |
| postinstall | 1 #!/sbin/sh 29 PATH=usr/sadm/bin:/usr/bin:/usr/sbin:/sbin/sh 38 sh $UPGR_SCRIPT &
|
| /onnv/onnv-gate/usr/src/cmd/fs.d/nfs/nfsfind/ |
| Makefile | 28 SRCS= nfsfind.sh
|
| /onnv/onnv-gate/usr/src/lib/scsi/libses/ |
| Makefile.targ | 34 ../common/ses_errno.c: ../common/mkerrno.sh ../common/libses.h 35 sh ../common/mkerrno.sh < $(ROOTSCSIHDRDIR)/libses.h > $@
|
| /onnv/onnv-gate/usr/src/lib/scsi/plugins/ses/libses/ |
| Makefile.com | 38 ../common/libses_elemtype.c: ../common/mkelemtype.sh $(SES2HDR) 39 sh ../common/mkelemtype.sh < $(SES2HDR) > $@
|
| /onnv/onnv-gate/usr/src/cmd/perl/5.8.4/ |
| Makefile | 43 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 > distrib/ext/Makefil [all...] |
| /onnv/onnv-gate/usr/src/lib/abi/apptrace/amd64/ |
| Makefile | 32 SUPPRESS_LIBS:sh= if test -z "`isainfo | grep amd64`"; then echo \\043; fi macro
|
| /onnv/onnv-gate/usr/src/uts/common/fs/sharefs/ |
| sharetab.c | 63 sh->sh_##field = kmem_alloc(len + 1, KM_SLEEP); \ 64 bcopy(buf, sh->sh_##field, len); \ 65 sh->sh_##field[len] = '\0'; \ 67 sh->sh_size += shl.shl_##field; /* Debug counting */ 70 if (sh->sh_##field) { \ 71 kmem_free(sh->sh_##field, \ 73 strlen(sh->sh_##field) + 1); \ 125 sharefree(share_t *sh, sharefs_lens_t *shl) 127 if (!sh) 136 kmem_free(sh, sizeof (share_t)) 369 share_t *sh; local [all...] |
| /onnv/onnv-gate/usr/src/lib/libadt_jni/com/sun/audit/ |
| AuditSession.java | 74 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...] |
| /onnv/onnv-gate/usr/src/cmd/calendar/ |
| Makefile | 38 $(SHFILES): $(SHFILES).sh 40 $(CP) $(SHFILES).sh $(SHFILES)
|