• Home
  • History
  • Annotate
  • Raw
  • Download
  • only in /asuswrt-rt-n18u-9.0.0.4.380.2695/release/src/router/usb-modeswitch-2.2.3/jim/

Lines Matching defs:commands

1298 ** - [commands brackets] are counted/nested
1304 ** - [commands brackets] are counted/nested
2488 * for implementation of commands like [string range] and [lrange].
2994 * by commands operating on it. */
3503 if (Jim_DeleteHashEntry(&interp->commands, cmdName) != JIM_ERR) {
3517 Jim_AddHashEntry(&interp->commands, cmdName, cmdPtr);
3521 * cached commands. We don't do negative caching. */
3672 he = Jim_FindHashEntry(&interp->commands, Jim_String(cmdName));
3679 * can never affect existing cached commands. We don't do
3692 Jim_DeleteHashEntry(&interp->commands, Jim_String(cmdName));
3695 Jim_AddHashEntry(&interp->commands, Jim_String(cmdName), cmdPtr);
3715 if (Jim_DeleteHashEntry(&interp->commands, cmdName) == JIM_ERR)
3726 he = Jim_FindHashEntry(&interp->commands, oldName);
3737 if (Jim_FindHashEntry(&interp->commands, newName)) {
3744 Jim_AddHashEntry(&interp->commands, newName, he->u.val);
3747 Jim_DeleteHashEntry(&interp->commands, oldName);
3775 /* Lookup this name into the commands hash table */
3776 he = Jim_FindHashEntry(&interp->commands, cmdName);
4958 Jim_InitHashTable(&i->commands, &JimCommandsHashTableType, i);
5013 Jim_FreeHashTable(&i->commands);
5078 * of the commands [uplevel] and [upvar].
5849 /* Sorting uses ints, but commands may return wide */
8390 /* Only commands need source info */
9709 Jim_HashEntry *he = Jim_FindHashEntry(&interp->commands, procname);
9723 Jim_AddHashEntry(&interp->commands, procname, prevCmd);
10612 /* Performs commands,variables,blackslashes substitution,
10635 * Core commands utility functions
10655 /* type is: 0=commands, 1=procs, 2=channels */
10679 htiter = Jim_GetHashTableIterator(&interp->commands);
10770 * Core commands
12482 if (Jim_FindHashEntry(&interp->commands, procname) == NULL) {
13461 static const char * const commands[] = {
13462 "body", "commands", "procs", "channels", "exists", "globals", "level", "frame", "locals",
13478 if (Jim_GetEnum(interp, argv[1], commands, &cmd, "subcommand", JIM_ERRMSG | JIM_ENUM_ABBREV)
13483 /* Test for the the most common commands first, just in case it makes a difference */
13710 /* Test for the the most common commands first, just in case it makes a difference */