Home
last modified time | relevance | path

Searched refs:trace (Results 1 – 25 of 32) sorted by relevance

12

/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Objects/
Dcapsule.c199 char *trace; in PyCapsule_Import() local
209 trace = name_dup; in PyCapsule_Import()
210 while (trace) { in PyCapsule_Import()
211 char *dot = strchr(trace, '.'); in PyCapsule_Import()
218 object = PyImport_ImportModuleNoBlock(trace); in PyCapsule_Import()
220 object = PyImport_ImportModule(trace); in PyCapsule_Import()
222 … PyErr_Format(PyExc_ImportError, "PyCapsule_Import could not import module \"%s\"", trace); in PyCapsule_Import()
226 PyObject *object2 = PyObject_GetAttrString(object, trace); in PyCapsule_Import()
234 trace = dot; in PyCapsule_Import()
Dlnotab_notes.txt74 However, we don't *always* want to call the line trace function when the above
109 We fix this by only calling the line trace function for a forward jump if the
112 co_lnotab. For backward jumps, however, we always call the line trace function,
116 Why do we set f_lineno when tracing, and only just before calling the trace
Dframeobject.c354 PyObject* trace = f->f_trace; in frame_gettrace() local
356 if (trace == NULL) in frame_gettrace()
357 trace = Py_None; in frame_gettrace()
359 Py_INCREF(trace); in frame_gettrace()
361 return trace; in frame_gettrace()
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Objects/
Dcapsule.c199 char *trace; in PyCapsule_Import() local
209 trace = name_dup; in PyCapsule_Import()
210 while (trace) { in PyCapsule_Import()
211 char *dot = strchr(trace, '.'); in PyCapsule_Import()
218 object = PyImport_ImportModuleNoBlock(trace); in PyCapsule_Import()
220 object = PyImport_ImportModule(trace); in PyCapsule_Import()
222 … PyErr_Format(PyExc_ImportError, "PyCapsule_Import could not import module \"%s\"", trace); in PyCapsule_Import()
226 PyObject *object2 = PyObject_GetAttrString(object, trace); in PyCapsule_Import()
234 trace = dot; in PyCapsule_Import()
Dlnotab_notes.txt74 However, we don't *always* want to call the line trace function when the above
109 We fix this by only calling the line trace function for a forward jump if the
112 co_lnotab. For backward jumps, however, we always call the line trace function,
116 Why do we set f_lineno when tracing, and only just before calling the trace
Dframeobject.c352 PyObject* trace = f->f_trace; in frame_gettrace() local
354 if (trace == NULL) in frame_gettrace()
355 trace = Py_None; in frame_gettrace()
357 Py_INCREF(trace); in frame_gettrace()
359 return trace; in frame_gettrace()
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Tools/unicode/
Dmakeunicodedata.py68 def maketables(trace=0): argument
91 makeunicodename(unicode, trace)
92 makeunicodedata(unicode, trace)
93 makeunicodetype(unicode, trace)
98 def makeunicodedata(unicode, trace): argument
284 index1, index2, shift = splitbins(index, trace)
288 Array("index1", index1).dump(fp, trace)
289 Array("index2", index2).dump(fp, trace)
292 index1, index2, shift = splitbins(decomp_index, trace)
295 Array("decomp_data", decomp_data).dump(fp, trace)
[all …]
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/test/
Dtest_trace.py7 import trace
8 from trace import CoverageResults, Trace
105 self.tracer = Trace(count=1, trace=0, countfuncs=0, countcallers=0)
178 tracer = Trace(count=1, trace=0, countfuncs=0, countcallers=0)
195 self.tracer = Trace(count=1, trace=0, countfuncs=0, countcallers=0)
219 self.tracer = Trace(count=0, trace=0, countfuncs=1)
258 self.tracer = Trace(count=0, trace=0, countcallers=1)
265 ((os.path.splitext(trace.__file__)[0] + '.py', 'trace', 'Trace.runfunc'),
292 tracer = trace.Trace(trace=0, count=1)
306 tracer = trace.Trace(ignoredirs=[sys.prefix, sys.exec_prefix, libpath],
[all …]
Dtest_cmd.py203 trace = test_support.import_module('trace')
204 tracer=trace.Trace(ignoredirs=[sys.prefix, sys.exec_prefix,],
205 trace=0, count=1)
Dtest_sys_settrace.py239 def trace(self, frame, event, arg): member in Tracer
241 return self.trace
245 return self.trace
269 sys.settrace(tracer.trace)
280 func(tracer.trace)
391 def trace(self, frame, event, arg): member in RaisingTraceFuncTestCase
397 return self.trace
414 sys.settrace(self.trace)
471 def trace(self, frame, event, arg): member in JumpTracer
482 return self.trace
[all …]
Dtest_doctest.py2602 trace = test_support.import_module('trace')
2603 tracer = trace.Trace(ignoredirs=[sys.prefix, sys.exec_prefix,],
2604 trace=0, count=1)
Dregrtest.py230 findleaks=False, use_resources=None, trace=False, coverdir='coverage', argument
305 trace = True
365 if use_mp and trace:
444 if trace:
445 import trace
446 tracer = trace.Trace(ignoredirs=[sys.prefix, sys.exec_prefix],
447 trace=False, count=True)
557 if trace:
653 if trace:
Dinspect_fodder.py46 self.tr = inspect.trace()
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/
Dtrace.py451 def __init__(self, count=1, trace=1, countfuncs=0, countcallers=0, argument
478 self.trace = trace
489 elif trace and count:
492 elif trace:
614 if self.trace:
687 trace = 0
723 trace = 1
776 if listfuncs and (count or trace):
779 if not (count or trace or report or listfuncs or countcallers):
801 t = Trace(count, trace, countfuncs=listfuncs,
Dpdb.doc67 Print a stack trace, with the most recent frame at the bottom.
72 Move the current frame one level down in the stack trace
76 Move the current frame one level up in the stack trace
/device/google/accessory/demokit/hardware/fab/m256c/
DREADME23 Board dimensions/outline included as zero width trace in silkscreen layer
25 layers. Minimum trace/space is 6/6 mils.
/device/linaro/bootloader/edk2/ArmPlatformPkg/Scripts/Ds5/
Dprofile.py120 line = trace.readline()
268 trace = open(trace_name, "r") variable
/device/linaro/bootloader/edk2/EdkCompatibilityPkg/Other/Maintained/Tools/Pccts/
DCHANGES_FROM_133.txt80 traceOptionValueDefault=1; // MR10 turn trace ON
130 #252. (MR21) Check for null pointer in trace routine
132 When some trace options are used when the parser is generated
133 without the trace enabled, the current rule name may be a
487 without trace code, a failed guess generates a trace report
488 even though there are no other trace reports. This
490 trace system.
569 There was an error in setting zzTRACE_RULES for the -gd (trace) option.
691 Using the -gd trace option with the default tracein() and traceout()
693 trace routines print out information about the lookahead token at
[all …]
DCHANGES_SUMMARY.txt1315 #109. (Changed in 1.33MR10) improved trace information
1317 The quality of the trace information provided by the "-gd"
1339 Rule trace reporting is controlled by the value of the integer
1343 it is positive AND [zz]traceOptionValue is positive rule trace
1357 When the parser state is saved/restored the value of the trace
1379 turn on trace when inside a particular rule one:
1391 An improvement in the rule trace was suggested by Sramji
1401 The rewrite of the trace provides the machinery necessary
/device/linaro/bootloader/edk2/UefiCpuPkg/CpuMpPei/Ia32/
DMpFuncs.asm124 xor ebp, ebp ; clear ebp for call stack trace
DMpFuncs.nasm114 xor ebp, ebp ; clear ebp for call stack trace
/device/linaro/bootloader/edk2/BaseTools/Source/C/VfrCompile/Pccts/
DCHANGES_FROM_133.txt749 traceOptionValueDefault=1; // MR10 turn trace ON
801 #252. (MR21) Check for null pointer in trace routine
803 When some trace options are used when the parser is generated
804 without the trace enabled, the current rule name may be a
1163 without trace code, a failed guess generates a trace report
1164 even though there are no other trace reports. This
1166 trace system.
1245 There was an error in setting zzTRACE_RULES for the -gd (trace) option.
1367 Using the -gd trace option with the default tracein() and traceout()
1369 trace routines print out information about the lookahead token at
[all …]
DCHANGES_SUMMARY.txt1315 #109. (Changed in 1.33MR10) improved trace information
1317 The quality of the trace information provided by the "-gd"
1339 Rule trace reporting is controlled by the value of the integer
1343 it is positive AND [zz]traceOptionValue is positive rule trace
1357 When the parser state is saved/restored the value of the trace
1379 turn on trace when inside a particular rule one:
1391 An improvement in the rule trace was suggested by Sramji
1401 The rewrite of the trace provides the machinery necessary
/device/linaro/bootloader/edk2/BaseTools/Source/C/VfrCompile/Pccts/antlr/
Dantlr1.txt100 detailed parse trace. The inserted code consists of
105 definition is given for the trace functions, upon rule
/device/linaro/bootloader/edk2/UefiCpuPkg/CpuMpPei/X64/
DMpFuncs.asm159 xor rbp, rbp ; clear ebp for call stack trace

12