HomeSort by relevance Sort by last modified time
    Searched defs:tstate (Results 1 - 12 of 12) sorted by null

  /prebuilts/python/darwin-x86/2.7.5/include/python2.7/
ceval.h 126 PyAPI_FUNC(void) PyEval_AcquireThread(PyThreadState *tstate); variable
127 PyAPI_FUNC(void) PyEval_ReleaseThread(PyThreadState *tstate); variable
  /prebuilts/python/linux-x86/2.7.5/include/python2.7/
ceval.h 126 PyAPI_FUNC(void) PyEval_AcquireThread(PyThreadState *tstate); variable
127 PyAPI_FUNC(void) PyEval_ReleaseThread(PyThreadState *tstate); variable
  /external/chromium_org/third_party/cython/src/Cython/Utility/
Profile.c 51 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->use_tracing = 0;
115 PyThreadState* tstate = PyThreadState_GET(); local
    [all...]
Exceptions.c 18 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->curexc_value
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...]
ObjectHandling.c 194 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;
    [all...]
  /external/ppp/pppd/include/net/
vjcompress.h 119 struct cstate *last_cs; /* most recently used tstate */
126 struct cstate tstate[MAX_STATES]; /* xmit connection states */ member in struct:vjcompress
slcompress.h 120 struct cstate *last_cs; /* most recently used tstate */
134 struct cstate tstate[MAX_STATES]; /* xmit connection states */ member in struct:slcompress
  /external/chromium_org/third_party/bintrees/bintrees/
cwalker.c 2883 PyThreadState *tstate = PyThreadState_GET(); local
2899 PyThreadState *tstate = PyThreadState_GET(); local
3047 PyThreadState *tstate = PyThreadState_GET(); local
    [all...]
qavltree.c 2365 PyThreadState *tstate = PyThreadState_GET(); local
2381 PyThreadState *tstate = PyThreadState_GET(); local
2529 PyThreadState *tstate = PyThreadState_GET(); local
    [all...]
qbintree.c 2360 PyThreadState *tstate = PyThreadState_GET(); local
2376 PyThreadState *tstate = PyThreadState_GET(); local
2524 PyThreadState *tstate = PyThreadState_GET(); local
    [all...]
qrbtree.c 2362 PyThreadState *tstate = PyThreadState_GET(); local
2378 PyThreadState *tstate = PyThreadState_GET(); local
2526 PyThreadState *tstate = PyThreadState_GET(); local
    [all...]
  /external/mksh/src/
sh.h 1240 struct tstate { struct
    [all...]

Completed in 206 milliseconds