Home
last modified time | relevance | path

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

/external/valgrind/main/coregrind/
Dvgdb.c933 int last_command, in standalone_send_commands() argument
965 for (nc = 0; nc <= last_command; nc++) { in standalone_send_commands()
1326 int last_command = -1; in parse_options() local
1376 last_command++; in parse_options()
1377 commands[last_command] = vmalloc (1); in parse_options()
1378 commands[last_command][0] = '\0'; in parse_options()
1384 if (last_command == -1) { in parse_options()
1386 last_command++; in parse_options()
1387 commands[last_command] = vmalloc (1); in parse_options()
1388 commands[last_command][0] = '\0'; in parse_options()
[all …]
/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.h81 int last_command; member
/external/chromium_org/chrome/browser/ui/views/
Dmenu_item_view_interactive_uitest.cc48 ASSERT_EQ(INDEX + 1, last_command()); in Step2()
112 ASSERT_EQ(1000, last_command()); in Step2()
114 ASSERT_EQ(SELECT_INDEX + 1, last_command()); in Step2()
116 ASSERT_EQ(SELECT_INDEX, last_command()); in Step2()
247 ASSERT_EQ(SELECT_INDEX + 1, last_command()); in Step2()
249 ASSERT_EQ(SELECT_INDEX + 2, last_command()); in Step2()
Dmenu_controller_test.cc33 ASSERT_EQ(EXPECTED_COMMAND, last_command()); in Step2()
Dmenu_controller_interactive_uitest.cc33 ASSERT_EQ(EXPECTED_COMMAND, last_command()); in Step2()
Dmenu_test_base.h52 int last_command() const { in last_command() function
/external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/layout_tests/port/
Dandroid_unittest.py97 def last_command(self): member in MockAndroidDebugBridge
137 self.assertEquals('adb -s 123456789ABCDEF0 command', self._mock_executive.last_command())
145 …tEquals('adb -s 123456789ABCDEF0 shell ls -d /some_directory', self._mock_executive.last_command())
148 … self.assertEquals('adb -s 123456789ABCDEF0 push foo bar', self._mock_executive.last_command())
151 … self.assertEquals('adb -s 123456789ABCDEF0 pull bar foo', self._mock_executive.last_command())
/external/lldb/examples/python/
Dgdbremote.py884 last_command = None
918 last_command = m.group(1)
919 packet_name = last_command
922 … gdb_remote_commands[last_command]['cmd'](options, last_command, last_command_args)
932 last_command = None
935 elif last_command:
936 … gdb_remote_commands[last_command]['rsp'](options, last_command, last_command_args, contents)