Searched refs:PyDescriptorPool (Results 1 – 5 of 5) sorted by relevance
/external/protobuf/python/google/protobuf/pyext/ |
D | descriptor_pool.h | 58 typedef struct PyDescriptorPool { struct 91 } PyDescriptorPool; argument 100 const Descriptor* FindMessageTypeByName(PyDescriptorPool* self, 105 int RegisterMessageClass(PyDescriptorPool* self, 113 CMessageClass* GetMessageClass(PyDescriptorPool* self, 122 PyObject* FindMessageByName(PyDescriptorPool* self, PyObject* name); 128 PyObject* FindFieldByName(PyDescriptorPool* self, PyObject* name); 134 PyObject* FindExtensionByName(PyDescriptorPool* self, PyObject* arg); 140 PyObject* FindEnumTypeByName(PyDescriptorPool* self, PyObject* arg); 146 PyObject* FindOneofByName(PyDescriptorPool* self, PyObject* arg); [all …]
|
D | descriptor_pool.cc | 60 static hash_map<const DescriptorPool*, PyDescriptorPool*> descriptor_pool_map; 66 static PyDescriptorPool* _CreateDescriptorPool() { in _CreateDescriptorPool() 67 PyDescriptorPool* cpool = PyObject_New( in _CreateDescriptorPool() 68 PyDescriptorPool, &PyDescriptorPool_Type); in _CreateDescriptorPool() 84 new PyDescriptorPool::ClassesByMessageMap(); in _CreateDescriptorPool() 96 static PyDescriptorPool* PyDescriptorPool_NewWithUnderlay( in PyDescriptorPool_NewWithUnderlay() 98 PyDescriptorPool* cpool = _CreateDescriptorPool(); in PyDescriptorPool_NewWithUnderlay() 115 static PyDescriptorPool* PyDescriptorPool_NewWithDatabase( in PyDescriptorPool_NewWithDatabase() 117 PyDescriptorPool* cpool = _CreateDescriptorPool(); in PyDescriptorPool_NewWithDatabase() 153 static void Dealloc(PyDescriptorPool* self) { in Dealloc() [all …]
|
D | message.h | 65 struct PyDescriptorPool; 142 PyDescriptorPool* py_descriptor_pool; 270 PyDescriptorPool* GetDescriptorPoolForMessage(CMessage* message);
|
D | descriptor.cc | 187 PyDescriptorPool* pool = GetDescriptorPool_FromPool( in GetOrBuildOptions() 287 PyDescriptorPool* pool; 342 PyDescriptorPool* pool = GetDescriptorPool_FromPool( in NewInternedDescriptor()
|
D | message.cc | 755 PyDescriptorPool* GetDescriptorPoolForMessage(CMessage* message) { in CheckAndGetInteger() 1933 PyDescriptorPool* pool = GetDescriptorPoolForMessage(self); in CheckAndGetInteger() 2312 PyDescriptorPool* pool = GetDescriptorPoolForMessage(self); in CheckAndGetInteger()
|