Lines Matching refs:impl
333 RuntimeImpl *impl = reinterpret_cast< RuntimeImpl * > (runtime.get()); in initialize() local
335 if( runtime.is() && impl->cargo->valid ) in initialize()
351 RuntimeImpl *impl = reinterpret_cast< RuntimeImpl * > (runtime.get()); in isInitialized() local
352 return runtime.is() && impl->cargo->valid; in isInitialized()
359 RuntimeImpl *impl = reinterpret_cast< RuntimeImpl * > (runtime.get()); in finalize() local
360 if( !runtime.is() || ! impl->cargo->valid ) in finalize()
366 impl->cargo->valid = false; in finalize()
367 impl->cargo->xInvocation.clear(); in finalize()
368 impl->cargo->xContext.clear(); in finalize()
369 impl->cargo->xTypeConverter.clear(); in finalize()
373 : impl( 0 ) in Runtime()
384 impl = reinterpret_cast< RuntimeImpl * > (runtime.get()); in Runtime()
390 impl = r.impl; in Runtime()
391 Py_XINCREF( reinterpret_cast< PyObject * >(impl) ); in Runtime()
396 Py_XDECREF( reinterpret_cast< PyObject * >(impl) ); in ~Runtime()
401 PyRef temp( reinterpret_cast< PyObject * >(r.impl) ); in operator =()
403 Py_XDECREF( reinterpret_cast< PyObject * >(impl) ); in operator =()
404 impl = r.impl; in operator =()
413 if( ! impl->cargo->valid ) in any2PyObject()
659 if( ! impl->cargo->valid ) in pyObject2Any()
871 PyRef2Adapter::iterator ii = impl->cargo->mappedObjects.find( PyRef( o ) ); in pyObject2Any()
872 if( ii != impl->cargo->mappedObjects.end() ) in pyObject2Any()
887 mappedObject = impl->cargo->xAdapterFactory->createAdapter( in pyObject2Any()
901 impl->cargo->mappedObjects[ PyRef(o) ] = in pyObject2Any()
929 PyRef unoModule( impl ? impl->cargo->getUnoModule() : 0 ); in extractUnoException()