Searched defs:save (Results 26 - 50 of 56) sorted by relevance

123

/osnet-11/usr/src/lib/libshell/common/sh/
H A Dnvtree.c152 struct nvdir *save, *dp = new_of(struct nvdir,len+1); local
237 if(!(save = new_of(struct nvdir,0)))
239 *save = *dp;
240 dp->prev = save;
279 register struct nvdir *save, *dp = (struct nvdir*)dir; local
330 for(save=dp; save; save=save->prev)
332 if(save
[all...]
H A Dsubshell.c67 struct Link *svar; /* save shell variable table */
76 Shopt_t options;/* save shell options */
81 void *jobs; /* save job info */
117 /* save file descriptor 1 if open */
245 int save; local
290 save = shp->subshell;
296 shp->subshell = save;
307 const char *save = sp->shpwd; local
310 sp->shpwd = 0; /* make sure sh_assignok doesn't save with nv_unset() */
367 sp->shpwd=save;
[all...]
H A Dlex.c1529 struct lexstate save; local
1530 save = lp->lex;
1648 lp->lex = save;
H A Dnvtype.c368 int save, offset=staktell(); local
429 save = fp->nofree;
432 fp->nofree = save;
1058 /* need to save the string pointer */
H A Dpath.c121 /* system call so we can save us to call access(2) first */
364 char save[8]; local
374 memcpy((void*)save, (void*)stakptr(PATH_OFFSET+pcomp.len),sizeof(save));
377 memcpy((void*)stakptr(PATH_OFFSET+pcomp.len),(void*)save,sizeof(save));
1027 /* save original pathname */
1039 char save[PATH_MAX+1]; local
1051 memcpy(save, path, r);
1065 memcpy(path, save,
[all...]
H A Dio.c488 int save = errno; local
493 errno = save;
1298 sh_iosave(shp,toclose,indx,(char*)0); /* save file descriptor */
1586 /* close stream outfile, but save file descriptor */
1609 * copy file <origfd> into a save place
1619 /* see if already saved, only save once */
H A Dmacro.c274 Fcin_t save; local
285 fcsave(&save);
331 fcrestore(&save);
902 * save line offsets in the offsets array.
2000 Fcin_t save; local
2025 fcsave(&save);
2044 fcrestore(&save);
2063 /* disable verbose and don't save in history file */
2078 fcsave(&save);
2109 fcrestore(&save);
2562 Sfio_t *iop, *save=sfstdout; local
[all...]
/osnet-11/usr/src/lib/libnsl/dial/
H A Dconn.c352 getProto(char *save, char *str) argument
356 *save = NULLCHAR;
359 (void) strcpy(save, p+1);
360 DEBUG(7, "Protocol = %s\n", save);
/osnet-11/usr/src/lib/krb5/kadm5/srv/
H A Dserver_acl.c318 char *sp = NULL, *tp, *ap, *save;
335 for (tp = strtok_r(sp, delims, &save); tp;
336 tp = strtok_r(NULL, delims, &save)) {
352 if (!(ap = strtok_r(NULL, delims, &save))) {
315 char *sp = NULL, *tp, *ap, *save; local
/osnet-11/usr/src/cmd/sendmail/src/
H A Dheaders.c49 ** DOCHOMPHEADER -- process and save a header line.
56 ** hdrp -- a pointer to the place to save the header.
455 ** CHOMPHEADER -- process and save a header line.
463 ** hdrp -- a pointer to the place to save the header.
906 /* save the message-id for logging */
2274 char save = *end; local
2307 *end = save;
2316 *end = save;
H A Ddeliver.c600 /* save id for future use */
613 /* save id for future use */
620 /* and save qid for reacquisition */
5072 ** is used implicitly to save messages in ~/dead.letter. We
5075 ** to create another process plus some pipes to save the message.
5430 char save; local
5432 save = *realfile;
5442 *realfile = save;
/osnet-11/usr/src/cmd/perl/5.8.4/distrib/lib/
H A Dperl5db.pl125 bit-pattern, we can save and restore it easily (it will just look like
516 Next we need to handle C<$@> without getting confused. We save C<$@> in a
517 local lexical, localize C<$saved[0]> (which is where C<save()> will put
518 C<$@>), and then call C<save()> to capture C<$@>, C<$!>, C<$^E>, C<$,>,
617 # Evaluate and save any results.
634 eval { &DB::save };
906 # + Added command to save all debugger commands for sourcing later.
954 # used to save @ARGV and extract any debugger-related flags.
1018 Second, C<optionVars> lists the variables that each option uses to save its
1146 then call the C<pager()> function to save th
5110 sub save { subroutine
[all...]
H A DCGI.pm781 @QUERY_PARAM = $self->param; # save list of parameters
1402 #### Method: save
1406 'save' => <<'END_OF_FUNC',
1407 sub save { subroutine
1430 # An alias for save() that is a better name for exportation.
1436 return save(to_filehandle($fh));
3642 # if this is an multipart/mixed attachment, save the header
4375 server. You can modify the objects, save them to a file or database
4378 independent of the others, this allows you to save the state of the
4541 of file is created by the save() metho
[all...]
/osnet-11/usr/src/lib/lvm/libmeta/common/
H A Dmeta_nameinfo.c685 /* save partno */
814 int save = errno; local
817 if (save == ENOTTY) {
820 (void) mdsyserror(ep, save, rname);
H A Dmeta_name.c1424 * UNKNOWN, save all the found devices in rname_list
1857 int save = errno; local
1859 if (save == ENOTTY)
1862 (void) mdsyserror(ep, save, rname);
3455 /* save hspname and number */
/osnet-11/usr/src/lib/libresolv2/common/resolv/
H A Dres_send.c1150 int save = errno; local
1167 errno = save;
1172 int save = errno; local
1177 errno = save;
/osnet-11/usr/src/cmd/perl/5.8.4/distrib/
H A Dhv.c1961 const char *save = str; local
1973 if (str != save)
2040 const char *save = str; local
2055 if (str != save)
H A Dmg.c1160 sigset_t set, save; local
1165 sigprocmask(SIG_BLOCK, &set, &save);
1167 save_sv = newSVpv((char *)(&save), sizeof(sigset_t));
1285 sigset_t set, save; local
1314 sigprocmask(SIG_BLOCK, &set, &save);
1316 save_sv = newSVpv((char *)(&save), sizeof(sigset_t));
2580 PL_savestack_ix += 5; /* Protect save in progress. */
2646 PL_savestack_ix -= 8; /* Unprotect save in progress. */
2710 PL_savestack_ix -= 5; /* Unprotect save in progress. */
H A Dpp_sys.c1357 STRLEN save = SvCUR(PL_formtarget); local
1360 SvCUR_set(PL_formtarget, save);
3652 /* Need to save/restore 'PL_rs' ?? */
4115 Sigsave_t ihand,qhand; /* place to save signals during system() */
H A Dutf8.c736 U8 *save = s; local
750 d = s = save;
757 *len = d - save;
758 return save;
/osnet-11/usr/src/lib/libast/common/regex/
H A Dregnexec.c234 regmatch_t save[1]; member in struct:__anon1182
238 #define matchcopy(e,x) do if ((x)->re.group.number) { Match_frame_t* fp = (void*)stkframe(stkstd)->data; memcpy(fp->match, fp->save, fp->size); } while (0)
239 #define matchpop(e,x) do if ((x)->re.group.number) { Match_frame_t* fp = (void*)stkframe(stkstd)->data; memcpy(fp->match, fp->save, fp->size); stkpop(stkstd); } while (0)
266 s = f->save;
/osnet-11/usr/src/lib/pkcs11/pkcs11_kms/common/
H A DkmsKeystoreUtil.c167 char save, *e; local
171 save = *s;
174 *s = save;
/osnet-11/usr/src/lib/libshell/common/edit/
H A Dedit.c188 /* save terminal settings if in cannonical state */
1741 int i,last=0,save[2]; local
1745 if(!ep->e_lookahead && sfpkrd(ep->e_fd,save,1,'\r',200L,-1)>0)
1746 ed_ungetchar(ep,save[0]);
1767 save[0] = mp->data[last-1];
1768 save[1] = mp->data[last];
1779 mp->data[last-1] = save[0];
1780 mp->data[last] = save[1];
/osnet-11/usr/src/lib/gss_mechs/mech_krb5/krb5/asn.1/
H A Dasn1_k_decode.c1489 { char *save, *end; local
1495 save = subbuf.next;
1500 alloclen = end - save;
1505 memcpy(val->sam_challenge_2_body.data, save, alloclen);
/osnet-11/usr/src/lib/libast/common/misc/
H A Doptget.c806 * save ap+bp+cp and return the saved pointer
810 save(const char* ap, size_t az, const char* bp, size_t bz, const char* cp, size_t cz) function
1068 p->id = save(s, t - s, 0, 0, 0, 0);
1070 p->id = save(p->id, strlen(p->id), "::", 2, s, t - s);
1090 p->id = save(p->id, strlen(p->id), 0, 0, 0, 0);
1092 p->catalog = ((t = strchr(s, ']')) && (!p->id || (t - s) != strlen(p->id) || !strneq(s, p->id, t - s))) ? save(s, t - s, 0, 0, 0, 0) : (char*)0;
4289 if (argv[0] && (state.argv[0] = save(argv[0], strlen(argv[0]), 0, 0, 0, 0)))

Completed in 165 milliseconds

123