Home
last modified time | relevance | path

Searched refs:DEFAULT_VERBOSE (Results 1 – 7 of 7) sorted by relevance

/external/kmod/tools/
Drmmod.c35 #define DEFAULT_VERBOSE LOG_ERR macro
36 static int verbose = DEFAULT_VERBOSE;
Dmodprobe.c45 #define DEFAULT_VERBOSE LOG_WARNING macro
46 static int verbose = DEFAULT_VERBOSE;
151 if (!do_show && verbose <= DEFAULT_VERBOSE) in _show()
509 if (do_show || verbose > DEFAULT_VERBOSE) in insmod()
Ddepmod.c47 #define DEFAULT_VERBOSE LOG_WARNING macro
48 static int verbose = DEFAULT_VERBOSE;
116 if (verbose <= DEFAULT_VERBOSE) in _show()
/external/testng/src/main/java/org/testng/internal/
DYaml.java87 maybeAdd(result, "verbose", suite.getVerbose(), XmlSuite.DEFAULT_VERBOSE); in toYaml()
128 maybeAdd(result, sp2, "verbose", t.getVerbose(), XmlSuite.DEFAULT_VERBOSE); in toYaml()
/external/testng/src/main/java/org/testng/xml/
DXmlSuite.java64 public static final Integer DEFAULT_VERBOSE = 1; field in XmlSuite
238 return m_verbose != null ? m_verbose : TestNG.DEFAULT_VERBOSE; in getVerbose()
466 XmlUtils.setProperty(p, "verbose", getVerbose().toString(), DEFAULT_VERBOSE.toString()); in toXml()
DXmlTest.java30 private Integer m_verbose = XmlSuite.DEFAULT_VERBOSE;
241 if (null == result || XmlSuite.DEFAULT_VERBOSE.equals(m_verbose)) { in getVerbose()
468 XmlUtils.setProperty(p, "verbose", m_verbose.toString(), XmlSuite.DEFAULT_VERBOSE.toString()); in toXml()
/external/testng/src/main/java/org/testng/
DTestNG.java150 public static final Integer DEFAULT_VERBOSE = 1; field in TestNG
1224 : (m_verbose != null ? m_verbose : DEFAULT_VERBOSE); in getVerbose()