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:cframe
(Results
1 - 15
of
15
) sorted by relevance
/third_party/python/Python/
H
A
D
ceval.c
1336
assert(
cframe
.use_tracing == 0 ||
cframe
.use_tracing == 255); \
1337
opcode |=
cframe
.use_tracing OR_DTRACE_LINE; \
1345
opcode |=
cframe
.use_tracing OR_DTRACE_LINE; \
1420
opcode = _Py_OPCODE(word) |
cframe
.use_tracing OR_DTRACE_LINE; \
1515
if (
cframe
.use_tracing) { \
1528
if (
cframe
.use_tracing) { \
1535
if (
cframe
.use_tracing) { \
1546
if (
cframe
.use_tracing) { \
1657
_PyCFrame
cframe
;
local
[all...]
H
A
D
frame.c
128
assert(_PyThreadState_GET()->
cframe
->current_frame != frame);
in _PyFrame_Clear()
H
A
D
pystate.c
797
tstate->
cframe
= &tstate->root_cframe;
in init_threadstate()
1023
if (verbose && tstate->
cframe
->current_frame != NULL) {
in PyThreadState_Clear()
1279
_PyInterpreterFrame *f = tstate->
cframe
->current_frame;
in PyThreadState_GetFrame()
1409
_PyInterpreterFrame *frame = t->
cframe
->current_frame;
in _PyThread_CurrentFrames()
H
A
D
traceback.c
1230
frame = tstate->
cframe
->current_frame;
in dump_traceback()
H
A
D
sysmodule.c
1819
_PyInterpreterFrame *frame = tstate->
cframe
->current_frame;
in sys__getframe_impl()
H
A
D
pylifecycle.c
2077
if (tstate->
cframe
->current_frame != NULL) {
in Py_EndInterpreter()
/third_party/python/Lib/idlelib/
H
A
D
debugger.py
158
self.
cframe
=
cframe
= Frame(bframe)
159
self.
cframe
.pack(side="left")
164
self.bstack = Checkbutton(
cframe
,
169
self.bsource = Checkbutton(
cframe
,
175
self.blocals = Checkbutton(
cframe
,
180
self.bglobals = Checkbutton(
cframe
,
/third_party/python/Include/internal/
H
A
D
pycore_pystate.h
137
tstate->
cframe
->use_tracing = (use_tracing ? 255 : 0);
in _PyThreadState_UpdateTracingState()
/third_party/python/Include/cpython/
H
A
D
pystate.h
110
_PyCFrame *
cframe
;
member
/third_party/python/Objects/
H
A
D
genobject.c
208
frame->previous = tstate->
cframe
->current_frame;
in gen_send_ex2()
226
assert(tstate->
cframe
->current_frame == frame->previous);
in gen_send_ex2()
453
_PyInterpreterFrame *prev = tstate->
cframe
->current_frame;
in _gen_throw()
455
tstate->
cframe
->current_frame = frame;
in _gen_throw()
463
tstate->
cframe
->current_frame = prev;
in _gen_throw()
H
A
D
typeobject.c
8986
super_init_without_args(_PyInterpreterFrame *
cframe
, PyCodeObject *co,
in super_init_without_args()
argument
8995
assert(
cframe
->f_code->co_nlocalsplus > 0);
in super_init_without_args()
8996
PyObject *firstarg = _PyFrame_GetLocalsArray(
cframe
)[0];
in super_init_without_args()
9001
if (_PyInterpreterFrame_LASTI(
cframe
) >= 0) {
in super_init_without_args()
9024
PyObject *cell = _PyFrame_GetLocalsArray(
cframe
)[i];
in super_init_without_args()
9082
_PyInterpreterFrame *
cframe
= tstate->
cframe
->current_frame;
in super_init_impl()
local
9083
if (
cframe
== NULL) {
in super_init_impl()
9088
int res = super_init_without_args(
cframe
,
cframe
in super_init_impl()
[all...]
/third_party/python/Tools/gdb/
H
A
D
libpython.py
1790
cframe
= self._gdbframe.read_var('
cframe
')
1791
if
cframe
is None:
1793
frame = PyFramePtr(
cframe
["current_frame"])
/third_party/python/Modules/
H
A
D
_tracemalloc.c
402
_PyInterpreterFrame *pyframe = tstate->
cframe
->current_frame;
in traceback_get_frames()
H
A
D
signalmodule.c
1839
_PyInterpreterFrame *frame = tstate->
cframe
->current_frame;
H
A
D
_xxsubinterpretersmodule.c
1841
_PyInterpreterFrame *frame = tstate->
cframe
->current_frame;
in _is_running()
Completed in 43 milliseconds