Home
last modified time | relevance | path

Searched refs:PyModule_AddObject (Results 1 – 25 of 169) sorted by relevance

1234567

/external/python/cpython3/Modules/
D_weakref.c149 if (PyModule_AddObject(module, "ref", (PyObject *) &_PyWeakref_RefType) < 0) { in weakref_exec()
154 if (PyModule_AddObject(module, "ReferenceType", in weakref_exec()
160 if (PyModule_AddObject(module, "ProxyType", in weakref_exec()
166 if (PyModule_AddObject(module, "CallableProxyType", in weakref_exec()
Dxxlimited_35.c259 if (PyModule_AddObject(m, "error", ErrorObject) < 0) { in xx_modexec()
269 if (PyModule_AddObject(m, "Xxo", Xxo_Type) < 0) { in xx_modexec()
279 if (PyModule_AddObject(m, "Str", o) < 0) { in xx_modexec()
289 if (PyModule_AddObject(m, "Null", o) < 0) { in xx_modexec()
D_testcapimodule.c8019 PyModule_AddObject(m, "_test_structmembersType", (PyObject *)&test_structmembersType); in PyInit__testcapi()
8023 PyModule_AddObject(m, "matmulType", (PyObject *)&matmulType); in PyInit__testcapi()
8028 PyModule_AddObject(m, "ipowType", (PyObject *)&ipowType); in PyInit__testcapi()
8033 PyModule_AddObject(m, "awaitType", (PyObject *)&awaitType); in PyInit__testcapi()
8039 PyModule_AddObject(m, "MyList", (PyObject *)&MyList_Type); in PyInit__testcapi()
8044 PyModule_AddObject(m, "MethodDescriptorBase", (PyObject *)&MethodDescriptorBase_Type); in PyInit__testcapi()
8050 PyModule_AddObject(m, "MethodDescriptorDerived", (PyObject *)&MethodDescriptorDerived_Type); in PyInit__testcapi()
8056 PyModule_AddObject(m, "MethodDescriptorNopGet", (PyObject *)&MethodDescriptorNopGet_Type); in PyInit__testcapi()
8062 PyModule_AddObject(m, "MethodDescriptor2", (PyObject *)&MethodDescriptor2_Type); in PyInit__testcapi()
8067 PyModule_AddObject(m, "GenericAlias", (PyObject *)&GenericAlias_Type); in PyInit__testcapi()
[all …]
D_stat.c595 if (PyModule_AddObject(module, "IO_REPARSE_TAG_SYMLINK", in stat_exec()
599 if (PyModule_AddObject(module, "IO_REPARSE_TAG_MOUNT_POINT", in stat_exec()
603 if (PyModule_AddObject(module, "IO_REPARSE_TAG_APPEXECLINK", in stat_exec()
D_testmultiphase.c392 if (PyModule_AddObject(m, "Example", temp) != 0) { in execfunc()
403 if (PyModule_AddObject(m, "error", temp) != 0) { in execfunc()
413 if (PyModule_AddObject(m, "Str", temp) != 0) { in execfunc()
840 if (PyModule_AddObject(m, "StateAccessType", temp) != 0) { in meth_state_access_exec()
Dxxsubtype.c283 if (PyModule_AddObject(m, "spamlist", in xxsubtype_exec()
288 if (PyModule_AddObject(m, "spamdict", in xxsubtype_exec()
/external/python/cpython2/Modules/
D_weakref.c139 PyModule_AddObject(m, "ref", in init_weakref()
142 PyModule_AddObject(m, "ReferenceType", in init_weakref()
145 PyModule_AddObject(m, "ProxyType", in init_weakref()
148 PyModule_AddObject(m, "CallableProxyType", in init_weakref()
D_testcapimodule.c2962 PyModule_AddObject(m, "_test_structmembersType", (PyObject *)&test_structmembersType); in init_testcapi()
2964 PyModule_AddObject(m, "CHAR_MAX", PyInt_FromLong(CHAR_MAX)); in init_testcapi()
2965 PyModule_AddObject(m, "CHAR_MIN", PyInt_FromLong(CHAR_MIN)); in init_testcapi()
2966 PyModule_AddObject(m, "UCHAR_MAX", PyInt_FromLong(UCHAR_MAX)); in init_testcapi()
2967 PyModule_AddObject(m, "SHRT_MAX", PyInt_FromLong(SHRT_MAX)); in init_testcapi()
2968 PyModule_AddObject(m, "SHRT_MIN", PyInt_FromLong(SHRT_MIN)); in init_testcapi()
2969 PyModule_AddObject(m, "USHRT_MAX", PyInt_FromLong(USHRT_MAX)); in init_testcapi()
2970 PyModule_AddObject(m, "INT_MAX", PyLong_FromLong(INT_MAX)); in init_testcapi()
2971 PyModule_AddObject(m, "INT_MIN", PyLong_FromLong(INT_MIN)); in init_testcapi()
2972 PyModule_AddObject(m, "UINT_MAX", PyLong_FromUnsignedLong(UINT_MAX)); in init_testcapi()
[all …]
Dxxmodule.c368 PyModule_AddObject(m, "error", ErrorObject); in initxx()
373 PyModule_AddObject(m, "Str", (PyObject *)&Str_Type); in initxx()
378 PyModule_AddObject(m, "Null", (PyObject *)&Null_Type); in initxx()
Dresource.c261 PyModule_AddObject(m, "error", ResourceError); in initresource()
266 PyModule_AddObject(m, "struct_rusage", in initresource()
343 PyModule_AddObject(m, "RLIM_INFINITY", v); in initresource()
Dpwdmodule.c203 PyModule_AddObject(m, "struct_passwd", (PyObject *) &StructPwdType);
206 PyModule_AddObject(m, "struct_pwent", (PyObject *) &StructPwdType);
Dtimemodule.c823 PyModule_AddObject(m, "tzname", in inittimezone()
850 PyModule_AddObject(m, "tzname", in inittimezone()
858 PyModule_AddObject(m, "tzname", in inittimezone()
870 PyModule_AddObject(m, "tzname", in inittimezone()
985 PyModule_AddObject(m, "struct_time", (PyObject*) &StructTimeType); in inittime()
Dxxsubtype.c289 if (PyModule_AddObject(m, "spamlist", in initxxsubtype()
294 if (PyModule_AddObject(m, "spamdict", in initxxsubtype()
/external/python/cpython2/Modules/_multiprocessing/
Dmultiprocessing.c274 PyModule_AddObject(module, "Connection", (PyObject*)&ConnectionType); in init_multiprocessing()
295 PyModule_AddObject(module, "SemLock", (PyObject*)&SemLockType); in init_multiprocessing()
303 PyModule_AddObject(module, "PipeConnection", in init_multiprocessing()
310 PyModule_AddObject(module, "win32", temp); in init_multiprocessing()
350 if (PyModule_AddObject(module, "flags", temp) < 0) in init_multiprocessing()
/external/python/cpython2/Modules/_sqlite/
Dmodule.c323 PyModule_AddObject(module, "Connection", (PyObject*) &pysqlite_ConnectionType); in init_sqlite3()
325 PyModule_AddObject(module, "Cursor", (PyObject*) &pysqlite_CursorType); in init_sqlite3()
327 PyModule_AddObject(module, "Statement", (PyObject*)&pysqlite_StatementType); in init_sqlite3()
329 PyModule_AddObject(module, "Cache", (PyObject*) &pysqlite_CacheType); in init_sqlite3()
331 PyModule_AddObject(module, "PrepareProtocol", (PyObject*) &pysqlite_PrepareProtocolType); in init_sqlite3()
333 PyModule_AddObject(module, "Row", (PyObject*) &pysqlite_RowType); in init_sqlite3()
/external/rust/crates/grpcio-sys/grpc/third_party/upb/python/
Dprotobuf.c108 PyModule_AddObject(m, "__internal_wktbases", state->wkt_bases); in PyUpb_GetWktBases()
265 return type && PyModule_AddObject(m, name, type) == 0 ? (PyTypeObject*)type in AddObject()
282 if (PyModule_AddObject(m, name, type) < 0) { in PyUpb_AddClass()
293 if (PyModule_AddObject(m, name, type) < 0) { in PyUpb_AddClassWithBases()
/external/python/cpython2/Mac/Modules/carbonevt/
D_CarbonEvtmodule.c2161 PyModule_AddObject(m, "EventRef", (PyObject *)&EventRef_Type); in init_CarbonEvt()
2164 PyModule_AddObject(m, "EventRefType", (PyObject *)&EventRef_Type); in init_CarbonEvt()
2168 PyModule_AddObject(m, "EventQueueRef", (PyObject *)&EventQueueRef_Type); in init_CarbonEvt()
2171 PyModule_AddObject(m, "EventQueueRefType", (PyObject *)&EventQueueRef_Type); in init_CarbonEvt()
2175 PyModule_AddObject(m, "EventLoopRef", (PyObject *)&EventLoopRef_Type); in init_CarbonEvt()
2178 PyModule_AddObject(m, "EventLoopRefType", (PyObject *)&EventLoopRef_Type); in init_CarbonEvt()
2182 PyModule_AddObject(m, "EventLoopTimerRef", (PyObject *)&EventLoopTimerRef_Type); in init_CarbonEvt()
2185 PyModule_AddObject(m, "EventLoopTimerRefType", (PyObject *)&EventLoopTimerRef_Type); in init_CarbonEvt()
2189 PyModule_AddObject(m, "EventHandlerRef", (PyObject *)&EventHandlerRef_Type); in init_CarbonEvt()
2192 PyModule_AddObject(m, "EventHandlerRefType", (PyObject *)&EventHandlerRef_Type); in init_CarbonEvt()
[all …]
/external/cronet/third_party/protobuf/python/google/protobuf/pyext/
Dmessage.cc2909 PyModule_AddObject(m, "MessageMeta", in InitProto2MessageModule()
2927 PyModule_AddObject(m, "Message", reinterpret_cast<PyObject*>(CMessage_Type)); in InitProto2MessageModule()
2935 PyModule_AddObject( in InitProto2MessageModule()
2943 PyModule_AddObject( in InitProto2MessageModule()
2973 PyModule_AddObject(m, "UnknownFieldSet", in InitProto2MessageModule()
2980 PyModule_AddObject(m, "UnknownField", in InitProto2MessageModule()
2987 PyModule_AddObject(m, "ScalarMapContainer", in InitProto2MessageModule()
2989 PyModule_AddObject(m, "MessageMapContainer", in InitProto2MessageModule()
2991 PyModule_AddObject(m, "MapIterator", in InitProto2MessageModule()
2997 PyModule_AddObject(m, "ExtensionDict", in InitProto2MessageModule()
[all …]
/external/protobuf/python/google/protobuf/pyext/
Dmessage.cc2910 PyModule_AddObject(m, "MessageMeta", in InitProto2MessageModule()
2928 PyModule_AddObject(m, "Message", reinterpret_cast<PyObject*>(CMessage_Type)); in InitProto2MessageModule()
2936 PyModule_AddObject( in InitProto2MessageModule()
2944 PyModule_AddObject( in InitProto2MessageModule()
2978 PyModule_AddObject(m, "UnknownFieldSet", in InitProto2MessageModule()
2993 PyModule_AddObject(m, "ScalarMapContainer", in InitProto2MessageModule()
2995 PyModule_AddObject(m, "MessageMapContainer", in InitProto2MessageModule()
2997 PyModule_AddObject(m, "MapIterator", in InitProto2MessageModule()
3003 PyModule_AddObject(m, "ExtensionDict", in InitProto2MessageModule()
3008 PyModule_AddObject(m, "ExtensionIterator", in InitProto2MessageModule()
[all …]
/external/python/cpython2/Doc/includes/
Dnoddy.c52 PyModule_AddObject(m, "Noddy", (PyObject *)&noddy_NoddyType); in initnoddy()
Dshoddy.c89 PyModule_AddObject(m, "Shoddy", (PyObject *) &ShoddyType); in initshoddy()
/external/chromium-trace/catapult/common/py_vulcanize/third_party/rcssmin/_setup/include/
Dcext.h129 if (PyModule_AddObject(module, name, (PyObject *)(type)) < 0) \
134 if (PyModule_AddObject( \
/external/python/cpython3/Doc/includes/
Dcustom.c38 if (PyModule_AddObject(m, "Custom", (PyObject *) &CustomType) < 0) { in PyInit_custom()
/external/python/cpython2/Mac/Modules/ibcarbon/
D_IBCarbon.c262 PyModule_AddObject(m, "IBNibRef", (PyObject *)&IBNibRef_Type); in init_IBCarbon()
265 PyModule_AddObject(m, "IBNibRefType", (PyObject *)&IBNibRef_Type); in init_IBCarbon()
/external/chromium-trace/catapult/common/py_vulcanize/third_party/rjsmin/_setup/include/
Dcext.h167 if (PyModule_AddObject(module, name, (PyObject *)(type)) < 0) \
172 if (PyModule_AddObject( \

1234567