aboutsummaryrefslogtreecommitdiff
path: root/bfd/libbfd.c
diff options
context:
space:
mode:
Diffstat (limited to 'bfd/libbfd.c')
-rw-r--r--bfd/libbfd.c96
1 files changed, 48 insertions, 48 deletions
diff --git a/bfd/libbfd.c b/bfd/libbfd.c
index 4f3dd5a..9db14c3 100644
--- a/bfd/libbfd.c
+++ b/bfd/libbfd.c
@@ -40,30 +40,30 @@ DESCRIPTION
completeness.
*/
-bfd_boolean
+bool
_bfd_bool_bfd_false (bfd *abfd ATTRIBUTE_UNUSED)
{
- return FALSE;
+ return false;
}
-bfd_boolean
+bool
_bfd_bool_bfd_asymbol_false (bfd *abfd ATTRIBUTE_UNUSED,
asymbol *sym ATTRIBUTE_UNUSED)
{
- return FALSE;
+ return false;
}
/* A routine which is used in target vectors for unsupported
operations. */
-bfd_boolean
+bool
_bfd_bool_bfd_false_error (bfd *ignore ATTRIBUTE_UNUSED)
{
bfd_set_error (bfd_error_invalid_operation);
- return FALSE;
+ return false;
}
-bfd_boolean
+bool
_bfd_bool_bfd_link_false_error (bfd *abfd,
struct bfd_link_info *info ATTRIBUTE_UNUSED)
{
@@ -73,56 +73,56 @@ _bfd_bool_bfd_link_false_error (bfd *abfd,
/* A routine which is used in target vectors for supported operations
which do not actually do anything. */
-bfd_boolean
+bool
_bfd_bool_bfd_true (bfd *ignore ATTRIBUTE_UNUSED)
{
- return TRUE;
+ return true;
}
-bfd_boolean
+bool
_bfd_bool_bfd_link_true (bfd *abfd ATTRIBUTE_UNUSED,
struct bfd_link_info *info ATTRIBUTE_UNUSED)
{
- return TRUE;
+ return true;
}
-bfd_boolean
+bool
_bfd_bool_bfd_bfd_true (bfd *ibfd ATTRIBUTE_UNUSED,
bfd *obfd ATTRIBUTE_UNUSED)
{
- return TRUE;
+ return true;
}
-bfd_boolean
+bool
_bfd_bool_bfd_uint_true (bfd *abfd ATTRIBUTE_UNUSED,
unsigned int flags ATTRIBUTE_UNUSED)
{
- return TRUE;
+ return true;
}
-bfd_boolean
+bool
_bfd_bool_bfd_asection_bfd_asection_true (bfd *ibfd ATTRIBUTE_UNUSED,
asection *isec ATTRIBUTE_UNUSED,
bfd *obfd ATTRIBUTE_UNUSED,
asection *osec ATTRIBUTE_UNUSED)
{
- return TRUE;
+ return true;
}
-bfd_boolean
+bool
_bfd_bool_bfd_asymbol_bfd_asymbol_true (bfd *ibfd ATTRIBUTE_UNUSED,
asymbol *isym ATTRIBUTE_UNUSED,
bfd *obfd ATTRIBUTE_UNUSED,
asymbol *osym ATTRIBUTE_UNUSED)
{
- return TRUE;
+ return true;
}
-bfd_boolean
+bool
_bfd_bool_bfd_ptr_true (bfd *abfd ATTRIBUTE_UNUSED,
void *ptr ATTRIBUTE_UNUSED)
{
- return TRUE;
+ return true;
}
/* A routine which is used in target vectors for unsupported
@@ -206,13 +206,13 @@ _bfd_norelocs_set_reloc (bfd *abfd ATTRIBUTE_UNUSED,
/* Do nothing. */
}
-bfd_boolean
+bool
_bfd_nocore_core_file_matches_executable_p
(bfd *ignore_core_bfd ATTRIBUTE_UNUSED,
bfd *ignore_exec_bfd ATTRIBUTE_UNUSED)
{
bfd_set_error (bfd_error_invalid_operation);
- return FALSE;
+ return false;
}
/* Routine to handle core_file_failing_command entry point for targets
@@ -336,7 +336,7 @@ INTERNAL_FUNCTION
bfd_write_bigendian_4byte_int
SYNOPSIS
- bfd_boolean bfd_write_bigendian_4byte_int (bfd *, unsigned int);
+ bool bfd_write_bigendian_4byte_int (bfd *, unsigned int);
DESCRIPTION
Write a 4 byte integer @var{i} to the output BFD @var{abfd}, in big
@@ -344,7 +344,7 @@ DESCRIPTION
archives.
*/
-bfd_boolean
+bool
bfd_write_bigendian_4byte_int (bfd *abfd, unsigned int i)
{
bfd_byte buffer[4];
@@ -822,7 +822,7 @@ bfd_putl64 (bfd_uint64_t data ATTRIBUTE_UNUSED, void *p ATTRIBUTE_UNUSED)
}
void
-bfd_put_bits (bfd_uint64_t data, void *p, int bits, bfd_boolean big_p)
+bfd_put_bits (bfd_uint64_t data, void *p, int bits, bool big_p)
{
bfd_byte *addr = (bfd_byte *) p;
int i;
@@ -842,7 +842,7 @@ bfd_put_bits (bfd_uint64_t data, void *p, int bits, bfd_boolean big_p)
}
bfd_uint64_t
-bfd_get_bits (const void *p, int bits, bfd_boolean big_p)
+bfd_get_bits (const void *p, int bits, bool big_p)
{
const bfd_byte *addr = (const bfd_byte *) p;
bfd_uint64_t data;
@@ -866,7 +866,7 @@ bfd_get_bits (const void *p, int bits, bfd_boolean big_p)
/* Default implementation */
-bfd_boolean
+bool
_bfd_generic_get_section_contents (bfd *abfd,
sec_ptr section,
void *location,
@@ -875,7 +875,7 @@ _bfd_generic_get_section_contents (bfd *abfd,
{
bfd_size_type sz;
if (count == 0)
- return TRUE;
+ return true;
if (section->compress_status != COMPRESS_SECTION_NONE)
{
@@ -884,7 +884,7 @@ _bfd_generic_get_section_contents (bfd *abfd,
(_("%pB: unable to get decompressed section %pA"),
abfd, section);
bfd_set_error (bfd_error_invalid_operation);
- return FALSE;
+ return false;
}
/* We do allow reading of a section after bfd_final_link has
@@ -904,17 +904,17 @@ _bfd_generic_get_section_contents (bfd *abfd,
> arelt_size (abfd))))
{
bfd_set_error (bfd_error_invalid_operation);
- return FALSE;
+ return false;
}
if (bfd_seek (abfd, section->filepos + offset, SEEK_SET) != 0
|| bfd_bread (location, count, abfd) != count)
- return FALSE;
+ return false;
- return TRUE;
+ return true;
}
-bfd_boolean
+bool
_bfd_generic_get_section_contents_in_window
(bfd *abfd ATTRIBUTE_UNUSED,
sec_ptr section ATTRIBUTE_UNUSED,
@@ -926,7 +926,7 @@ _bfd_generic_get_section_contents_in_window
bfd_size_type sz;
if (count == 0)
- return TRUE;
+ return true;
if (abfd->xvec->_bfd_get_section_contents
!= _bfd_generic_get_section_contents)
{
@@ -938,13 +938,13 @@ _bfd_generic_get_section_contents_in_window
bfd_free_window (w);
w->i = bfd_zmalloc (sizeof (bfd_window_internal));
if (w->i == NULL)
- return FALSE;
+ return false;
w->i->data = bfd_malloc (count);
if (w->i->data == NULL)
{
free (w->i);
w->i = NULL;
- return FALSE;
+ return false;
}
w->i->mapped = 0;
w->i->refcount = 1;
@@ -963,9 +963,9 @@ _bfd_generic_get_section_contents_in_window
&& ((ufile_ptr) section->filepos + offset + count
> arelt_size (abfd)))
|| ! bfd_get_file_window (abfd, section->filepos + offset, count, w,
- TRUE))
- return FALSE;
- return TRUE;
+ true))
+ return false;
+ return true;
#else
abort ();
#endif
@@ -975,7 +975,7 @@ _bfd_generic_get_section_contents_in_window
NEW sections is disallowed. It is useful in patching existing sections
in read-write files, though. See other set_section_contents functions
to see why it doesn't work for new sections. */
-bfd_boolean
+bool
_bfd_generic_set_section_contents (bfd *abfd,
sec_ptr section,
const void *location,
@@ -983,13 +983,13 @@ _bfd_generic_set_section_contents (bfd *abfd,
bfd_size_type count)
{
if (count == 0)
- return TRUE;
+ return true;
if (bfd_seek (abfd, section->filepos + offset, SEEK_SET) != 0
|| bfd_bwrite (location, count, abfd) != count)
- return FALSE;
+ return false;
- return TRUE;
+ return true;
}
/*
@@ -1018,7 +1018,7 @@ bfd_log2 (bfd_vma x)
return result;
}
-bfd_boolean
+bool
bfd_generic_is_local_label_name (bfd *abfd, const char *name)
{
char locals_prefix = (bfd_get_symbol_leading_char (abfd) == '_') ? 'L' : '.';
@@ -1094,7 +1094,7 @@ bfd_vma
_bfd_safe_read_leb128 (bfd *abfd ATTRIBUTE_UNUSED,
bfd_byte *data,
unsigned int *length_return,
- bfd_boolean sign,
+ bool sign,
const bfd_byte * const end)
{
bfd_vma result = 0;
@@ -1182,12 +1182,12 @@ _bfd_write_unsigned_leb128 (bfd_byte *p, bfd_byte *end, bfd_vma val)
return p;
}
-bfd_boolean
+bool
_bfd_generic_init_private_section_data (bfd *ibfd ATTRIBUTE_UNUSED,
asection *isec ATTRIBUTE_UNUSED,
bfd *obfd ATTRIBUTE_UNUSED,
asection *osec ATTRIBUTE_UNUSED,
struct bfd_link_info *link_info ATTRIBUTE_UNUSED)
{
- return TRUE;
+ return true;
}