| /xnu-12377.81.4/tools/lldbmacros/usertaskdebugging/ |
| H A D | gdbserver.py | 1 import logging 13 logging.info("Starting gdb server for localhost:%d" % self.portnum) 19 logging.critical("No client connected. Bailing.") 22 logging.debug('Starting gdb server.') 33 logging.warn("found exception in read %s" % (str(e))) 34 logging.debug("currentbytes: %s" % readBytes) 44 logging.debug('ignoring message: %s' % readBytes) 52 logging.debug("response: %s" % r_msg.getRSPByteData()) 61 logging.debug('RCV:' + query) 71 logging.debug('Ignoring query %s' % query) [all …]
|
| H A D | target.py | 2 import logging 45 logging.critical("Not Implemented: getRegisterDataForThread") 49 logging.critical("readMemory: Not Implemented: readMemory") 61 logging.critical("getRegisterInfo: Not Implemented: getRegisterInfo") 65 logging.critical("Not Implemented: qProcessInfo") 73 logging.warning('getFirstThreadInfo: Process has no threads') 85 logging.critical("Not Implemented: qShlibInfoAddr") 116 logging.critical("getThreadStopInfo: Not Implemented. returning basic info.")
|
| H A D | interface.py | 1 import logging 14 logging.debug("created %s" % str(self)) 20 …logging.debug("Initializing network interface for communication host: %s:%d", self.host_cfg, self.… 27 logging.warning("timeout: select returned empty list. retrying..") 30 logging.info("Connected to client from %s" % str(addr)) 32 logging.error("Failed to connect. Exiting after multiple attempts.") 58 logging.debug('closing connection.')
|
| H A D | userprocess.py | 1 import logging 60 logging.debug("created thread id 0x%x of type %s, cputype 0x%x" 90 … logging.warning("regnum %d is not defined for thread_id 0x%x" % (reg_num, self.thread_id)) 133 logging.info(dbg_message) 136 logging.debug("iterating over threads in process") 143 logging.critical("0x%x thread id is not found in this task") 146 logging.warning("regnum %d is not defined for thread_id 0x%x" % (reg_num, th_id)) 153 logging.critical("0x%x thread id is not found in this task" % th_id) 169 logging.critical("0x%x thread id is not found in this task") 177 logging.debug("No register_info for number %d." % regnum) [all …]
|
| H A D | rsprotocol.py | 1 import logging 35 logging.error('Invalid bytedata considered as message %s' % bytedata) 40 logging.debug("empty message %s"%bytedata) 44 logging.debug("Creating message from data %s" % bytedata[data_begin:data_end])
|
| /xnu-12377.81.4/tools/lldbmacros/tests/ |
| H A D | lldb_test_process.py | 33 import logging 49 logging.root.setLevel(logging.INFO) 50 logging.basicConfig(level=logging.INFO) 51 lldb.test_logger = logging.getLogger("UnitTest") 175 logging.root.setLevel(logging.DEBUG) 176 logging.basicConfig(level=logging.DEBUG) 178 log = logging.getLogger("ScriptedProcess") 207 logging.getLogger("ScriptedProcess").info("Running LLDB module init.")
|
| /xnu-12377.81.4/tools/lldbmacros/ |
| H A D | usertaskgdbserver.py | 2 import logging 14 logging.basicConfig(level=log_level, 30 log_level = logging.INFO 32 log_level = logging.DEBUG 34 log_level = logging.WARNING
|
| H A D | kcdata.py | 10 import logging 536 logging.info(self.i_type) 541 …logging.info("0x%08x: %sCONTAINER: %s(%x)" % (self.offset, INDENT(), GetTypeNameForKey(self.obj['t… 546 logging.info("0x%08x: %s%s" % (self.offset, INDENT(), self.i_name)) 550 logging.info("0x%08x: %sEND" % (self.offset, INDENT(end=True))) 554 logging.info("0x%08x: %sEND_BUFFER" % (self.offset, INDENT(end=True))) 561 logging.info("0x%08x: %s%s" % (self.offset, INDENT(), self.i_name)) 568 logging.info("0x%08x: %s%s" % (self.offset, INDENT(), self.i_name)) 584 logging.info("0x%08x: %s%s" % (self.offset, INDENT(), self.i_name)) 600 logging.info("0x%08x: %sARRAY: %s" % (self.offset, INDENT(), self.i_name)) [all …]
|
| H A D | README.md | 454 …gging needs. It will not print any output unless the user turns on debug logging on the command. P… 456 * To enable/disable logging 458 Enabled debug logging.
|
| /xnu-12377.81.4/doc/debugging/ |
| H A D | task_ref.md | 104 at all). Backtrace logging for all groups is disabled, including task reference 105 groups. To enable backtrace logging and reference group statistics, the `rlog` 106 boot-arg must be used. Backtrace logging for task reference groups is only 111 To enable statistics for all reference groups and backtrace logging for the
|
| H A D | macro_testing.md | 39 * `-d` enables debug logging and more detailed exception reports
|
| /xnu-12377.81.4/osfmk/vm/ |
| H A D | vm_kern.h | 272 #pragma mark - kernel address obfuscation / hashing for logging
|
| /xnu-12377.81.4/tests/sched/sched_test_harness/ |
| H A D | README.md | 19 …ime. `sched_runqueue_harness.c` implements the interface by adding debug logging and then calling … 22 …ss. `sched_migration_harness.c` implements the interface by adding debug logging and then calling …
|
| /xnu-12377.81.4/osfmk/mach/ |
| H A D | audit_triggers.defs | 34 * Interface definition for the audit logging facility.
|
| /xnu-12377.81.4/libkern/os/ |
| H A D | log.c | 619 bool safe, bool logging, bool addcr) in _os_log_to_msgbuf_internal() argument 642 } else if (logging && (-1 != msgbufreplay)) { in _os_log_to_msgbuf_internal() 785 bool logging = !os_log_turned_off(); in _os_log_with_args_internal() local 788 _os_log_to_msgbuf_internal(fmt, args, ts, safe, logging, addcr); in _os_log_with_args_internal() 791 if (safe && logging) { in _os_log_with_args_internal()
|
| /xnu-12377.81.4/makedefs/ |
| H A D | MakeInc.cmd | 39 # Helper functions for logging operations. 46 # Concise logging puts all logs on the same line (CSI K to clear and
|
| /xnu-12377.81.4/doc/mach_ipc/ |
| H A D | kmsg.md | 25 for logging).
|
| /xnu-12377.81.4/config/ |
| H A D | MASTER | 444 # ECC data logging
|
| /xnu-12377.81.4/doc/lifecycle/ |
| H A D | hibernation.md | 184 have to be mapped to support serial logging and using the hmac block.
|