Home
last modified time | relevance | path

Searched refs:last_command (Results 1 – 6 of 6) sorted by relevance

/external/e2fsprogs/ext2ed/
Dmain.c373 i<=current_type->type_commands.last_command && !found; in dispatch()
384 for (i=0;i<=ext2_commands.last_command && !found;i++) { in dispatch()
395 for (i=0;i<=general_commands.last_command && !found;i++) { in dispatch()
473 for (i=0;i<=current_type->type_commands.last_command;i++) { in complete_command()
484 for (i=0;i<=ext2_commands.last_command;i++) { in complete_command()
495 for (i=0;i<=general_commands.last_command;i++) { in complete_command()
Dinit.c57 general_commands.last_command=-1; /* No commands whatsoever meanwhile */ in init()
58 ext2_commands.last_command=-1; in init()
177 for (i=0;i<=ptr->last_command;i++) { in free_user_commands()
182 ptr->last_command=-1; in free_user_commands()
205 ptr->type_commands.last_command=-1; in add_new_descriptor()
354 num=ptr->last_command; in add_user_command()
360 ptr->last_command=++num; in add_user_command()
Dgeneral_com.c46 if (current_type->type_commands.last_command==-1) { in help()
50 for (i=0;i<=current_type->type_commands.last_command;i++) { in help()
62 if (ext2_commands.last_command != -1) { in help()
64 for (i=0;i<=ext2_commands.last_command;i++) { in help()
78 for (i=0;i<=general_commands.last_command;i++) { in help()
116 for (i=0;i<=current_type->type_commands.last_command;i++) { in detailed_help()
123 for (i=0;i<=ext2_commands.last_command;i++) { in detailed_help()
130 for (i=0;i<=general_commands.last_command;i++) { in detailed_help()
Dext2ed.h85 int last_command; member
/external/valgrind/main/coregrind/
Dvgdb.c1888 int last_command, in standalone_send_commands() argument
1920 for (nc = 0; nc <= last_command; nc++) { in standalone_send_commands()
2307 int last_command = -1; in parse_options() local
2357 last_command++; in parse_options()
2358 commands[last_command] = vmalloc (1); in parse_options()
2359 commands[last_command][0] = '\0'; in parse_options()
2365 if (last_command == -1) { in parse_options()
2367 last_command++; in parse_options()
2368 commands[last_command] = vmalloc (1); in parse_options()
2369 commands[last_command][0] = '\0'; in parse_options()
[all …]
/external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/layout_tests/port/
Dandroid_unittest.py97 def last_command(self): member in MockAndroidDebugBridge
144 self.assertEquals('adb -s 123456789ABCDEF0 command', self._mock_executive.last_command())
152 …tEquals('adb -s 123456789ABCDEF0 shell ls -d /some_directory', self._mock_executive.last_command())
155 … self.assertEquals('adb -s 123456789ABCDEF0 push foo bar', self._mock_executive.last_command())
158 … self.assertEquals('adb -s 123456789ABCDEF0 pull bar foo', self._mock_executive.last_command())