Lines Matching refs:PyObject

58 static PyObject*
69 return (PyObject*) self;
80 static PyObject*
81 sp_handle_detach(sp_handle_object* self, PyObject* args)
96 static PyObject*
97 sp_handle_close(sp_handle_object* self, PyObject* args)
124 static PyObject*
127 return Py_FindMethod(sp_handle_methods, (PyObject*) self, name);
130 static PyObject*
164 static PyObject *
165 sp_GetStdHandle(PyObject* self, PyObject* args)
194 static PyObject *
195 sp_GetCurrentProcess(PyObject* self, PyObject* args)
214 static PyObject *
215 sp_DuplicateHandle(PyObject* self, PyObject* args)
264 static PyObject *
265 sp_CreatePipe(PyObject* self, PyObject* args)
271 PyObject* pipe_attributes; /* ignored */
291 getint(PyObject* obj, char* name)
293 PyObject* value;
307 gethandle(PyObject* obj, char* name)
325 static PyObject*
326 getenvironment(PyObject* environment)
329 PyObject* out = NULL;
330 PyObject* keys;
331 PyObject* values;
356 PyObject* key = PyList_GET_ITEM(keys, i);
357 PyObject* value = PyList_GET_ITEM(values, i);
412 static PyObject *
413 sp_CreateProcess(PyObject* self, PyObject* args)
418 PyObject* environment;
422 PyObject* process_attributes; /* ignored */
423 PyObject* thread_attributes; /* ignored */
426 PyObject* env_mapping;
428 PyObject* startup_info;
493 static PyObject *
494 sp_TerminateProcess(PyObject* self, PyObject* args)
518 static PyObject *
519 sp_GetExitCodeProcess(PyObject* self, PyObject* args)
543 static PyObject *
544 sp_WaitForSingleObject(PyObject* self, PyObject* args)
570 static PyObject *
571 sp_GetVersion(PyObject* self, PyObject* args)
591 static PyObject *
592 sp_GetModuleFileName(PyObject* self, PyObject* args)
634 defint(PyObject* d, const char* name, int value)
636 PyObject* v = PyInt_FromLong((long) value);
650 PyObject *d;
651 PyObject *m;