Home
last modified time | relevance | path

Searched refs:source_error_allocated (Results 1 – 2 of 2) sorted by relevance

/freebsd-12.1/contrib/gdb/gdb/cli/
H A Dcli-script.c52 static int source_error_allocated; variable
1273 if (source_error_allocated < needed_length) in script_from_file()
1275 source_error_allocated *= 2; in script_from_file()
1276 if (source_error_allocated < needed_length) in script_from_file()
1277 source_error_allocated = needed_length; in script_from_file()
1279 source_error = xmalloc (source_error_allocated); in script_from_file()
1281 source_error = xrealloc (source_error, source_error_allocated); in script_from_file()
/freebsd-12.1/contrib/gdb/gdb/
H A Dtop.c622 static int source_error_allocated; variable