HomeSort by relevance Sort by last modified time
    Searched full:debug_level (Results 26 - 50 of 98) sorted by null

12 3 4

  /hardware/qcom/gps/msm8909/etc/
gps.conf 30 # If DEBUG_LEVEL is commented, Android's logging levels will be used
31 DEBUG_LEVEL = 2
  /hardware/qcom/gps/msm8994/etc/
gps.conf 30 # If DEBUG_LEVEL is commented, Android's logging levels will be used
31 DEBUG_LEVEL = 3
  /hardware/qcom/gps/msm8996/etc/
gps.conf 24 # If DEBUG_LEVEL is commented, Android's logging levels will be used
25 DEBUG_LEVEL = 2
  /external/mesa3d/src/gallium/state_trackers/vdpau/
vdpau_private.h 484 static int debug_level = -1; local
486 if (debug_level == -1) {
487 debug_level = MAX2(debug_get_num_option("VDPAU_DEBUG", 0), 0);
490 if (level <= debug_level) {
  /system/connectivity/shill/dbus/
chromeos_supplicant_process_proxy.cc 52 RegisterProperty(kPropertyDebugLevel, &debug_level);
183 if (!properties_->debug_level.SetAndBlock(level)) {
196 if (!properties_->debug_level.GetAndBlock()) {
200 *level = properties_->debug_level.value();
chromeos_supplicant_process_proxy.h 62 brillo::dbus_utils::Property<std::string> debug_level; member in class:shill::ChromeosSupplicantProcessProxy::PropertySet
  /hardware/qcom/gps/msm8960/utils/
loc_cfg.cpp 54 static uint8_t DEBUG_LEVEL = 0xff;
60 {"DEBUG_LEVEL", &DEBUG_LEVEL, NULL, 'n'},
233 loc_logger_init(DEBUG_LEVEL, TIMESTAMP);
285 loc_logger_init(DEBUG_LEVEL, TIMESTAMP);
  /hardware/qcom/gps/msm8084/utils/
loc_log.cpp 189 Initializes the state of DEBUG_LEVEL and TIMESTAMP
202 loc_logger.DEBUG_LEVEL = debug;
205 if (loc_logger.DEBUG_LEVEL > 2) {
206 loc_logger.DEBUG_LEVEL = 2;
loc_cfg.cpp 55 static uint8_t DEBUG_LEVEL = 0xff;
61 {"DEBUG_LEVEL", &DEBUG_LEVEL, NULL, 'n'},
400 loc_logger_init(DEBUG_LEVEL, TIMESTAMP);
  /hardware/qcom/gps/msm8909/utils/
loc_log.cpp 191 Initializes the state of DEBUG_LEVEL and TIMESTAMP
204 loc_logger.DEBUG_LEVEL = debug;
207 if (loc_logger.DEBUG_LEVEL > 2) {
208 loc_logger.DEBUG_LEVEL = 2;
loc_cfg.cpp 55 static uint32_t DEBUG_LEVEL = 0xff;
61 {"DEBUG_LEVEL", &DEBUG_LEVEL, NULL, 'n'},
399 loc_logger_init(DEBUG_LEVEL, TIMESTAMP);
  /hardware/qcom/gps/msm8994/utils/
loc_log.cpp 190 Initializes the state of DEBUG_LEVEL and TIMESTAMP
203 loc_logger.DEBUG_LEVEL = debug;
206 if (loc_logger.DEBUG_LEVEL > 2) {
207 loc_logger.DEBUG_LEVEL = 2;
loc_cfg.cpp 55 static uint32_t DEBUG_LEVEL = 0xff;
61 {"DEBUG_LEVEL", &DEBUG_LEVEL, NULL, 'n'},
399 loc_logger_init(DEBUG_LEVEL, TIMESTAMP);
  /hardware/qcom/gps/msm8996/utils/
loc_log.cpp 191 Initializes the state of DEBUG_LEVEL and TIMESTAMP
204 loc_logger.DEBUG_LEVEL = debug;
207 if (loc_logger.DEBUG_LEVEL > 2) {
208 loc_logger.DEBUG_LEVEL = 2;
loc_cfg.cpp 55 static uint32_t DEBUG_LEVEL = 0xff;
61 {"DEBUG_LEVEL", &DEBUG_LEVEL, NULL, 'n'},
399 loc_logger_init(DEBUG_LEVEL, TIMESTAMP);
  /hardware/qcom/gps/utils/
loc_log.cpp 190 Initializes the state of DEBUG_LEVEL and TIMESTAMP
203 loc_logger.DEBUG_LEVEL = debug;
206 if (loc_logger.DEBUG_LEVEL > 2) {
207 loc_logger.DEBUG_LEVEL = 2;
loc_cfg.cpp 55 static uint32_t DEBUG_LEVEL = 0xff;
61 {"DEBUG_LEVEL", &DEBUG_LEVEL, NULL, 'n'},
399 loc_logger_init(DEBUG_LEVEL, TIMESTAMP);
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/sysroot/usr/include/
tic.h 118 #define DEBUG_LEVEL(n) ((n) << TRACE_SHIFT)
121 _nc_tracing &= DEBUG_LEVEL(MAX_DEBUG_LEVEL), \
122 _nc_tracing |= DEBUG_LEVEL(n)
125 #define DEBUG(n, a) if (_nc_tracing >= DEBUG_LEVEL(n)) _tracef a
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/
tic.h 118 #define DEBUG_LEVEL(n) ((n) << TRACE_SHIFT)
121 _nc_tracing &= DEBUG_LEVEL(MAX_DEBUG_LEVEL), \
122 _nc_tracing |= DEBUG_LEVEL(n)
125 #define DEBUG(n, a) if (_nc_tracing >= DEBUG_LEVEL(n)) _tracef a
  /external/chromium-trace/catapult/third_party/gsutil/third_party/boto/bin/
glacier 85 def connect(region, debug_level=0, access_key=None, secret_key=None):
90 debug=debug_level)
  /toolchain/binutils/binutils-2.25/gprof/
gprof.h 96 #define DBG(l,s) if (debug_level & (l)) {s;}
117 extern int debug_level; /* debug level */
gprof.c 59 int debug_level = 0; variable
245 debug_level |= atoi (optarg);
246 debug_level |= ANYDEBUG;
250 debug_level = ~0;
252 DBG (ANYDEBUG, printf ("[main] debug-level=0x%x\n", debug_level));
  /external/webrtc/webrtc/base/
logging.cc 271 LoggingSeverity debug_level = GetLogToDebug(); local
302 debug_level = current_level;
307 if ((LS_NONE != debug_level) && !::IsDebuggerPresent()) {
328 LogToDebug(debug_level);
  /external/libcxx/test/libcxx/test/
config.py 562 debug_level = self.get_lit_conf('debug_level', None)
563 if not debug_level:
565 if debug_level not in ['0', '1']:
566 self.lit_config.fatal('Invalid value for debug_level "%s".'
567 % debug_level)
568 self.cxx.compile_flags += ['-D_LIBCPP_DEBUG=%s' % debug_level]
    [all...]
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/libcxx/test/
config.py 561 debug_level = self.get_lit_conf('debug_level', None)
562 if not debug_level:
564 if debug_level not in ['0', '1']:
565 self.lit_config.fatal('Invalid value for debug_level "%s".'
566 % debug_level)
567 self.cxx.compile_flags += ['-D_LIBCPP_DEBUG=%s' % debug_level]
    [all...]

Completed in 971 milliseconds

12 3 4