Searched defs:script (Results 1 - 16 of 16) sorted by relevance

/osnet-11/usr/src/grub/grub2/include/grub/
H A Dextcmd.h54 struct grub_script *script; member in struct:grub_extcmd_context
77 struct grub_script *script);
H A Dscript_sh.h71 struct grub_script *script;
82 struct grub_script *script;
291 struct grub_script *grub_script_parse (char *script,
293 void grub_script_free (struct grub_script *script);
298 char *script,
327 /* Execute any GRUB pre-parsed command or script. */
328 grub_err_t grub_script_execute (struct grub_script *script);
334 /* SHIFT command for GRUB script. */
337 /* SETPARAMS command for GRUB script functions. */
356 /* The script functio
70 struct grub_script *script; member in struct:grub_script_arg
81 struct grub_script *script; member in struct:grub_script_argv
387 grub_script_ref(struct grub_script *script) argument
395 grub_script_unref(struct grub_script *script) argument
[all...]
/osnet-11/usr/src/grub/grub-0.97/stage2/
H A Dcmdline.c181 /* Run an entry from the script SCRIPT. HEAP is used for the
185 run_script (char *script, char *heap) argument
188 char *cur_entry = script;
/osnet-11/usr/src/grub/grub2/grub-core/commands/
H A Dextcmd.c31 struct grub_script *script)
42 context.script = script;
30 grub_extcmd_dispatcher(struct grub_command *cmd, int argc, char **args, struct grub_script *script) argument
/osnet-11/usr/src/grub/grub2/grub-core/script/
H A Dparser.y84 %type <cmd> script_init script
96 script_init: { state->err = 0; } script { state->parsed = $2; state->err = 0; }
99 script: newlines0 label
103 | script statement delimiter newlines0
158 later use, so script framework may not free the grub_script
197 if (! $$ || ! ($$->script = grub_script_create ($3, memory)))
201 /* attach nested scripts to $$->script as children */
202 $$->script->children = state->scripts;
204 /* restore old scripts; append $$->script to siblings. */
205 state->scripts = $<scripts>2 ?: $$->script;
[all...]
H A Dlexer.c210 grub_script_lexer_init (struct grub_parser_param *parser, char *script, argument
238 if (grub_script_lexer_yywrap (parser, script ?: "\n"))
H A Dscript.c0 /* script.c -- Functions to create an in memory description of the script. */
28 to the parsed script when parsing was successful.
95 grub_script_free (struct grub_script *script) argument
100 if (! script)
103 if (script->mem)
104 grub_script_mem_free (script->mem);
106 s = script->children;
112 grub_free (script);
135 argpart->script
343 grub_script_parse(char *script, grub_reader_getline_t getline) argument
[all...]
H A Dexecute.c1 /* execute.c -- Execute a GRUB script. */
43 /* Scope for grub script functions. */
52 /* Wildcard translator for GRUB script. */
375 result.script = arg->script;
496 /* Execute a source script. */
634 ret = grub_extcmd_dispatcher (grubcmd, argc, args, argv.script);
786 /* Execute any GRUB pre-parsed command or script. */
788 grub_script_execute (struct grub_script *script) argument
790 if (script
[all...]
/osnet-11/usr/src/grub/grub2/util/
H A Dgrub-script-check.c1 /* grub-script-check.c - check grub script file for syntax errors */
61 Checks GRUB script configuration file for syntax errors.\n\
65 -v, --verbose print the script as it is being processed\n\
82 struct grub_script *script = NULL; local
184 script = grub_script_parse (input, get_config_line);
185 if (script)
187 grub_script_execute (script);
188 grub_script_free (script);
192 } while (script !
[all...]
H A Dmisc.c232 grub_script_execute (struct grub_script *script) argument
234 if (script == 0 || script->cmd == 0)
237 return script->cmd->exec (script->cmd);
/osnet-11/usr/src/lib/libshell/common/bltins/
H A Dmisc.c209 register char *script; local
230 script = *argv;
231 if(error_info.errors || !script)
234 errormsg(SH_DICT,ERROR_exit(1),e_toodeep,script);
238 np = nv_search(script,shp->fun_tree,0);
243 path_search(shp,script,NIL(Pathcomp_t**),0);
250 errormsg(SH_DICT,ERROR_exit(1),e_found,script);
257 if((fd=path_open(shp,script,path_get(shp,script))) < 0)
258 errormsg(SH_DICT,ERROR_system(1),e_open,script);
[all...]
/osnet-11/usr/src/grub/grub2/
H A Dgentpl.py4 # This is the python script used to generate Makefile.tpl
510 def script(platform): function
561 return rules("script", script)
/osnet-11/usr/src/lib/libxcurses/src/libc/xcurses/
H A Ddoupdate.c100 STATIC void script(int, int);
726 * Build edit script.
729 * and replaces on individual lines. Instead we build the script so that
734 * Also we can optimize the script so that tail inserts become replaces.
739 script(fr, lr) function
828 script(fr, lr);
905 * lines instead of performing usual cost/script operations.
/osnet-11/usr/src/lib/libshell/common/include/
H A Dshlex.h57 unsigned long script; /* script entity number */ member in struct:_shlex_
58 unsigned long fscript; /* script file entity number */
62 char *scriptname; /* name of script file */
/osnet-11/usr/src/grub/grub2/grub-core/normal/
H A Dmenu_entry.c1167 char *script; local
1213 /* Execute the script, line for line. */
1214 script = editor_getsource ();
1215 if (! script)
1217 grub_script_execute_sourcecode (script, 0, dummy);
1218 grub_free (script);
/osnet-11/usr/src/lib/libxcurses2/src/libc/xcurses/
H A Ddoupdate.c100 static void script(int, int);
856 * Build edit script.
859 * and replaces on individual lines. Instead we build the script so that
864 * Also we can optimize the script so that tail inserts become replaces.
869 script(int fr, int lr) function
958 script(fr, lr);
1049 * lines instead of performing usual cost/script operations.

Completed in 43 milliseconds