Home
last modified time | relevance | path

Searched refs:warn (Results 1 – 5 of 5) sorted by relevance

/rk3399_rockchip-uboot/tools/patman/
H A Dpatchstream.py66 self.warn = [] # List of warnings we have collected
187 self.warn.append("Missing 'END' in section '%s'" % self.in_section)
197 self.warn.append("Unknown section '%s'" % self.in_section)
204 self.warn.append("Missing 'blank line' in section 'Series-changes'")
219 self.warn.append("Unknown section '%s'" % self.in_section)
297 self.warn.append("Ignoring %s" % line)
314 self.warn.append('Line %d/%d has space before tab' %
346 self.warn.append('Found %d lines after TEST=' %
378 self.warn.append("Found possible blank line(s) at "
468 return ps.warn
[all …]
/rk3399_rockchip-uboot/scripts/dtc/
H A Dchecks.c49 bool warn, error; member
62 .warn = (_w), \
81 if ((c->warn && (quiet < 1)) in check_msg()
1273 static void enable_warning_error(struct check *c, bool warn, bool error) in enable_warning_error() argument
1278 if ((warn && !c->warn) || (error && !c->error)) in enable_warning_error()
1280 enable_warning_error(c->prereq[i], warn, error); in enable_warning_error()
1282 c->warn = c->warn || warn; in enable_warning_error()
1286 static void disable_warning_error(struct check *c, bool warn, bool error) in disable_warning_error() argument
1292 if ((warn && c->warn) || (error && c->error)) { in disable_warning_error()
1299 disable_warning_error(cc, warn, error); in disable_warning_error()
[all …]
H A Ddtc.h273 void parse_checks_option(bool warn, bool error, const char *arg);
/rk3399_rockchip-uboot/tools/
H A Dproftool.c65 #define warn(fmt, b...) outf(1, fmt, ##b) macro
293warn("%d profile functions could not be found in the map file - are you sure that your profile dat… in read_profile_file()
376 warn("%d functions removed by linker, %ld code size\n", in check_functions()
511 warn("Cannot find function at %lx\n", in make_ftrace()
557 warn("Unknown command '%s'\n", cmd); in prof_tool()
/rk3399_rockchip-uboot/env/
H A DMakefile64 CFLAGS_embedded.o := -Wa,--no-warn -DENV_CRC=$(shell tools/envcrc 2>/dev/null)