Home
last modified time | relevance | path

Searched refs:debugging (Results 1 – 25 of 1108) sorted by relevance

12345678910>>...45

/external/e2fsprogs/debian/
Dcontrol.legacy-dbg7 Description: debugging information for e2fsprogs
8 This package includes the debug information useful for debugging e2fsprogs
19 Description: debugging information for e2fslibs
20 This package includes the debug information useful for debugging the
30 Description: debugging information for libcomerr2
31 This package includes the debug information useful for debugging the
32 com_err library, contained in the libcomerr2 package. The debugging
41 Description: debugging information for libss2
42 This package includes the debug information useful for debugging the
/external/freetype/docs/
DDEBUG7 There are several ways to enable debugging features in a FreeType 2
25 The trace macros are used to send debugging messages when an
32 small but effective debugging memory manager that tracks all
41 debugging memory manager never frees the blocks to the heap in
44 When FT2_DEBUG_MEMORY isn't defined at runtime, the debugging
52 debugging its code:
82 The FT_TRACE macro is used to send general-purpose debugging
128 The following environment variables control debugging output and
158 debugging memory manager that will track leaking memory blocks as
161 considerably saves time when debugging new additions to the
[all …]
/external/python/cpython3/Lib/
Dpipes.py87 self.debugging = 0
103 t.debugging = self.debugging
108 self.debugging = flag
175 if self.debugging:
Dftplib.py98 debugging = 0 variable in FTP
161 if self.debugging:
171 self.debugging = level
192 if self.debugging > 1:
198 if self.debugging: print('*cmd*', self.sanitize(line))
207 if self.debugging > 1:
237 if self.debugging:
262 if self.debugging > 1:
474 if self.debugging > 2:
946 debugging = 0
[all …]
/external/u-boot/arch/arm/
DKconfig.debug4 bool "Low-level debugging functions"
8 in U-Boot. This is helpful if you are debugging code that
12 prompt "Low-level debugging port"
16 bool "Low-level debugging via 8250 UART"
/external/libcxx/docs/DesignDocs/
DDebugMode.rst21 This macro is used to enable assertions and iterator debugging checks within
27 assertions. Defining ``_LIBCPP_DEBUG`` to ``1`` enables "iterator debugging"
73 "iterator debugging" which checks the validity of iterators used by the program.
89 The following containers and STL classes support iterator debugging:
99 The remaining containers do not currently support iterator debugging.
/external/python/cpython2/Lib/
Dpipes.py85 self.debugging = 0
101 t.debugging = self.debugging
106 self.debugging = flag
187 if self.debugging:
Dftplib.py103 debugging = 0 variable in FTP
144 if self.debugging:
154 self.debugging = level
177 if self.debugging > 1: print '*put*', self.sanitize(line)
182 if self.debugging: print '*cmd*', self.sanitize(line)
191 if self.debugging > 1:
218 if self.debugging: print '*resp*', self.sanitize(resp)
242 if self.debugging > 1: print '*put urgent*', self.sanitize(line)
449 if self.debugging > 2: print '*retr*', repr(line)
754 if self.debugging > 2: print '*retr*', repr(line)
[all …]
Dnntplib.py121 self.debugging = 0
184 if self.debugging: print '*welcome*', repr(self.welcome)
193 self.debugging = level
199 if self.debugging > 1: print '*put*', repr(line)
204 if self.debugging: print '*cmd*', repr(line)
213 if self.debugging > 1:
224 if self.debugging: print '*resp*', repr(resp)
/external/tensorflow/tensorflow/python/debug/
DREADME.md18 Basic Python debugging tools such as [pdb](https://docs.python.org/2/library/pdb.html)
20 execution happens in the underlying C++ layer. C++ debugging tools such as
26 following ones are designed to facilitate runtime debugging of TensorFlow
35 predicates, which makes common debugging tasks such as tracing the origin
40 * A [gRPC](https://grpc.io/)-based remote debugging protocol, which allows us to
/external/mesa3d/src/gallium/drivers/rbug/
DREADME7 It provides remote debugging functionality.
16 which should open gallium remote debugging session. While the program is running
17 you can launch the small remote debugging application from progs/rbug. More
/external/tensorflow/tensorflow/core/api_def/python_api/
Dapi_def_CheckNumerics.pbtxt4 deprecation_message: "Use debugging.assert_all_finite instead"
6 name: "debugging.check_numerics"
/external/mockito/src/test/java/org/mockitousage/debugging/
DNewMockito.java5 package org.mockitousage.debugging;
9 import org.mockito.internal.debugging.MockitoDebuggerImpl;
/external/python/cpython2/Lib/idlelib/
Drpc.py128 def __init__(self, sock, objtable=None, debugging=None): argument
130 if debugging is not None:
131 self.debugging = debugging
150 if not self.debugging:
494 debugging = False variable in RPCHandler
511 debugging = False variable in RPCClient
523 if self.debugging:
/external/tensorflow/tensorflow/core/api_def/base_api/
Dapi_def_DebugGradientIdentity.pbtxt3 summary: "Identity op for gradient debugging."
6 register gradient tensors for gradient debugging.
Dapi_def_DebugGradientRefIdentity.pbtxt3 summary: "Identity op for gradient debugging."
6 register gradient tensors for gradient debugging.
/external/python/cpython3/Lib/idlelib/
Drpc.py133 def __init__(self, sock, objtable=None, debugging=None): argument
135 if debugging is not None:
136 self.debugging = debugging
155 if not self.debugging:
509 debugging = False variable in RPCHandler
527 debugging = False variable in RPCClient
539 if self.debugging:
/external/mockito/src/test/java/org/mockitousage/internal/debugging/
DLocationImplTest.java5 package org.mockitousage.internal.debugging;
10 import org.mockito.internal.debugging.LocationImpl;
/external/strace/debian/
Dcontrol15 strace is a system call tracer, i.e. a debugging tool which prints out
29 strace is a system call tracer, i.e. a debugging tool which prints out
48 strace is a system call tracer, i.e. a debugging tool which prints out
57 This is a stripped down package intended for debugging use in the Debian
/external/python/cpython3/Lib/test/
Dtest_pipes.py99 self.assertEqual(t.debugging, False)
101 self.assertEqual(t.debugging, True)
196 self.assertEqual(t.debugging, u.debugging)
/external/python/cpython2/Doc/library/
Dgc.rst13 and set debugging options. It also provides access to unreachable objects that
59 Set the garbage collection debugging flags. Debugging information will be
60 written to ``sys.stderr``. See below for a list of debugging flags which can be
61 combined using bit operations to control debugging.
66 Return the debugging flags currently set.
126 debugging.
229 than being freed. This can be useful for debugging a leaking program.
234 The debugging flags necessary for the collector to print information about a
/external/python/cpython2/Lib/test/
Dtest_pipes.py100 self.assertEqual(t.debugging, False)
102 self.assertEqual(t.debugging, True)
197 self.assertEqual(t.debugging, u.debugging)
/external/antlr/runtime/C/doxygen/
Dchanges31.dox30 /// supports remote debugging only (you cannot generate C, compile and debug it from the
31 /// ANTLRWorks IDE.) However both parser and tree parser debugging is supported providing
32 /// you are using a version of ANTLRWorks that supports tree parser debugging. Generate
35 /// Note that when you invoke your debugging version of the parser, it will appear to hang
/external/swiftshader/third_party/llvm-7.0/llvm/docs/
DDebuggingJITedCode.rst8 Without special runtime support, debugging dynamically generated code with
32 better option for debugging JIT-ed code on Mac OS X.
38 The emerging MCJIT component of LLVM allows full debugging of JIT-ed code with
40 DWARF debugging information to GDB.
97 [Thread debugging using libthread_db enabled]
/external/llvm/docs/
DDebuggingJITedCode.rst8 Without special runtime support, debugging dynamically generated code with
32 better option for debugging JIT-ed code on Mac OS X.
38 The emerging MCJIT component of LLVM allows full debugging of JIT-ed code with
40 DWARF debugging information to GDB.
97 [Thread debugging using libthread_db enabled]

12345678910>>...45