Lines Matching defs:cpp
83 char **cpp = (char **)*stackp;
92 if ((error = copyout(&argc, cpp++, sizeof(argc))) != 0)
96 cpp += 2;
97 if ((error = copyout(&cpp, &stk[1], sizeof (cpp))) != 0)
100 dp = (char *) (cpp + argc + envc + 2);
104 arginfo->ps_argvstr = cpp; /* remember location of argv for later */
107 if ((error = copyout(&dp, cpp++, sizeof(dp))) != 0 ||
111 if ((error = copyout(&nullp, cpp++, sizeof(nullp))) != 0)
114 if ((error = copyout(&cpp, &stk[2], sizeof (cpp))) != 0)
117 arginfo->ps_envstr = cpp; /* remember location of envp for later */
120 if ((error = copyout(&dp, cpp++, sizeof(dp))) != 0 ||
124 if ((error = copyout(&nullp, cpp++, sizeof(nullp))) != 0)
127 *stackp = (char *)cpp;