Home
last modified time | relevance | path

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

/third_party/python/Python/
Dcontext.c196 PyContextVar_Get(PyObject *ovar, PyObject *def, PyObject **val) in PyContextVar_Get() argument
198 ENSURE_ContextVar(ovar, -1) in PyContextVar_Get()
199 PyContextVar *var = (PyContextVar *)ovar; in PyContextVar_Get()
259 PyContextVar_Set(PyObject *ovar, PyObject *val) in PyContextVar_Set() argument
261 ENSURE_ContextVar(ovar, NULL) in PyContextVar_Set()
262 PyContextVar *var = (PyContextVar *)ovar; in PyContextVar_Set()
295 PyContextVar_Reset(PyObject *ovar, PyObject *otok) in PyContextVar_Reset() argument
297 ENSURE_ContextVar(ovar, -1) in PyContextVar_Reset()
299 PyContextVar *var = (PyContextVar *)ovar; in PyContextVar_Reset()