Searched refs:pv (Results 1 - 9 of 9) sorted by relevance

/ast/src/lib/libtksh/tcl/
H A DtclExpr.c59 ParseValue pv; /* Used to hold a string value, if any. */ member in struct:__anon435
335 * Caller must have initialized pv field. */
402 if (string != valuePtr->pv.buffer) {
406 valuePtr->pv.next = valuePtr->pv.buffer;
407 shortfall = length - (valuePtr->pv.end - valuePtr->pv.buffer);
409 (*valuePtr->pv.expandProc)(&valuePtr->pv, shortfall);
411 strcpy(valuePtr->pv
[all...]
H A DtclParse.c1273 ParseValue pv;
1329 pv.buffer = pv.next = copyStorage;
1330 pv.end = copyStorage + NUM_CHARS - 1;
1331 pv.expandProc = TclExpandParseValue;
1332 pv.clientData = (ClientData) NULL;
1333 if (TclParseQuotes(interp, string+1, ')', 0, &end, &pv)
1346 name2 = pv.buffer;
1354 name2 = pv.buffer;
1370 if ((name2 != NULL) && (pv
1262 ParseValue pv; local
[all...]
/ast/src/lib/libtksh/src/
H A Dtcleval.c107 ParseValue pv; local
168 pv.buffer = copyStorage;
169 pv.end = copyStorage + NUM_CHARS - 1;
170 pv.expandProc = TclExpandParseValue;
171 pv.clientData = (ClientData) NULL;
239 pv.next = oldBuffer = pv.buffer;
256 maxArgs, &termPtr, &newArgs, &argv[argc], &pv);
269 if (oldBuffer != pv.buffer) {
273 argv[i] = pv
[all...]
/ast/src/cmd/ksh93/sh/
H A Dio.c888 int sh_pipe(register int pv[]) argument
892 if(pipe(fd)<0 || (pv[0]=fd[0])<0 || (pv[1]=fd[1])<0)
894 pv[0] = sh_iomovefd(pv[0]);
895 pv[1] = sh_iomovefd(pv[1]);
896 shp->fdstatus[pv[0]] = IONOSEEK|IOREAD;
897 shp->fdstatus[pv[1]] = IONOSEEK|IOWRITE;
898 sh_subsavefd(pv[
904 sh_rpipe(register int pv[]) argument
911 sh_rpipe(register int pv[]) argument
928 sh_coaccept(Shell_t *shp,int *pv,int out) argument
950 sh_copipe(Shell_t *shp, int *pv, int out) argument
1063 sh_pclose(register int pv[]) argument
[all...]
H A Dsuid_exec.c367 int pv[2]; local
395 if(pipe(pv) < 0)
400 close(pv[1]);
407 read(pv[0],pv,1); /* wait for clone to close pipe */
447 close(pv[0]);
449 if(pv[1] != FDSYNC)
452 if(fcntl(pv[1],F_DUPFD,FDSYNC) != FDSYNC)
H A Dargs.c785 int monitor, fd, pv[3]; local
795 pv[2] = 0;
796 sh_pipe(pv);
798 pv[0] = -1;
803 sfputr(shp->stk,fmtbase((long)pv[fd],10,0),0);
811 shp->inpipe = pv;
816 shp->outpipe = pv;
823 close(pv[1-fd]);
824 sh_iosave(shp,-pv[fd], shp->topfd, (char*)0);
/ast/src/lib/libpz/
H A Dpzpart.c1036 array(register Pz_t* pz, Pzpart_t* pp, size_t** pv, size_t* pn, size_t check) argument
1045 if (pv)
1049 else if (!(v = vmnewof(pz->vm, *pv, size_t, VECTOR(pz, pp, n), 0)))
1051 *pv = v;
1077 buffer(register Pz_t* pz, Pzpart_t* pp, char** pv, size_t* pn) argument
1088 if (pv)
1090 if (!(v = vmnewof(pz->vm, *pv, char, n, 0)))
1092 *pv = v;
/ast/src/cmd/nmake/
H A Dstate.c101 stateview(int op, char* name, register Rule_t* s, register Rule_t* r, int view, int accept, Rule_t** pv) argument
107 if (pv)
108 *pv = 0;
171 if (pv)
172 *pv = v;
/ast/src/lib/libdss/
H A Dcxopen.c50 match_string_comp(Cx_t* cx, Cxtype_t* st, Cxtype_t* pt, Cxvalue_t* pv, Cxdisc_t* disc) argument
67 if (regcomp(re, pv->string.data, REG_AUGMENTED|REG_DISCIPLINE))

Completed in 34 milliseconds