Bike-X  0.8
 All Data Structures Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros
Wrap_wrap.c File Reference
#include <Python.h>
#include <string.h>
Include dependency graph for Wrap_wrap.c:

Go to the source code of this file.

Data Structures

struct  swig_type_info
 
struct  swig_cast_info
 
struct  swig_module_info
 
struct  PyHeapTypeObject
 
struct  swig_const_info
 
struct  SwigPyClientData
 
struct  SwigPyObject
 
struct  SwigPyPacked
 
struct  swig_globalvar
 
struct  swig_varlinkobject
 

Macros

#define SWIGPYTHON
 
#define SWIG_PYTHON_DIRECTOR_NO_VTABLE
 
#define SWIGTEMPLATEDISAMBIGUATOR
 
#define SWIGINLINE
 
#define SWIGUNUSED
 
#define SWIGUNUSEDPARM(p)   p SWIGUNUSED
 
#define SWIGINTERN   static SWIGUNUSED
 
#define SWIGINTERNINLINE   SWIGINTERN SWIGINLINE
 
#define SWIGEXPORT
 
#define SWIGSTDCALL
 
#define SWIG_RUNTIME_VERSION   "4"
 
#define SWIG_TYPE_TABLE_NAME
 
#define SWIGRUNTIME   SWIGINTERN
 
#define SWIGRUNTIMEINLINE   SWIGRUNTIME SWIGINLINE
 
#define SWIG_BUFFER_SIZE   1024
 
#define SWIG_POINTER_DISOWN   0x1
 
#define SWIG_CAST_NEW_MEMORY   0x2
 
#define SWIG_POINTER_OWN   0x1
 
#define SWIG_OK   (0)
 
#define SWIG_ERROR   (-1)
 
#define SWIG_IsOK(r)   (r >= 0)
 
#define SWIG_ArgError(r)   ((r != SWIG_ERROR) ? r : SWIG_TypeError)
 
#define SWIG_CASTRANKLIMIT   (1 << 8)
 
#define SWIG_NEWOBJMASK   (SWIG_CASTRANKLIMIT << 1)
 
#define SWIG_TMPOBJMASK   (SWIG_NEWOBJMASK << 1)
 
#define SWIG_BADOBJ   (SWIG_ERROR)
 
#define SWIG_OLDOBJ   (SWIG_OK)
 
#define SWIG_NEWOBJ   (SWIG_OK | SWIG_NEWOBJMASK)
 
#define SWIG_TMPOBJ   (SWIG_OK | SWIG_TMPOBJMASK)
 
#define SWIG_AddNewMask(r)   (SWIG_IsOK(r) ? (r | SWIG_NEWOBJMASK) : r)
 
#define SWIG_DelNewMask(r)   (SWIG_IsOK(r) ? (r & ~SWIG_NEWOBJMASK) : r)
 
#define SWIG_IsNewObj(r)   (SWIG_IsOK(r) && (r & SWIG_NEWOBJMASK))
 
#define SWIG_AddTmpMask(r)   (SWIG_IsOK(r) ? (r | SWIG_TMPOBJMASK) : r)
 
#define SWIG_DelTmpMask(r)   (SWIG_IsOK(r) ? (r & ~SWIG_TMPOBJMASK) : r)
 
#define SWIG_IsTmpObj(r)   (SWIG_IsOK(r) && (r & SWIG_TMPOBJMASK))
 
#define SWIG_AddCast(r)   (r)
 
#define SWIG_CheckState(r)   (SWIG_IsOK(r) ? 1 : 0)
 
#define SWIG_UnknownError   -1
 
#define SWIG_IOError   -2
 
#define SWIG_RuntimeError   -3
 
#define SWIG_IndexError   -4
 
#define SWIG_TypeError   -5
 
#define SWIG_DivisionByZero   -6
 
#define SWIG_OverflowError   -7
 
#define SWIG_SyntaxError   -8
 
#define SWIG_ValueError   -9
 
#define SWIG_SystemError   -10
 
#define SWIG_AttributeError   -11
 
#define SWIG_MemoryError   -12
 
#define SWIG_NullReferenceError   -13
 
#define Py_TYPE(op)   ((op)->ob_type)
 
#define SWIG_Python_str_FromFormat   PyString_FromFormat
 
#define SWIG_Python_str_DelForPy3(x)
 
#define PyOS_snprintf   snprintf
 
#define SWIG_PYBUFFER_SIZE   1024
 
#define PyObject_Del(op)   PyMem_DEL((op))
 
#define PyObject_DEL   PyObject_Del
 
#define PyExc_StopIteration   PyExc_RuntimeError
 
#define PyObject_GenericGetAttr   0
 
#define Py_NotImplemented   PyExc_RuntimeError
 
#define PyString_AsStringAndSize(obj, s, len)   {*s = PyString_AsString(obj); *len = *s ? strlen(*s) : 0;}
 
#define PySequence_Size   PySequence_Length
 
#define PY_SSIZE_T_MAX   INT_MAX
 
#define PY_SSIZE_T_MIN   INT_MIN
 
#define PyInt_FromSize_t(x)   PyInt_FromLong((long)x)
 
#define Py_VISIT(op)
 
#define PyDescr_TYPE(x)   (((PyDescrObject *)(x))->d_type)
 
#define PyDescr_NAME(x)   (((PyDescrObject *)(x))->d_name)
 
#define SWIG_PYTHON_INITIALIZE_THREADS
 
#define SWIG_PYTHON_THREAD_BEGIN_BLOCK
 
#define SWIG_PYTHON_THREAD_END_BLOCK
 
#define SWIG_PYTHON_THREAD_BEGIN_ALLOW
 
#define SWIG_PYTHON_THREAD_END_ALLOW
 
#define SWIG_PY_POINTER   4
 
#define SWIG_PY_BINARY   5
 
#define SWIG_Python_ConvertPtr(obj, pptr, type, flags)   SWIG_Python_ConvertPtrAndOwn(obj, pptr, type, flags, 0)
 
#define SWIG_ConvertPtr(obj, pptr, type, flags)   SWIG_Python_ConvertPtr(obj, pptr, type, flags)
 
#define SWIG_ConvertPtrAndOwn(obj, pptr, type, flags, own)   SWIG_Python_ConvertPtrAndOwn(obj, pptr, type, flags, own)
 
#define SWIG_NewPointerObj(ptr, type, flags)   SWIG_Python_NewPointerObj(NULL, ptr, type, flags)
 
#define SWIG_InternalNewPointerObj(ptr, type, flags)   SWIG_Python_NewPointerObj(NULL, ptr, type, flags)
 
#define SWIG_CheckImplicit(ty)   SWIG_Python_CheckImplicit(ty)
 
#define SWIG_AcquirePtr(ptr, src)   SWIG_Python_AcquirePtr(ptr, src)
 
#define swig_owntype   int
 
#define SWIG_ConvertPacked(obj, ptr, sz, ty)   SWIG_Python_ConvertPacked(obj, ptr, sz, ty)
 
#define SWIG_NewPackedObj(ptr, sz, type)   SWIG_Python_NewPackedObj(ptr, sz, type)
 
#define SWIG_ConvertInstance(obj, pptr, type, flags)   SWIG_ConvertPtr(obj, pptr, type, flags)
 
#define SWIG_NewInstanceObj(ptr, type, flags)   SWIG_NewPointerObj(ptr, type, flags)
 
#define SWIG_ConvertFunctionPtr(obj, pptr, type)   SWIG_Python_ConvertFunctionPtr(obj, pptr, type)
 
#define SWIG_NewFunctionPtrObj(ptr, type)   SWIG_Python_NewPointerObj(NULL, ptr, type, 0)
 
#define SWIG_ConvertMember(obj, ptr, sz, ty)   SWIG_Python_ConvertPacked(obj, ptr, sz, ty)
 
#define SWIG_NewMemberObj(ptr, sz, type)   SWIG_Python_NewPackedObj(ptr, sz, type)
 
#define SWIG_GetModule(clientdata)   SWIG_Python_GetModule(clientdata)
 
#define SWIG_SetModule(clientdata, pointer)   SWIG_Python_SetModule(pointer)
 
#define SWIG_NewClientData(obj)   SwigPyClientData_New(obj)
 
#define SWIG_SetErrorObj   SWIG_Python_SetErrorObj
 
#define SWIG_SetErrorMsg   SWIG_Python_SetErrorMsg
 
#define SWIG_ErrorType(code)   SWIG_Python_ErrorType(code)
 
#define SWIG_Error(code, msg)   SWIG_Python_SetErrorMsg(SWIG_ErrorType(code), msg)
 
#define SWIG_fail   goto fail
 
#define SWIG_Python_Raise(obj, type, desc)   SWIG_Python_SetErrorObj(SWIG_Python_ExceptionType(desc), obj)
 
#define SWIG_Python_CallFunctor(functor, obj)   PyObject_CallFunction(functor, "O", obj);
 
#define SWIG_STATIC_POINTER(var)   var = 0; if (!var) var
 
#define SWIG_POINTER_NOSHADOW   (SWIG_POINTER_OWN << 1)
 
#define SWIG_POINTER_NEW   (SWIG_POINTER_NOSHADOW | SWIG_POINTER_OWN)
 
#define SWIG_POINTER_IMPLICIT_CONV   (SWIG_POINTER_DISOWN << 1)
 
#define SWIG_BUILTIN_TP_INIT   (SWIG_POINTER_OWN << 2)
 
#define SWIG_BUILTIN_INIT   (SWIG_BUILTIN_TP_INIT | SWIG_POINTER_OWN)
 
#define SWIG_POINTER_EXCEPTION   0
 
#define SWIG_arg_fail(arg)   SWIG_Python_ArgFail(arg)
 
#define SWIG_MustGetPtr(p, type, argnum, flags)   SWIG_Python_MustGetPtr(p, type, argnum, flags)
 
#define SWIG_exception_fail(code, msg)   do { SWIG_Error(code, msg); SWIG_fail; } while(0)
 
#define SWIG_contract_assert(expr, msg)   if (!(expr)) { SWIG_Error(SWIG_RuntimeError, msg); SWIG_fail; } else
 
#define SWIGTYPE_p_char   swig_types[0]
 
#define SWIG_TypeQuery(name)   SWIG_TypeQueryModule(&swig_module, &swig_module, name)
 
#define SWIG_MangledTypeQuery(name)   SWIG_MangledTypeQueryModule(&swig_module, &swig_module, name)
 
#define SWIG_init   init_startx
 
#define SWIG_name   "_startx"
 
#define SWIGVERSION   0x020011
 
#define SWIG_VERSION   SWIGVERSION
 
#define SWIG_as_voidptr(a)   (void *)((const void *)(a))
 
#define SWIG_as_voidptrptr(a)   ((void)SWIG_as_voidptr(*a),(void**)(a))
 
#define SWIG_newvarlink()   SWIG_Python_newvarlink()
 
#define SWIG_addvarlink(p, name, get_attr, set_attr)   SWIG_Python_addvarlink(p, name, get_attr, set_attr)
 
#define SWIG_InstallConstants(d, constants)   SWIG_Python_InstallConstants(d, constants)
 

Typedefs

typedef void *(* swig_converter_func )(void *, int *)
 
typedef struct swig_type_info *(* swig_dycast_func )(void **)
 
typedef struct swig_type_info swig_type_info
 
typedef struct swig_cast_info swig_cast_info
 
typedef struct swig_module_info swig_module_info
 
typedef int Py_ssize_t
 
typedef inquiry lenfunc
 
typedef intargfunc ssizeargfunc
 
typedef intintargfunc ssizessizeargfunc
 
typedef intobjargproc ssizeobjargproc
 
typedef intintobjargproc ssizessizeobjargproc
 
typedef getreadbufferproc readbufferproc
 
typedef getwritebufferproc writebufferproc
 
typedef getsegcountproc segcountproc
 
typedef getcharbufferproc charbufferproc
 
typedef destructor freefunc
 
typedef struct swig_const_info swig_const_info
 
typedef struct swig_globalvar swig_globalvar
 
typedef struct swig_varlinkobject swig_varlinkobject
 

Functions

SWIGRUNTIME int SWIG_TypeNameComp (const char *f1, const char *l1, const char *f2, const char *l2)
 
SWIGRUNTIME int SWIG_TypeCmp (const char *nb, const char *tb)
 
SWIGRUNTIME int SWIG_TypeEquiv (const char *nb, const char *tb)
 
SWIGRUNTIME swig_cast_infoSWIG_TypeCheck (const char *c, swig_type_info *ty)
 
SWIGRUNTIME swig_cast_infoSWIG_TypeCheckStruct (swig_type_info *from, swig_type_info *ty)
 
SWIGRUNTIMEINLINE void * SWIG_TypeCast (swig_cast_info *ty, void *ptr, int *newmemory)
 
SWIGRUNTIME swig_type_infoSWIG_TypeDynamicCast (swig_type_info *ty, void **ptr)
 
SWIGRUNTIMEINLINE const char * SWIG_TypeName (const swig_type_info *ty)
 
SWIGRUNTIME const char * SWIG_TypePrettyName (const swig_type_info *type)
 
SWIGRUNTIME void SWIG_TypeClientData (swig_type_info *ti, void *clientdata)
 
SWIGRUNTIME void SWIG_TypeNewClientData (swig_type_info *ti, void *clientdata)
 
SWIGRUNTIME swig_type_infoSWIG_MangledTypeQueryModule (swig_module_info *start, swig_module_info *end, const char *name)
 
SWIGRUNTIME swig_type_infoSWIG_TypeQueryModule (swig_module_info *start, swig_module_info *end, const char *name)
 
SWIGRUNTIME char * SWIG_PackData (char *c, void *ptr, size_t sz)
 
SWIGRUNTIME const char * SWIG_UnpackData (const char *c, void *ptr, size_t sz)
 
SWIGRUNTIME char * SWIG_PackVoidPtr (char *buff, void *ptr, const char *name, size_t bsz)
 
SWIGRUNTIME const char * SWIG_UnpackVoidPtr (const char *c, void **ptr, const char *name)
 
SWIGRUNTIME char * SWIG_PackDataName (char *buff, void *ptr, size_t sz, const char *name, size_t bsz)
 
SWIGRUNTIME const char * SWIG_UnpackDataName (const char *c, void *ptr, size_t sz, const char *name)
 
SWIGINTERN char * SWIG_Python_str_AsChar (PyObject *str)
 
SWIGINTERN PyObject * SWIG_Python_str_FromChar (const char *c)
 
static PyObject * PyString_FromFormat (const char *fmt,...)
 
static PyObject * PyBool_FromLong (long ok)
 
static long PyNumber_AsSsize_t (PyObject *x, void *SWIGUNUSEDPARM(exc))
 
SWIGRUNTIME PyObject * SWIG_Python_ErrorType (int code)
 
SWIGRUNTIME void SWIG_Python_AddErrorMsg (const char *mesg)
 
SWIGRUNTIME PyObject * SWIG_PyInstanceMethod_New (PyObject *SWIGUNUSEDPARM(self), PyObject *SWIGUNUSEDPARM(func))
 
SWIGINTERN void SWIG_Python_SetErrorObj (PyObject *errtype, PyObject *obj)
 
SWIGINTERN void SWIG_Python_SetErrorMsg (PyObject *errtype, const char *msg)
 
SWIGINTERN void SWIG_Python_SetConstant (PyObject *d, const char *name, PyObject *obj)
 
SWIGINTERN PyObject * SWIG_Python_AppendOutput (PyObject *result, PyObject *obj)
 
SWIGINTERN int SWIG_Python_UnpackTuple (PyObject *args, const char *name, Py_ssize_t min, Py_ssize_t max, PyObject **objs)
 
SWIGRUNTIMEINLINE PyObject * SWIG_Py_Void (void)
 
SWIGRUNTIMEINLINE int SWIG_Python_CheckImplicit (swig_type_info *ty)
 
SWIGRUNTIMEINLINE PyObject * SWIG_Python_ExceptionType (swig_type_info *desc)
 
SWIGRUNTIME SwigPyClientDataSwigPyClientData_New (PyObject *obj)
 
SWIGRUNTIME void SwigPyClientData_Del (SwigPyClientData *data)
 
SWIGRUNTIME PyObject * SwigPyObject_long (SwigPyObject *v)
 
SWIGRUNTIME PyObject * SwigPyObject_format (const char *fmt, SwigPyObject *v)
 
SWIGRUNTIME PyObject * SwigPyObject_oct (SwigPyObject *v)
 
SWIGRUNTIME PyObject * SwigPyObject_hex (SwigPyObject *v)
 
SWIGRUNTIME PyObject * SwigPyObject_repr (SwigPyObject *v, PyObject *args)
 
SWIGRUNTIME int SwigPyObject_compare (SwigPyObject *v, SwigPyObject *w)
 
SWIGRUNTIME PyObject * SwigPyObject_richcompare (SwigPyObject *v, SwigPyObject *w, int op)
 
SWIGRUNTIME PyTypeObject * SwigPyObject_TypeOnce (void)
 
SWIGRUNTIME PyTypeObject * SwigPyObject_type (void)
 
SWIGRUNTIMEINLINE int SwigPyObject_Check (PyObject *op)
 
SWIGRUNTIME PyObject * SwigPyObject_New (void *ptr, swig_type_info *ty, int own)
 
SWIGRUNTIME void SwigPyObject_dealloc (PyObject *v)
 
SWIGRUNTIME PyObject * SwigPyObject_append (PyObject *v, PyObject *next)
 
SWIGRUNTIME PyObject * SwigPyObject_next (PyObject *v, PyObject *SWIGUNUSEDPARM(args))
 
SWIGINTERN PyObject * SwigPyObject_disown (PyObject *v, PyObject *SWIGUNUSEDPARM(args))
 
SWIGINTERN PyObject * SwigPyObject_acquire (PyObject *v, PyObject *SWIGUNUSEDPARM(args))
 
SWIGINTERN PyObject * SwigPyObject_own (PyObject *v, PyObject *args)
 
SWIGINTERN PyObject * SwigPyObject_getattr (SwigPyObject *sobj, char *name)
 
SWIGRUNTIME int SwigPyPacked_print (SwigPyPacked *v, FILE *fp, int SWIGUNUSEDPARM(flags))
 
SWIGRUNTIME PyObject * SwigPyPacked_repr (SwigPyPacked *v)
 
SWIGRUNTIME PyObject * SwigPyPacked_str (SwigPyPacked *v)
 
SWIGRUNTIME int SwigPyPacked_compare (SwigPyPacked *v, SwigPyPacked *w)
 
SWIGRUNTIME PyTypeObject * SwigPyPacked_TypeOnce (void)
 
SWIGRUNTIME PyTypeObject * SwigPyPacked_type (void)
 
SWIGRUNTIMEINLINE int SwigPyPacked_Check (PyObject *op)
 
SWIGRUNTIME void SwigPyPacked_dealloc (PyObject *v)
 
SWIGRUNTIME PyObject * SwigPyPacked_New (void *ptr, size_t size, swig_type_info *ty)
 
SWIGRUNTIME swig_type_infoSwigPyPacked_UnpackData (PyObject *obj, void *ptr, size_t size)
 
SWIGRUNTIMEINLINE PyObject * _SWIG_This (void)
 
SWIGRUNTIME PyObject * SWIG_This (void)
 
SWIGRUNTIME SwigPyObjectSWIG_Python_GetSwigThis (PyObject *pyobj)
 
SWIGRUNTIME int SWIG_Python_AcquirePtr (PyObject *obj, int own)
 
SWIGRUNTIME int SWIG_Python_ConvertPtrAndOwn (PyObject *obj, void **ptr, swig_type_info *ty, int flags, int *own)
 
SWIGRUNTIME int SWIG_Python_ConvertFunctionPtr (PyObject *obj, void **ptr, swig_type_info *ty)
 
SWIGRUNTIME int SWIG_Python_ConvertPacked (PyObject *obj, void *ptr, size_t sz, swig_type_info *ty)
 
SWIGRUNTIME PyObject * SWIG_Python_NewShadowInstance (SwigPyClientData *data, PyObject *swig_this)
 
SWIGRUNTIME void SWIG_Python_SetSwigThis (PyObject *inst, PyObject *swig_this)
 
SWIGINTERN PyObject * SWIG_Python_InitShadowInstance (PyObject *args)
 
SWIGRUNTIME PyObject * SWIG_Python_NewPointerObj (PyObject *self, void *ptr, swig_type_info *type, int flags)
 
SWIGRUNTIMEINLINE PyObject * SWIG_Python_NewPackedObj (void *ptr, size_t sz, swig_type_info *type)
 
SWIGRUNTIME swig_module_infoSWIG_Python_GetModule (void *SWIGUNUSEDPARM(clientdata))
 
SWIGINTERN int PyModule_AddObject (PyObject *m, char *name, PyObject *o)
 
SWIGRUNTIME void SWIG_Python_DestroyModule (void *vptr)
 
SWIGRUNTIME void SWIG_Python_SetModule (swig_module_info *swig_module)
 
SWIGRUNTIME PyObject * SWIG_Python_TypeCache (void)
 
SWIGRUNTIME swig_type_infoSWIG_Python_TypeQuery (const char *type)
 
SWIGRUNTIME int SWIG_Python_AddErrMesg (const char *mesg, int infront)
 
SWIGRUNTIME int SWIG_Python_ArgFail (int argnum)
 
SWIGRUNTIMEINLINE const char * SwigPyObject_GetDesc (PyObject *self)
 
SWIGRUNTIME void SWIG_Python_TypeError (const char *type, PyObject *obj)
 
SWIGRUNTIME void * SWIG_Python_MustGetPtr (PyObject *obj, swig_type_info *ty, int SWIGUNUSEDPARM(argnum), int flags)
 
SWIGINTERNINLINE PyObject * SWIG_From_int (int value)
 
SWIGINTERN swig_type_infoSWIG_pchar_descriptor (void)
 
SWIGINTERNINLINE PyObject * SWIG_FromCharPtrAndSize (const char *carray, size_t size)
 
SWIGINTERNINLINE PyObject * SWIG_FromCharPtr (const char *cptr)
 
SWIGRUNTIME void SWIG_InitializeModule (void *clientdata)
 
SWIGRUNTIME void SWIG_PropagateClientData (void)
 
SWIGINTERN PyObject * swig_varlink_repr (swig_varlinkobject *SWIGUNUSEDPARM(v))
 
SWIGINTERN PyObject * swig_varlink_str (swig_varlinkobject *v)
 
SWIGINTERN int swig_varlink_print (swig_varlinkobject *v, FILE *fp, int SWIGUNUSEDPARM(flags))
 
SWIGINTERN void swig_varlink_dealloc (swig_varlinkobject *v)
 
SWIGINTERN PyObject * swig_varlink_getattr (swig_varlinkobject *v, char *n)
 
SWIGINTERN int swig_varlink_setattr (swig_varlinkobject *v, char *n, PyObject *p)
 
SWIGINTERN PyTypeObject * swig_varlink_type (void)
 
SWIGINTERN PyObject * SWIG_Python_newvarlink (void)
 
SWIGINTERN void SWIG_Python_addvarlink (PyObject *p, char *name, PyObject *(*get_attr)(void), int(*set_attr)(PyObject *p))
 
SWIGINTERN PyObject * SWIG_globals (void)
 
SWIGINTERN void SWIG_Python_InstallConstants (PyObject *d, swig_const_info constants[])
 
SWIGINTERN void SWIG_Python_FixMethods (PyMethodDef *methods, swig_const_info *const_table, swig_type_info **types, swig_type_info **types_initial)
 
SWIGEXPORT void SWIG_init (void)
 

Variables

static PyMethodDef swigobject_methods []
 
static PyObject * swig_this = NULL
 
static swig_type_infoswig_types [2]
 
static swig_module_info swig_module = {swig_types, 1, 0, 0, 0, 0}
 
static PyMethodDef SwigMethods []
 
static swig_type_info _swigt__p_char = {"_p_char", "char *", 0, 0, (void*)0, 0}
 
static swig_type_infoswig_type_initial []
 
static swig_cast_info _swigc__p_char [] = { {&_swigt__p_char, 0, 0, 0},{0, 0, 0, 0}}
 
static swig_cast_infoswig_cast_initial []
 
static swig_const_info swig_const_table []
 

Data Structure Documentation

struct swig_type_info

Definition at line 318 of file Wrap_wrap.c.

Collaboration diagram for swig_type_info:
Collaboration graph
Data Fields
struct swig_cast_info * cast
void * clientdata
swig_dycast_func dcast
const char * name
int owndata
const char * str
struct swig_cast_info

Definition at line 328 of file Wrap_wrap.c.

Collaboration diagram for swig_cast_info:
Collaboration graph
Data Fields
swig_converter_func converter
struct swig_cast_info * next
struct swig_cast_info * prev
swig_type_info * type
struct swig_module_info

Definition at line 338 of file Wrap_wrap.c.

Collaboration diagram for swig_module_info:
Collaboration graph
Data Fields
swig_cast_info ** cast_initial
void * clientdata
struct swig_module_info * next
size_t size
swig_type_info ** type_initial
swig_type_info ** types
struct PyHeapTypeObject

Definition at line 916 of file Wrap_wrap.c.

Collaboration diagram for PyHeapTypeObject:
Collaboration graph
Data Fields
PyBufferProcs as_buffer
PyMappingMethods as_mapping
PyNumberMethods as_number
PySequenceMethods as_sequence
PyObject * name
PyObject * slots
PyTypeObject type
struct swig_const_info

Definition at line 1097 of file Wrap_wrap.c.

Collaboration diagram for swig_const_info:
Collaboration graph
Data Fields
double dvalue
long lvalue
char * name
swig_type_info ** ptype
void * pvalue
int type
struct SwigPyClientData

Definition at line 1412 of file Wrap_wrap.c.

Collaboration diagram for SwigPyClientData:
Collaboration graph
Data Fields
int delargs
PyObject * destroy
int implicitconv
PyObject * klass
PyObject * newargs
PyObject * newraw
PyTypeObject * pytype
struct SwigPyObject

Definition at line 1500 of file Wrap_wrap.c.

Collaboration diagram for SwigPyObject:
Collaboration graph
Data Fields
PyObject * next
int own
PyObject_HEAD void * ptr
swig_type_info * ty
struct SwigPyPacked

Definition at line 1952 of file Wrap_wrap.c.

Collaboration diagram for SwigPyPacked:
Collaboration graph
Data Fields
PyObject_HEAD void * pack
size_t size
swig_type_info * ty
struct swig_varlinkobject

Definition at line 3283 of file Wrap_wrap.c.

Collaboration diagram for swig_varlinkobject:
Collaboration graph
Data Fields
PyObject_HEAD swig_globalvar * vars

Macro Definition Documentation

#define Py_NotImplemented   PyExc_RuntimeError

Definition at line 843 of file Wrap_wrap.c.

#define PY_SSIZE_T_MAX   INT_MAX

Definition at line 877 of file Wrap_wrap.c.

#define PY_SSIZE_T_MIN   INT_MIN

Definition at line 878 of file Wrap_wrap.c.

#define Py_TYPE (   op)    ((op)->ob_type)

Definition at line 744 of file Wrap_wrap.c.

#define Py_VISIT (   op)
Value:
do { \
if (op) { \
int vret = visit((op), arg); \
if (vret) \
return vret; \
} \
} while (0)

Definition at line 905 of file Wrap_wrap.c.

#define PyDescr_NAME (   x)    (((PyDescrObject *)(x))->d_name)

Definition at line 939 of file Wrap_wrap.c.

#define PyDescr_TYPE (   x)    (((PyDescrObject *)(x))->d_type)

Definition at line 938 of file Wrap_wrap.c.

#define PyExc_StopIteration   PyExc_RuntimeError

Definition at line 833 of file Wrap_wrap.c.

#define PyInt_FromSize_t (   x)    PyInt_FromLong((long)x)

Definition at line 901 of file Wrap_wrap.c.

#define PyObject_Del (   op)    PyMem_DEL((op))

Definition at line 824 of file Wrap_wrap.c.

#define PyObject_DEL   PyObject_Del

Definition at line 827 of file Wrap_wrap.c.

#define PyObject_GenericGetAttr   0

Definition at line 836 of file Wrap_wrap.c.

#define PyOS_snprintf   snprintf

Definition at line 799 of file Wrap_wrap.c.

#define PySequence_Size   PySequence_Length

Definition at line 857 of file Wrap_wrap.c.

#define PyString_AsStringAndSize (   obj,
  s,
  len 
)    {*s = PyString_AsString(obj); *len = *s ? strlen(*s) : 0;}

Definition at line 850 of file Wrap_wrap.c.

#define SWIG_AcquirePtr (   ptr,
  src 
)    SWIG_Python_AcquirePtr(ptr, src)

Definition at line 1153 of file Wrap_wrap.c.

#define SWIG_AddCast (   r)    (r)

Definition at line 303 of file Wrap_wrap.c.

#define SWIG_AddNewMask (   r)    (SWIG_IsOK(r) ? (r | SWIG_NEWOBJMASK) : r)

Definition at line 279 of file Wrap_wrap.c.

#define SWIG_AddTmpMask (   r)    (SWIG_IsOK(r) ? (r | SWIG_TMPOBJMASK) : r)

Definition at line 282 of file Wrap_wrap.c.

#define SWIG_addvarlink (   p,
  name,
  get_attr,
  set_attr 
)    SWIG_Python_addvarlink(p, name, get_attr, set_attr)

Definition at line 3269 of file Wrap_wrap.c.

#define SWIG_arg_fail (   arg)    SWIG_Python_ArgFail(arg)

Definition at line 2740 of file Wrap_wrap.c.

#define SWIG_ArgError (   r)    ((r != SWIG_ERROR) ? r : SWIG_TypeError)

Definition at line 265 of file Wrap_wrap.c.

#define SWIG_as_voidptr (   a)    (void *)((const void *)(a))

Definition at line 2943 of file Wrap_wrap.c.

#define SWIG_as_voidptrptr (   a)    ((void)SWIG_as_voidptr(*a),(void**)(a))

Definition at line 2944 of file Wrap_wrap.c.

#define SWIG_AttributeError   -11

Definition at line 717 of file Wrap_wrap.c.

#define SWIG_BADOBJ   (SWIG_ERROR)

Definition at line 274 of file Wrap_wrap.c.

#define SWIG_BUFFER_SIZE   1024

Definition at line 172 of file Wrap_wrap.c.

#define SWIG_BUILTIN_INIT   (SWIG_BUILTIN_TP_INIT | SWIG_POINTER_OWN)

Definition at line 1365 of file Wrap_wrap.c.

#define SWIG_BUILTIN_TP_INIT   (SWIG_POINTER_OWN << 2)

Definition at line 1364 of file Wrap_wrap.c.

#define SWIG_CAST_NEW_MEMORY   0x2

Definition at line 177 of file Wrap_wrap.c.

#define SWIG_CASTRANKLIMIT   (1 << 8)

Definition at line 268 of file Wrap_wrap.c.

#define SWIG_CheckImplicit (   ty)    SWIG_Python_CheckImplicit(ty)

Definition at line 1152 of file Wrap_wrap.c.

#define SWIG_CheckState (   r)    (SWIG_IsOK(r) ? 1 : 0)

Definition at line 304 of file Wrap_wrap.c.

#define SWIG_contract_assert (   expr,
  msg 
)    if (!(expr)) { SWIG_Error(SWIG_RuntimeError, msg); SWIG_fail; } else

Definition at line 2907 of file Wrap_wrap.c.

#define SWIG_ConvertFunctionPtr (   obj,
  pptr,
  type 
)    SWIG_Python_ConvertFunctionPtr(obj, pptr, type)

Definition at line 1165 of file Wrap_wrap.c.

#define SWIG_ConvertInstance (   obj,
  pptr,
  type,
  flags 
)    SWIG_ConvertPtr(obj, pptr, type, flags)

Definition at line 1161 of file Wrap_wrap.c.

#define SWIG_ConvertMember (   obj,
  ptr,
  sz,
  ty 
)    SWIG_Python_ConvertPacked(obj, ptr, sz, ty)

Definition at line 1169 of file Wrap_wrap.c.

#define SWIG_ConvertPacked (   obj,
  ptr,
  sz,
  ty 
)    SWIG_Python_ConvertPacked(obj, ptr, sz, ty)

Definition at line 1157 of file Wrap_wrap.c.

#define SWIG_ConvertPtr (   obj,
  pptr,
  type,
  flags 
)    SWIG_Python_ConvertPtr(obj, pptr, type, flags)

Definition at line 1141 of file Wrap_wrap.c.

#define SWIG_ConvertPtrAndOwn (   obj,
  pptr,
  type,
  flags,
  own 
)    SWIG_Python_ConvertPtrAndOwn(obj, pptr, type, flags, own)

Definition at line 1142 of file Wrap_wrap.c.

#define SWIG_DelNewMask (   r)    (SWIG_IsOK(r) ? (r & ~SWIG_NEWOBJMASK) : r)

Definition at line 280 of file Wrap_wrap.c.

#define SWIG_DelTmpMask (   r)    (SWIG_IsOK(r) ? (r & ~SWIG_TMPOBJMASK) : r)

Definition at line 283 of file Wrap_wrap.c.

#define SWIG_DivisionByZero   -6

Definition at line 712 of file Wrap_wrap.c.

#define SWIG_ERROR   (-1)

Definition at line 263 of file Wrap_wrap.c.

#define SWIG_Error (   code,
  msg 
)    SWIG_Python_SetErrorMsg(SWIG_ErrorType(code), msg)

Definition at line 1182 of file Wrap_wrap.c.

#define SWIG_ErrorType (   code)    SWIG_Python_ErrorType(code)

Definition at line 1181 of file Wrap_wrap.c.

#define SWIG_exception_fail (   code,
  msg 
)    do { SWIG_Error(code, msg); SWIG_fail; } while(0)

Definition at line 2905 of file Wrap_wrap.c.

#define SWIG_fail   goto fail

Definition at line 1183 of file Wrap_wrap.c.

#define SWIG_GetModule (   clientdata)    SWIG_Python_GetModule(clientdata)

Definition at line 1175 of file Wrap_wrap.c.

#define SWIG_IndexError   -4

Definition at line 710 of file Wrap_wrap.c.

#define SWIG_init   init_startx

Definition at line 2934 of file Wrap_wrap.c.

#define SWIG_InstallConstants (   d,
  constants 
)    SWIG_Python_InstallConstants(d, constants)

Definition at line 3270 of file Wrap_wrap.c.

#define SWIG_InternalNewPointerObj (   ptr,
  type,
  flags 
)    SWIG_Python_NewPointerObj(NULL, ptr, type, flags)

Definition at line 1150 of file Wrap_wrap.c.

#define SWIG_IOError   -2

Definition at line 708 of file Wrap_wrap.c.

#define SWIG_IsNewObj (   r)    (SWIG_IsOK(r) && (r & SWIG_NEWOBJMASK))

Definition at line 281 of file Wrap_wrap.c.

#define SWIG_IsOK (   r)    (r >= 0)

Definition at line 264 of file Wrap_wrap.c.

#define SWIG_IsTmpObj (   r)    (SWIG_IsOK(r) && (r & SWIG_TMPOBJMASK))

Definition at line 284 of file Wrap_wrap.c.

#define SWIG_MangledTypeQuery (   name)    SWIG_MangledTypeQueryModule(&swig_module, &swig_module, name)

Definition at line 2917 of file Wrap_wrap.c.

#define SWIG_MemoryError   -12

Definition at line 718 of file Wrap_wrap.c.

#define SWIG_MustGetPtr (   p,
  type,
  argnum,
  flags 
)    SWIG_Python_MustGetPtr(p, type, argnum, flags)

Definition at line 2741 of file Wrap_wrap.c.

#define SWIG_name   "_startx"

Definition at line 2937 of file Wrap_wrap.c.

#define SWIG_NewClientData (   obj)    SwigPyClientData_New(obj)

Definition at line 1177 of file Wrap_wrap.c.

#define SWIG_NewFunctionPtrObj (   ptr,
  type 
)    SWIG_Python_NewPointerObj(NULL, ptr, type, 0)

Definition at line 1166 of file Wrap_wrap.c.

#define SWIG_NewInstanceObj (   ptr,
  type,
  flags 
)    SWIG_NewPointerObj(ptr, type, flags)

Definition at line 1162 of file Wrap_wrap.c.

#define SWIG_NewMemberObj (   ptr,
  sz,
  type 
)    SWIG_Python_NewPackedObj(ptr, sz, type)

Definition at line 1170 of file Wrap_wrap.c.

#define SWIG_NEWOBJ   (SWIG_OK | SWIG_NEWOBJMASK)

Definition at line 276 of file Wrap_wrap.c.

#define SWIG_NEWOBJMASK   (SWIG_CASTRANKLIMIT << 1)

Definition at line 270 of file Wrap_wrap.c.

#define SWIG_NewPackedObj (   ptr,
  sz,
  type 
)    SWIG_Python_NewPackedObj(ptr, sz, type)

Definition at line 1158 of file Wrap_wrap.c.

#define SWIG_NewPointerObj (   ptr,
  type,
  flags 
)    SWIG_Python_NewPointerObj(NULL, ptr, type, flags)

Definition at line 1147 of file Wrap_wrap.c.

#define SWIG_newvarlink ( )    SWIG_Python_newvarlink()

Definition at line 3268 of file Wrap_wrap.c.

#define SWIG_NullReferenceError   -13

Definition at line 719 of file Wrap_wrap.c.

#define SWIG_OK   (0)

Definition at line 262 of file Wrap_wrap.c.

#define SWIG_OLDOBJ   (SWIG_OK)

Definition at line 275 of file Wrap_wrap.c.

#define SWIG_OverflowError   -7

Definition at line 713 of file Wrap_wrap.c.

#define swig_owntype   int

Definition at line 1154 of file Wrap_wrap.c.

#define SWIG_POINTER_DISOWN   0x1

Definition at line 176 of file Wrap_wrap.c.

#define SWIG_POINTER_EXCEPTION   0

Definition at line 2739 of file Wrap_wrap.c.

#define SWIG_POINTER_IMPLICIT_CONV   (SWIG_POINTER_DISOWN << 1)

Definition at line 1362 of file Wrap_wrap.c.

#define SWIG_POINTER_NEW   (SWIG_POINTER_NOSHADOW | SWIG_POINTER_OWN)

Definition at line 1360 of file Wrap_wrap.c.

#define SWIG_POINTER_NOSHADOW   (SWIG_POINTER_OWN << 1)

Definition at line 1359 of file Wrap_wrap.c.

#define SWIG_POINTER_OWN   0x1

Definition at line 180 of file Wrap_wrap.c.

#define SWIG_PY_BINARY   5

Definition at line 1094 of file Wrap_wrap.c.

#define SWIG_PY_POINTER   4

Definition at line 1093 of file Wrap_wrap.c.

#define SWIG_PYBUFFER_SIZE   1024

Definition at line 807 of file Wrap_wrap.c.

#define SWIG_Python_CallFunctor (   functor,
  obj 
)    PyObject_CallFunction(functor, "O", obj);

Definition at line 1341 of file Wrap_wrap.c.

#define SWIG_Python_ConvertPtr (   obj,
  pptr,
  type,
  flags 
)    SWIG_Python_ConvertPtrAndOwn(obj, pptr, type, flags, 0)

Definition at line 1140 of file Wrap_wrap.c.

#define SWIG_PYTHON_DIRECTOR_NO_VTABLE

Definition at line 12 of file Wrap_wrap.c.

#define SWIG_PYTHON_INITIALIZE_THREADS

Definition at line 1073 of file Wrap_wrap.c.

#define SWIG_Python_Raise (   obj,
  type,
  desc 
)    SWIG_Python_SetErrorObj(SWIG_Python_ExceptionType(desc), obj)

Definition at line 1205 of file Wrap_wrap.c.

#define SWIG_Python_str_DelForPy3 (   x)

Definition at line 780 of file Wrap_wrap.c.

#define SWIG_Python_str_FromFormat   PyString_FromFormat

Definition at line 752 of file Wrap_wrap.c.

#define SWIG_PYTHON_THREAD_BEGIN_ALLOW

Definition at line 1076 of file Wrap_wrap.c.

#define SWIG_PYTHON_THREAD_BEGIN_BLOCK

Definition at line 1074 of file Wrap_wrap.c.

#define SWIG_PYTHON_THREAD_END_ALLOW

Definition at line 1077 of file Wrap_wrap.c.

#define SWIG_PYTHON_THREAD_END_BLOCK

Definition at line 1075 of file Wrap_wrap.c.

#define SWIG_RUNTIME_VERSION   "4"

Definition at line 142 of file Wrap_wrap.c.

#define SWIG_RuntimeError   -3

Definition at line 709 of file Wrap_wrap.c.

#define SWIG_SetErrorMsg   SWIG_Python_SetErrorMsg

Definition at line 1180 of file Wrap_wrap.c.

#define SWIG_SetErrorObj   SWIG_Python_SetErrorObj

Definition at line 1179 of file Wrap_wrap.c.

#define SWIG_SetModule (   clientdata,
  pointer 
)    SWIG_Python_SetModule(pointer)

Definition at line 1176 of file Wrap_wrap.c.

#define SWIG_STATIC_POINTER (   var)    var = 0; if (!var) var

Definition at line 1351 of file Wrap_wrap.c.

#define SWIG_SyntaxError   -8

Definition at line 714 of file Wrap_wrap.c.

#define SWIG_SystemError   -10

Definition at line 716 of file Wrap_wrap.c.

#define SWIG_TMPOBJ   (SWIG_OK | SWIG_TMPOBJMASK)

Definition at line 277 of file Wrap_wrap.c.

#define SWIG_TMPOBJMASK   (SWIG_NEWOBJMASK << 1)

Definition at line 272 of file Wrap_wrap.c.

#define SWIG_TYPE_TABLE_NAME

Definition at line 150 of file Wrap_wrap.c.

#define SWIG_TypeError   -5

Definition at line 711 of file Wrap_wrap.c.

#define SWIG_TypeQuery (   name)    SWIG_TypeQueryModule(&swig_module, &swig_module, name)

Definition at line 2916 of file Wrap_wrap.c.

#define SWIG_UnknownError   -1

Definition at line 707 of file Wrap_wrap.c.

#define SWIG_ValueError   -9

Definition at line 715 of file Wrap_wrap.c.

#define SWIG_VERSION   SWIGVERSION

Definition at line 2940 of file Wrap_wrap.c.

#define SWIGEXPORT

Definition at line 98 of file Wrap_wrap.c.

#define SWIGINLINE

Definition at line 37 of file Wrap_wrap.c.

#define SWIGINTERN   static SWIGUNUSED

Definition at line 72 of file Wrap_wrap.c.

#define SWIGINTERNINLINE   SWIGINTERN SWIGINLINE

Definition at line 77 of file Wrap_wrap.c.

#define SWIGPYTHON

Definition at line 11 of file Wrap_wrap.c.

#define SWIGRUNTIME   SWIGINTERN

Definition at line 163 of file Wrap_wrap.c.

#define SWIGRUNTIMEINLINE   SWIGRUNTIME SWIGINLINE

Definition at line 167 of file Wrap_wrap.c.

#define SWIGSTDCALL

Definition at line 108 of file Wrap_wrap.c.

#define SWIGTEMPLATEDISAMBIGUATOR

Definition at line 28 of file Wrap_wrap.c.

#define SWIGTYPE_p_char   swig_types[0]

Definition at line 2913 of file Wrap_wrap.c.

#define SWIGUNUSED

Definition at line 52 of file Wrap_wrap.c.

#define SWIGUNUSEDPARM (   p)    p SWIGUNUSED

Definition at line 66 of file Wrap_wrap.c.

#define SWIGVERSION   0x020011

Definition at line 2939 of file Wrap_wrap.c.

Typedef Documentation

typedef getcharbufferproc charbufferproc

Definition at line 887 of file Wrap_wrap.c.

typedef destructor freefunc

Definition at line 927 of file Wrap_wrap.c.

typedef inquiry lenfunc

Definition at line 879 of file Wrap_wrap.c.

typedef int Py_ssize_t

Definition at line 876 of file Wrap_wrap.c.

typedef getreadbufferproc readbufferproc

Definition at line 884 of file Wrap_wrap.c.

typedef getsegcountproc segcountproc

Definition at line 886 of file Wrap_wrap.c.

typedef intargfunc ssizeargfunc

Definition at line 880 of file Wrap_wrap.c.

typedef intobjargproc ssizeobjargproc

Definition at line 882 of file Wrap_wrap.c.

typedef intintargfunc ssizessizeargfunc

Definition at line 881 of file Wrap_wrap.c.

typedef intintobjargproc ssizessizeobjargproc

Definition at line 883 of file Wrap_wrap.c.

typedef void*(* swig_converter_func)(void *, int *)

Definition at line 314 of file Wrap_wrap.c.

typedef struct swig_type_info*(* swig_dycast_func)(void **)

Definition at line 315 of file Wrap_wrap.c.

typedef getwritebufferproc writebufferproc

Definition at line 885 of file Wrap_wrap.c.

Function Documentation

SWIGRUNTIMEINLINE PyObject* _SWIG_This ( void  )

Definition at line 2151 of file Wrap_wrap.c.

static PyObject* PyBool_FromLong ( long  ok)
static

Definition at line 864 of file Wrap_wrap.c.

SWIGINTERN int PyModule_AddObject ( PyObject *  m,
char *  name,
PyObject *  o 
)

Definition at line 2620 of file Wrap_wrap.c.

static long PyNumber_AsSsize_t ( PyObject *  x,
void *  SWIGUNUSEDPARMexc 
)
static

Definition at line 888 of file Wrap_wrap.c.

static PyObject* PyString_FromFormat ( const char *  fmt,
  ... 
)
static

Definition at line 811 of file Wrap_wrap.c.

SWIGINTERNINLINE PyObject* SWIG_From_int ( int  value)

Definition at line 2948 of file Wrap_wrap.c.

SWIGINTERNINLINE PyObject* SWIG_FromCharPtr ( const char *  cptr)

Definition at line 2989 of file Wrap_wrap.c.

SWIGINTERNINLINE PyObject* SWIG_FromCharPtrAndSize ( const char *  carray,
size_t  size 
)

Definition at line 2968 of file Wrap_wrap.c.

SWIGINTERN PyObject* SWIG_globals ( void  )

Definition at line 3482 of file Wrap_wrap.c.

SWIGEXPORT void SWIG_init ( void  )

Definition at line 3580 of file Wrap_wrap.c.

SWIGRUNTIME void SWIG_InitializeModule ( void *  clientdata)

Definition at line 3080 of file Wrap_wrap.c.

SWIGRUNTIME swig_type_info* SWIG_MangledTypeQueryModule ( swig_module_info start,
swig_module_info end,
const char *  name 
)

Definition at line 533 of file Wrap_wrap.c.

SWIGRUNTIME char* SWIG_PackData ( char *  c,
void *  ptr,
size_t  sz 
)

Definition at line 607 of file Wrap_wrap.c.

SWIGRUNTIME char* SWIG_PackDataName ( char *  buff,
void *  ptr,
size_t  sz,
const char *  name,
size_t  bsz 
)

Definition at line 675 of file Wrap_wrap.c.

SWIGRUNTIME char* SWIG_PackVoidPtr ( char *  buff,
void *  ptr,
const char *  name,
size_t  bsz 
)

Definition at line 651 of file Wrap_wrap.c.

SWIGINTERN swig_type_info* SWIG_pchar_descriptor ( void  )

Definition at line 2955 of file Wrap_wrap.c.

SWIGRUNTIME void SWIG_PropagateClientData ( void  )

Definition at line 3231 of file Wrap_wrap.c.

SWIGRUNTIMEINLINE PyObject* SWIG_Py_Void ( void  )

Definition at line 1403 of file Wrap_wrap.c.

SWIGRUNTIME PyObject* SWIG_PyInstanceMethod_New ( PyObject *  SWIGUNUSEDPARMself,
PyObject *  SWIGUNUSEDPARMfunc 
)

Definition at line 1117 of file Wrap_wrap.c.

SWIGRUNTIME int SWIG_Python_AcquirePtr ( PyObject *  obj,
int  own 
)

Definition at line 2240 of file Wrap_wrap.c.

SWIGRUNTIME int SWIG_Python_AddErrMesg ( const char *  mesg,
int  infront 
)

Definition at line 2744 of file Wrap_wrap.c.

SWIGRUNTIME void SWIG_Python_AddErrorMsg ( const char *  mesg)

Definition at line 991 of file Wrap_wrap.c.

SWIGINTERN void SWIG_Python_addvarlink ( PyObject *  p,
char *  name,
PyObject *(*)(void)  get_attr,
int(*)(PyObject *p)  set_attr 
)

Definition at line 3465 of file Wrap_wrap.c.

SWIGINTERN PyObject* SWIG_Python_AppendOutput ( PyObject *  result,
PyObject *  obj 
)

Definition at line 1247 of file Wrap_wrap.c.

SWIGRUNTIME int SWIG_Python_ArgFail ( int  argnum)

Definition at line 2771 of file Wrap_wrap.c.

SWIGRUNTIMEINLINE int SWIG_Python_CheckImplicit ( swig_type_info ty)

Definition at line 1423 of file Wrap_wrap.c.

SWIGRUNTIME int SWIG_Python_ConvertFunctionPtr ( PyObject *  obj,
void **  ptr,
swig_type_info ty 
)

Definition at line 2360 of file Wrap_wrap.c.

SWIGRUNTIME int SWIG_Python_ConvertPacked ( PyObject *  obj,
void *  ptr,
size_t  sz,
swig_type_info ty 
)

Definition at line 2392 of file Wrap_wrap.c.

SWIGRUNTIME int SWIG_Python_ConvertPtrAndOwn ( PyObject *  obj,
void **  ptr,
swig_type_info ty,
int  flags,
int *  own 
)

Definition at line 2255 of file Wrap_wrap.c.

SWIGRUNTIME void SWIG_Python_DestroyModule ( void *  vptr)

Definition at line 2652 of file Wrap_wrap.c.

SWIGRUNTIME PyObject* SWIG_Python_ErrorType ( int  code)

Definition at line 947 of file Wrap_wrap.c.

SWIGRUNTIMEINLINE PyObject* SWIG_Python_ExceptionType ( swig_type_info desc)

Definition at line 1430 of file Wrap_wrap.c.

SWIGINTERN void SWIG_Python_FixMethods ( PyMethodDef *  methods,
swig_const_info const_table,
swig_type_info **  types,
swig_type_info **  types_initial 
)

Definition at line 3521 of file Wrap_wrap.c.

SWIGRUNTIME swig_module_info* SWIG_Python_GetModule ( void *  SWIGUNUSEDPARMclientdata)

Definition at line 2594 of file Wrap_wrap.c.

SWIGRUNTIME SwigPyObject* SWIG_Python_GetSwigThis ( PyObject *  pyobj)

Definition at line 2174 of file Wrap_wrap.c.

SWIGINTERN PyObject* SWIG_Python_InitShadowInstance ( PyObject *  args)

Definition at line 2512 of file Wrap_wrap.c.

SWIGINTERN void SWIG_Python_InstallConstants ( PyObject *  d,
swig_const_info  constants[] 
)

Definition at line 3494 of file Wrap_wrap.c.

SWIGRUNTIME void* SWIG_Python_MustGetPtr ( PyObject *  obj,
swig_type_info ty,
int   SWIGUNUSEDPARMargnum,
int  flags 
)

Definition at line 2831 of file Wrap_wrap.c.

SWIGRUNTIMEINLINE PyObject* SWIG_Python_NewPackedObj ( void *  ptr,
size_t  sz,
swig_type_info type 
)

Definition at line 2581 of file Wrap_wrap.c.

SWIGRUNTIME PyObject* SWIG_Python_NewPointerObj ( PyObject *  self,
void *  ptr,
swig_type_info type,
int  flags 
)

Definition at line 2530 of file Wrap_wrap.c.

SWIGRUNTIME PyObject* SWIG_Python_NewShadowInstance ( SwigPyClientData data,
PyObject *  swig_this 
)

Definition at line 2415 of file Wrap_wrap.c.

SWIGINTERN PyObject* SWIG_Python_newvarlink ( void  )

Definition at line 3456 of file Wrap_wrap.c.

SWIGINTERN void SWIG_Python_SetConstant ( PyObject *  d,
const char *  name,
PyObject *  obj 
)

Definition at line 1233 of file Wrap_wrap.c.

SWIGINTERN void SWIG_Python_SetErrorMsg ( PyObject *  errtype,
const char *  msg 
)

Definition at line 1199 of file Wrap_wrap.c.

SWIGINTERN void SWIG_Python_SetErrorObj ( PyObject *  errtype,
PyObject *  obj 
)

Definition at line 1191 of file Wrap_wrap.c.

SWIGRUNTIME void SWIG_Python_SetModule ( swig_module_info swig_module)

Definition at line 2674 of file Wrap_wrap.c.

SWIGRUNTIME void SWIG_Python_SetSwigThis ( PyObject *  inst,
PyObject *  swig_this 
)

Definition at line 2490 of file Wrap_wrap.c.

SWIGINTERN char* SWIG_Python_str_AsChar ( PyObject *  str)

Definition at line 760 of file Wrap_wrap.c.

SWIGINTERN PyObject* SWIG_Python_str_FromChar ( const char *  c)

Definition at line 785 of file Wrap_wrap.c.

SWIGRUNTIME PyObject* SWIG_Python_TypeCache ( void  )

Definition at line 2701 of file Wrap_wrap.c.

SWIGRUNTIME void SWIG_Python_TypeError ( const char *  type,
PyObject *  obj 
)

Definition at line 2792 of file Wrap_wrap.c.

SWIGRUNTIME swig_type_info* SWIG_Python_TypeQuery ( const char *  type)

Definition at line 2707 of file Wrap_wrap.c.

SWIGINTERN int SWIG_Python_UnpackTuple ( PyObject *  args,
const char *  name,
Py_ssize_t  min,
Py_ssize_t  max,
PyObject **  objs 
)

Definition at line 1292 of file Wrap_wrap.c.

SWIGRUNTIME PyObject* SWIG_This ( void  )

Definition at line 2159 of file Wrap_wrap.c.

SWIGRUNTIMEINLINE void* SWIG_TypeCast ( swig_cast_info ty,
void *  ptr,
int *  newmemory 
)

Definition at line 451 of file Wrap_wrap.c.

SWIGRUNTIME swig_cast_info* SWIG_TypeCheck ( const char *  c,
swig_type_info ty 
)

Definition at line 397 of file Wrap_wrap.c.

SWIGRUNTIME swig_cast_info* SWIG_TypeCheckStruct ( swig_type_info from,
swig_type_info ty 
)

Definition at line 424 of file Wrap_wrap.c.

SWIGRUNTIME void SWIG_TypeClientData ( swig_type_info ti,
void *  clientdata 
)

Definition at line 503 of file Wrap_wrap.c.

SWIGRUNTIME int SWIG_TypeCmp ( const char *  nb,
const char *  tb 
)

Definition at line 370 of file Wrap_wrap.c.

SWIGRUNTIME swig_type_info* SWIG_TypeDynamicCast ( swig_type_info ty,
void **  ptr 
)

Definition at line 459 of file Wrap_wrap.c.

SWIGRUNTIME int SWIG_TypeEquiv ( const char *  nb,
const char *  tb 
)

Definition at line 389 of file Wrap_wrap.c.

SWIGRUNTIMEINLINE const char* SWIG_TypeName ( const swig_type_info ty)

Definition at line 473 of file Wrap_wrap.c.

SWIGRUNTIME int SWIG_TypeNameComp ( const char *  f1,
const char *  l1,
const char *  f2,
const char *  l2 
)

Definition at line 355 of file Wrap_wrap.c.

SWIGRUNTIME void SWIG_TypeNewClientData ( swig_type_info ti,
void *  clientdata 
)

Definition at line 519 of file Wrap_wrap.c.

SWIGRUNTIME const char* SWIG_TypePrettyName ( const swig_type_info type)

Definition at line 482 of file Wrap_wrap.c.

SWIGRUNTIME swig_type_info* SWIG_TypeQueryModule ( swig_module_info start,
swig_module_info end,
const char *  name 
)

Definition at line 578 of file Wrap_wrap.c.

SWIGRUNTIME const char* SWIG_UnpackData ( const char *  c,
void *  ptr,
size_t  sz 
)

Definition at line 623 of file Wrap_wrap.c.

SWIGRUNTIME const char* SWIG_UnpackDataName ( const char *  c,
void *  ptr,
size_t  sz,
const char *  name 
)

Definition at line 690 of file Wrap_wrap.c.

SWIGRUNTIME const char* SWIG_UnpackVoidPtr ( const char *  c,
void **  ptr,
const char *  name 
)

Definition at line 662 of file Wrap_wrap.c.

SWIGINTERN void swig_varlink_dealloc ( swig_varlinkobject v)

Definition at line 3347 of file Wrap_wrap.c.

SWIGINTERN PyObject* swig_varlink_getattr ( swig_varlinkobject v,
char *  n 
)

Definition at line 3358 of file Wrap_wrap.c.

SWIGINTERN int swig_varlink_print ( swig_varlinkobject v,
FILE *  fp,
int   SWIGUNUSEDPARMflags 
)

Definition at line 3336 of file Wrap_wrap.c.

SWIGINTERN PyObject* swig_varlink_repr ( swig_varlinkobject SWIGUNUSEDPARMv)

Definition at line 3289 of file Wrap_wrap.c.

SWIGINTERN int swig_varlink_setattr ( swig_varlinkobject v,
char *  n,
PyObject *  p 
)

Definition at line 3375 of file Wrap_wrap.c.

SWIGINTERN PyObject* swig_varlink_str ( swig_varlinkobject v)

Definition at line 3298 of file Wrap_wrap.c.

SWIGINTERN PyTypeObject* swig_varlink_type ( void  )

Definition at line 3392 of file Wrap_wrap.c.

SWIGRUNTIME void SwigPyClientData_Del ( SwigPyClientData data)

Definition at line 1492 of file Wrap_wrap.c.

SWIGRUNTIME SwigPyClientData* SwigPyClientData_New ( PyObject *  obj)

Definition at line 1438 of file Wrap_wrap.c.

SWIGINTERN PyObject* SwigPyObject_acquire ( PyObject *  v,
PyObject *  SWIGUNUSEDPARMargs 
)

Definition at line 1721 of file Wrap_wrap.c.

SWIGRUNTIME PyObject* SwigPyObject_append ( PyObject *  v,
PyObject *  next 
)

Definition at line 1673 of file Wrap_wrap.c.

SWIGRUNTIMEINLINE int SwigPyObject_Check ( PyObject *  op)

Definition at line 1622 of file Wrap_wrap.c.

SWIGRUNTIME int SwigPyObject_compare ( SwigPyObject v,
SwigPyObject w 
)

Definition at line 1579 of file Wrap_wrap.c.

SWIGRUNTIME void SwigPyObject_dealloc ( PyObject *  v)

Definition at line 1638 of file Wrap_wrap.c.

SWIGINTERN PyObject* SwigPyObject_disown ( PyObject *  v,
PyObject *  SWIGUNUSEDPARMargs 
)

Definition at line 1709 of file Wrap_wrap.c.

SWIGRUNTIME PyObject* SwigPyObject_format ( const char *  fmt,
SwigPyObject v 
)

Definition at line 1518 of file Wrap_wrap.c.

SWIGINTERN PyObject* SwigPyObject_getattr ( SwigPyObject sobj,
char *  name 
)

Definition at line 1792 of file Wrap_wrap.c.

SWIGRUNTIMEINLINE const char* SwigPyObject_GetDesc ( PyObject *  self)

Definition at line 2784 of file Wrap_wrap.c.

SWIGRUNTIME PyObject* SwigPyObject_hex ( SwigPyObject v)

Definition at line 1546 of file Wrap_wrap.c.

SWIGRUNTIME PyObject* SwigPyObject_long ( SwigPyObject v)

Definition at line 1512 of file Wrap_wrap.c.

SWIGRUNTIME PyObject * SwigPyObject_New ( void *  ptr,
swig_type_info ty,
int  own 
)

Definition at line 1936 of file Wrap_wrap.c.

SWIGRUNTIME PyObject* SwigPyObject_next ( PyObject *  v,
PyObject *  SWIGUNUSEDPARMargs 
)

Definition at line 1693 of file Wrap_wrap.c.

SWIGRUNTIME PyObject* SwigPyObject_oct ( SwigPyObject v)

Definition at line 1540 of file Wrap_wrap.c.

SWIGINTERN PyObject* SwigPyObject_own ( PyObject *  v,
PyObject *  args 
)

Definition at line 1730 of file Wrap_wrap.c.

SWIGRUNTIME PyObject* SwigPyObject_repr ( SwigPyObject v,
PyObject *  args 
)

Definition at line 1555 of file Wrap_wrap.c.

SWIGRUNTIME PyObject* SwigPyObject_richcompare ( SwigPyObject v,
SwigPyObject w,
int  op 
)

Definition at line 1588 of file Wrap_wrap.c.

SWIGRUNTIME PyTypeObject* SwigPyObject_type ( void  )

Definition at line 1615 of file Wrap_wrap.c.

SWIGRUNTIME PyTypeObject * SwigPyObject_TypeOnce ( void  )

Definition at line 1799 of file Wrap_wrap.c.

SWIGRUNTIMEINLINE int SwigPyPacked_Check ( PyObject *  op)

Definition at line 2013 of file Wrap_wrap.c.

SWIGRUNTIME int SwigPyPacked_compare ( SwigPyPacked v,
SwigPyPacked w 
)

Definition at line 1996 of file Wrap_wrap.c.

SWIGRUNTIME void SwigPyPacked_dealloc ( PyObject *  v)

Definition at line 2019 of file Wrap_wrap.c.

SWIGRUNTIME PyObject* SwigPyPacked_New ( void *  ptr,
size_t  size,
swig_type_info ty 
)

Definition at line 2115 of file Wrap_wrap.c.

SWIGRUNTIME int SwigPyPacked_print ( SwigPyPacked v,
FILE *  fp,
int   SWIGUNUSEDPARMflags 
)

Definition at line 1960 of file Wrap_wrap.c.

SWIGRUNTIME PyObject* SwigPyPacked_repr ( SwigPyPacked v)

Definition at line 1974 of file Wrap_wrap.c.

SWIGRUNTIME PyObject* SwigPyPacked_str ( SwigPyPacked v)

Definition at line 1985 of file Wrap_wrap.c.

SWIGRUNTIME PyTypeObject* SwigPyPacked_type ( void  )

Definition at line 2007 of file Wrap_wrap.c.

SWIGRUNTIME PyTypeObject * SwigPyPacked_TypeOnce ( void  )

Definition at line 2029 of file Wrap_wrap.c.

SWIGRUNTIME swig_type_info* SwigPyPacked_UnpackData ( PyObject *  obj,
void *  ptr,
size_t  size 
)

Definition at line 2134 of file Wrap_wrap.c.

Variable Documentation

swig_cast_info _swigc__p_char[] = { {&_swigt__p_char, 0, 0, 0},{0, 0, 0, 0}}
static

Definition at line 3011 of file Wrap_wrap.c.

swig_type_info _swigt__p_char = {"_p_char", "char *", 0, 0, (void*)0, 0}
static

Definition at line 3005 of file Wrap_wrap.c.

swig_cast_info* swig_cast_initial[]
static
Initial value:
= {
}
static swig_cast_info _swigc__p_char[]
Definition: Wrap_wrap.c:3011

Definition at line 3013 of file Wrap_wrap.c.

swig_const_info swig_const_table[]
static
Initial value:
= {
{0, 0, 0, 0.0, 0, 0}}

Definition at line 3020 of file Wrap_wrap.c.

swig_module_info swig_module = {swig_types, 1, 0, 0, 0, 0}
static

Definition at line 2915 of file Wrap_wrap.c.

PyObject* swig_this = NULL
static

Definition at line 2156 of file Wrap_wrap.c.

swig_type_info* swig_type_initial[]
static
Initial value:
= {
}
static swig_type_info _swigt__p_char
Definition: Wrap_wrap.c:3005

Definition at line 3007 of file Wrap_wrap.c.

swig_type_info* swig_types[2]
static

Definition at line 2914 of file Wrap_wrap.c.

PyMethodDef SwigMethods[]
static
Initial value:
= {
{ (char *)"SWIG_PyInstanceMethod_New", (PyCFunction)SWIG_PyInstanceMethod_New, METH_O, NULL},
{ NULL, NULL, 0, NULL }
}
#define NULL
SWIGRUNTIME PyObject * SWIG_PyInstanceMethod_New(PyObject *SWIGUNUSEDPARM(self), PyObject *SWIGUNUSEDPARM(func))
Definition: Wrap_wrap.c:1117

Definition at line 2997 of file Wrap_wrap.c.

PyMethodDef swigobject_methods[]
static
Initial value:
= {
{(char *)"disown", (PyCFunction)SwigPyObject_disown, METH_VARARGS, (char *)"releases ownership of the pointer"},
{(char *)"acquire", (PyCFunction)SwigPyObject_acquire, METH_VARARGS, (char *)"aquires ownership of the pointer"},
{(char *)"own", (PyCFunction)SwigPyObject_own, METH_VARARGS, (char *)"returns/sets ownership of the pointer"},
{(char *)"append", (PyCFunction)SwigPyObject_append, METH_VARARGS, (char *)"appends another 'this' object"},
{(char *)"next", (PyCFunction)SwigPyObject_next, METH_VARARGS, (char *)"returns the next 'this' object"},
{(char *)"__repr__",(PyCFunction)SwigPyObject_repr, METH_VARARGS, (char *)"returns object representation"},
{0, 0, 0, 0}
}
SWIGRUNTIME PyObject * SwigPyObject_append(PyObject *v, PyObject *next)
Definition: Wrap_wrap.c:1673
SWIGRUNTIME PyObject * SwigPyObject_next(PyObject *v, PyObject *SWIGUNUSEDPARM(args))
Definition: Wrap_wrap.c:1693
SWIGINTERN PyObject * SwigPyObject_acquire(PyObject *v, PyObject *SWIGUNUSEDPARM(args))
Definition: Wrap_wrap.c:1721
SWIGINTERN PyObject * SwigPyObject_own(PyObject *v, PyObject *args)
Definition: Wrap_wrap.c:1730
SWIGRUNTIME PyObject * SwigPyObject_repr(SwigPyObject *v, PyObject *args)
Definition: Wrap_wrap.c:1555
SWIGINTERN PyObject * SwigPyObject_disown(PyObject *v, PyObject *SWIGUNUSEDPARM(args))
Definition: Wrap_wrap.c:1709

Definition at line 1779 of file Wrap_wrap.c.