OpenGrok
Home
Sort by:
relevance
|
last modified time
|
path
Full Search
in project(s):
src
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:shellparam
(Results
1 - 5
of
5
) sorted by relevancy
/src/bin/sh/
options.c
70
struct shparam
shellparam
; /* current positional parameters */
variable in typeref:struct:shparam
158
shellparam
.p = argptr;
159
shellparam
.reset = 1;
160
/* assert(
shellparam
.malloc == 0 &&
shellparam
.nparam == 0); */
162
shellparam
.nparam++;
392
freeparam(&
shellparam
);
393
shellparam
.malloc = 1;
394
shellparam
.nparam = nparam;
395
shellparam
.p = newparam
[
all
...]
options.h
62
extern struct shparam
shellparam
; /* $@ */
eval.c
1233
saveparam =
shellparam
;
1234
shellparam
.malloc = 0;
1235
shellparam
.reset = 1;
1236
shellparam
.nparam = argc - 1;
1237
shellparam
.p = argv + 1;
1238
shellparam
.optnext = NULL;
1250
freeparam(&
shellparam
);
1251
shellparam
= saveparam;
1295
freeparam(&
shellparam
);
1296
shellparam
= saveparam
[
all
...]
expand.c
1017
if (*var == '@' &&
shellparam
.nparam != 1)
1161
if (*
shellparam
.p == NULL)
1167
for (av =
shellparam
.p; *av; av++)
1186
else if (num >
shellparam
.nparam)
1189
ap =
shellparam
.p[num - 1];
1246
num =
shellparam
.nparam;
1261
shellparam
.nparam));
1264
if (
shellparam
.nparam == 0 &&
1269
if (
shellparam
.nparam == 0)
1272
for (ap =
shellparam
.p ; (p = *ap++) != NULL ; )
[
all
...]
var.c
574
if (
shellparam
.nparam == 0)
Completed in 29 milliseconds
Indexes created Thu Oct 02 07:10:07 GMT 2025