Home
last modified time | relevance | path

Searched refs:data_stack_index (Results 1 – 2 of 2) sorted by relevance

/external/chromium-trace/catapult/third_party/coverage/coverage/ctracer/
Dtracer.c111 Py_XDECREF(self->data_stack_index); in CTracer_dealloc()
202 if (self->data_stack_index == NULL) { in CTracer_set_pdata_stack()
210 self->data_stack_index = PyObject_CallMethod(weakref, "WeakKeyDictionary", NULL); in CTracer_set_pdata_stack()
213 if (self->data_stack_index == NULL) { in CTracer_set_pdata_stack()
223 stack_index = PyObject_GetItem(self->data_stack_index, co_obj); in CTracer_set_pdata_stack()
234 if (PyObject_SetItem(self->data_stack_index, co_obj, stack_index) < 0) { in CTracer_set_pdata_stack()
Dtracer.h48 PyObject * data_stack_index; /* Used if we are doing concurrency. */ member