Lines Matching refs:runtime

331     PyRef globalDict, runtime;  in initialize()  local
332 getRuntimeImpl( globalDict , runtime ); in initialize()
333 RuntimeImpl *impl = reinterpret_cast< RuntimeImpl * > (runtime.get()); in initialize()
335 if( runtime.is() && impl->cargo->valid ) in initialize()
349 PyRef globalDict, runtime; in isInitialized() local
350 getRuntimeImpl( globalDict , runtime ); in isInitialized()
351 RuntimeImpl *impl = reinterpret_cast< RuntimeImpl * > (runtime.get()); in isInitialized()
352 return runtime.is() && impl->cargo->valid; in isInitialized()
357 PyRef globalDict, runtime; in finalize() local
358 getRuntimeImpl( globalDict , runtime ); in finalize()
359 RuntimeImpl *impl = reinterpret_cast< RuntimeImpl * > (runtime.get()); in finalize()
360 if( !runtime.is() || ! impl->cargo->valid ) in finalize()
375 PyRef globalDict, runtime; in Runtime() local
376 getRuntimeImpl( globalDict , runtime ); in Runtime()
377 if( ! runtime.is() ) in Runtime()
384 impl = reinterpret_cast< RuntimeImpl * > (runtime.get()); in Runtime()
385 Py_XINCREF( runtime.get() ); in Runtime()
765 Runtime runtime; in pyObject2Any() local
767 if( PyObject_IsInstance( o, getByteSequenceClass( runtime ).get() ) ) in pyObject2Any()
786 if( PyObject_IsInstance( o, getTypeClass( runtime ).get() ) ) in pyObject2Any()
791 else if( PyObject_IsInstance( o, getEnumClass( runtime ).get() ) ) in pyObject2Any()
834 else if( PyObject_IsInstance( o, getCharClass( runtime ).get() ) ) in pyObject2Any()
839 else if( PyObject_IsInstance( o, getAnyClass( runtime ).get() ) ) in pyObject2Any()