Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(10)

Unified Diff: gdb/ada-varobj.h

Issue 11969036: Merge GDB 7.5.1 (Closed) Base URL: http://git.chromium.org/native_client/nacl-gdb.git@master
Patch Set: Created 7 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « gdb/ada-valprint.c ('k') | gdb/ada-varobj.c » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: gdb/ada-varobj.h
diff --git a/gdb/ada-varobj.h b/gdb/ada-varobj.h
new file mode 100644
index 0000000000000000000000000000000000000000..2ef1a70c174f8fe6e5f9c3a7973fa5cd099635f9
--- /dev/null
+++ b/gdb/ada-varobj.h
@@ -0,0 +1,56 @@
+/* varobj support for Ada.
+
+ Copyright (C) 2012 Free Software Foundation, Inc.
+
+ This file is part of GDB.
+
+ This program is free software; you can redistribute it and/or modify
+ it under the terms of the GNU General Public License as published by
+ the Free Software Foundation; either version 3 of the License, or
+ (at your option) any later version.
+
+ This program is distributed in the hope that it will be useful,
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ GNU General Public License for more details.
+
+ You should have received a copy of the GNU General Public License
+ along with this program. If not, see <http://www.gnu.org/licenses/>. */
+
+#ifndef ADA_VAROBJ_H
+#define ADA_VAROBJ_H
+
+#include "defs.h"
+#include "varobj.h"
+
+struct value;
+struct value_print_options;
+
+extern int ada_varobj_get_number_of_children (struct value *parent_value,
+ struct type *parent_type);
+
+extern char *ada_varobj_get_name_of_child (struct value *parent_value,
+ struct type *parent_type,
+ const char *parent_name,
+ int child_index);
+
+extern char *ada_varobj_get_path_expr_of_child (struct value *parent_value,
+ struct type *parent_type,
+ const char *parent_name,
+ const char *parent_path_expr,
+ int child_index);
+
+extern struct value *ada_varobj_get_value_of_child (struct value *parent_value,
+ struct type *parent_type,
+ const char *parent_name,
+ int child_index);
+
+extern struct type *ada_varobj_get_type_of_child (struct value *parent_value,
+ struct type *parent_type,
+ int child_index);
+
+extern char *ada_varobj_get_value_of_variable
+ (struct value *value, struct type *type,
+ struct value_print_options *opts);
+
+#endif /* ADA_VAROBJ_H */
« no previous file with comments | « gdb/ada-valprint.c ('k') | gdb/ada-varobj.c » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698