Searched refs:tstate (Results 1 - 17 of 17) sorted by relevance

/external/chromium_org/third_party/cython/src/Cython/Utility/
H A DProfile.c51 PyThreadState* tstate = PyThreadState_GET(); \
52 tstate->use_tracing = 0; \
55 if (CYTHON_TRACE && tstate->c_tracefunc) \
56 tstate->c_tracefunc( \
57 tstate->c_traceobj, $frame_cname, PyTrace_EXCEPTION, exc_info); \
58 tstate->c_profilefunc( \
59 tstate->c_profileobj, $frame_cname, PyTrace_EXCEPTION, exc_info); \
62 tstate->use_tracing = 1; \
67 PyThreadState* tstate = PyThreadState_GET(); \
68 tstate
115 PyThreadState* tstate = PyThreadState_GET(); local
[all...]
H A DExceptions.c18 PyThreadState *tstate = PyThreadState_GET(); local
20 tmp_type = tstate->curexc_type;
21 tmp_value = tstate->curexc_value;
22 tmp_tb = tstate->curexc_traceback;
23 tstate->curexc_type = type;
24 tstate->curexc_value = value;
25 tstate->curexc_traceback = tb;
36 PyThreadState *tstate = PyThreadState_GET(); local
37 *type = tstate->curexc_type;
38 *value = tstate
232 PyThreadState *tstate = PyThreadState_GET(); local
257 PyThreadState *tstate = PyThreadState_GET(); local
323 PyThreadState *tstate = PyThreadState_GET(); local
359 PyThreadState *tstate = PyThreadState_GET(); local
374 PyThreadState *tstate = PyThreadState_GET(); local
398 PyThreadState *tstate = PyThreadState_GET(); local
[all...]
H A DObjectHandling.c194 PyThreadState *tstate = PyThreadState_GET(); local
195 PyObject* exc_type = tstate->curexc_type;
199 exc_value = tstate->curexc_value;
200 exc_tb = tstate->curexc_traceback;
201 tstate->curexc_type = 0;
202 tstate->curexc_value = 0;
203 tstate->curexc_traceback = 0;
H A DGenerator.c200 PyThreadState *tstate = PyThreadState_GET();
204 Py_XINCREF(tstate->frame);
206 f->f_back = tstate->frame;
/external/ppp/pppd/include/net/
H A Dslcompress.h120 struct cstate *last_cs; /* most recently used tstate */
134 struct cstate tstate[MAX_STATES]; /* xmit connection states */ member in struct:slcompress
H A Dvjcompress.h119 struct cstate *last_cs; /* most recently used tstate */
126 struct cstate tstate[MAX_STATES]; /* xmit connection states */ member in struct:vjcompress
/external/chromium_org/third_party/bintrees/bintrees/
H A Dcwalker.c2883 PyThreadState *tstate = PyThreadState_GET(); local
2884 tmp_type = tstate->curexc_type;
2885 tmp_value = tstate->curexc_value;
2886 tmp_tb = tstate->curexc_traceback;
2887 tstate->curexc_type = type;
2888 tstate->curexc_value = value;
2889 tstate->curexc_traceback = tb;
2899 PyThreadState *tstate = PyThreadState_GET(); local
2900 *type = tstate->curexc_type;
2901 *value = tstate
3047 PyThreadState *tstate = PyThreadState_GET(); local
[all...]
H A Dqavltree.c2365 PyThreadState *tstate = PyThreadState_GET(); local
2366 tmp_type = tstate->curexc_type;
2367 tmp_value = tstate->curexc_value;
2368 tmp_tb = tstate->curexc_traceback;
2369 tstate->curexc_type = type;
2370 tstate->curexc_value = value;
2371 tstate->curexc_traceback = tb;
2381 PyThreadState *tstate = PyThreadState_GET(); local
2382 *type = tstate->curexc_type;
2383 *value = tstate
2529 PyThreadState *tstate = PyThreadState_GET(); local
[all...]
H A Dqbintree.c2360 PyThreadState *tstate = PyThreadState_GET(); local
2361 tmp_type = tstate->curexc_type;
2362 tmp_value = tstate->curexc_value;
2363 tmp_tb = tstate->curexc_traceback;
2364 tstate->curexc_type = type;
2365 tstate->curexc_value = value;
2366 tstate->curexc_traceback = tb;
2376 PyThreadState *tstate = PyThreadState_GET(); local
2377 *type = tstate->curexc_type;
2378 *value = tstate
2524 PyThreadState *tstate = PyThreadState_GET(); local
[all...]
H A Dqrbtree.c2362 PyThreadState *tstate = PyThreadState_GET(); local
2363 tmp_type = tstate->curexc_type;
2364 tmp_value = tstate->curexc_value;
2365 tmp_tb = tstate->curexc_traceback;
2366 tstate->curexc_type = type;
2367 tstate->curexc_value = value;
2368 tstate->curexc_traceback = tb;
2378 PyThreadState *tstate = PyThreadState_GET(); local
2379 *type = tstate->curexc_type;
2380 *value = tstate
2526 PyThreadState *tstate = PyThreadState_GET(); local
[all...]
/external/chromium_org/third_party/cython/src/Cython/Debugger/
H A Dlibpython.py2211 tstate = frame.read_var('tstate').dereference()
2212 if gdb.parse_and_eval('tstate->frame == f'):
2213 # tstate local variable initialized, check for an exception
2214 inf_type = tstate['curexc_type']
2215 inf_value = tstate['curexc_value']
2220 # Could not read the variable tstate or it's memory, it's ok
/external/mksh/src/
H A Dsh.h1240 struct tstate { struct
1847 void ktwalk(struct tstate *, struct table *);
1848 struct tbl *ktnext(struct tstate *);
H A Dmain.c1779 ktwalk(struct tstate *ts, struct table *tp)
1786 ktnext(struct tstate *ts)
H A Dexec.c1175 struct tstate ts;
H A Dfuncs.c1203 struct tstate ts;
/external/lldb/tools/debugserver/source/
H A DRNBRemote.cpp3875 nub_state_t tstate = DNBThreadGetState (pid, action.tid);
3876 if (tstate == eStateInvalid || tstate == eStateExited)
/external/strace/
H A Dsyscall.c2380 if (check_errno && sparc_regs.tstate & 0x1100000000UL) {

Completed in 301 milliseconds