Home
Sort by
last modified time
|
relevance
|
path
Repository(s)
applications
arkcompiler
base
build
commonlibrary
developtools
device
docs
domains
drivers
foundation
ide
interface
kernel
napi_generator
productdefine
test
third_party
vendor
select all
invert selection
clear
Full Search
Search through all text tokens(words,strings,identifiers,numbers) in index.
Definition
Only finds symbol definitions(where e.g a variable(function,...) is defined).
Symbol
Only finds symbol(e.g. methods classes,function,variables).
File Path
Path of the source file(use "/").If you want just exact path,enclose it in "".Source files end with: .jar/.bz2/.a/.h/.java...
History
History log comments.
Type
Any
Bzip(2)
C
Clojure
C#
C++
ELF
Erlang
Image file
Fortran
Golang
GZIP
Haskell
Jar
Java
Java class
JavaScript
Lisp
Lua
Pascal
Perl
PHP
Plain Text
PL/SQL
Python
Rust
Scala
Shell script
SQL
Tar
Tcl
Troff
UUEncoded
Visual Basic
XML
Zip
Type of analyzer used to filter file types include with selected(e.g. just C sources).
Help
Searched
refs:f_trace
(Results
1 - 6
of
6
) sorted by relevance
/third_party/python/Lib/
H
A
D
bdb.py
308
if caller_frame and not caller_frame.
f_trace
:
309
caller_frame.
f_trace
= self.trace_dispatch
332
frame.
f_trace
= self.trace_dispatch
350
del frame.
f_trace
/third_party/python/Objects/
H
A
D
frameobject.c
684
if (!f->
f_trace
) {
in frame_setlineno()
803
PyObject* trace = f->
f_trace
;
in frame_gettrace()
820
Py_XSETREF(f->
f_trace
, v);
in frame_settrace()
831
{"
f_trace
", (getter)frame_gettrace, (setter)frame_settrace, NULL},
879
Py_CLEAR(f->
f_trace
);
in frame_dealloc()
889
Py_VISIT(f->
f_trace
);
in frame_traverse()
900
Py_CLEAR(f->
f_trace
);
in frame_tp_clear()
1029
f->
f_trace
= NULL;
in _PyFrame_New_NoTrack()
/third_party/python/Include/internal/
H
A
D
pycore_frame.h
19
PyObject *
f_trace
; /* Trace function */
member
/third_party/python/Lib/test/
H
A
D
test_frame.py
124
sys._getframe(0).
f_trace
= True
H
A
D
test_sys_settrace.py
186
sys._getframe().f_back.
f_trace
= tracefunc
194
sys._getframe().f_back.
f_trace
= tracefunc
484
# Issue 20041: fix TypeError when
f_trace
is set to None.
486
sys._getframe().
f_trace
= None
1585
sys._getframe().
f_trace
= error_once
/third_party/python/Python/
H
A
D
sysmodule.c
984
callback = frame->
f_trace
;
in trace_trampoline()
994
Py_CLEAR(frame->
f_trace
);
in trace_trampoline()
999
Py_XSETREF(frame->
f_trace
, result);
in trace_trampoline()
Completed in 12 milliseconds