Lines Matching defs:stack
357 PyObject *stack[3];
372 /* All refs in 'stack' are borrowed. */
374 stack[0] = func;
376 stack[1] = arg;
379 stack[nargs] = (PyObject *)ctx;
381 handle = PyObject_Vectorcall(callable, stack, nargs, context_kwname);
2284 Return the list of stack frames for this task's coroutine.
2286 If the coroutine is not done, this returns the stack where it is
2296 meaning differs depending on whether a stack or a traceback is
2297 returned: the newest frames of a stack are returned, but the
2301 For reasons beyond our control, only one stack frame is
2320 Print the stack or traceback for this task's coroutine.
2895 PyObject *stack[2];
2896 stack[0] = wrapper;
2897 stack[1] = (PyObject *)task->task_context;
2898 tmp = PyObject_Vectorcall(add_cb, stack, 1, context_kwname);