Lines Matching refs:self

57 	     xCall.callRecursivly( self, nToCall -1 )	  
60 def __init__(self,ctx): argument
61 self.__dict__["callid"] = 0
62 self.__dict__["sequenceBroken"] = 0
64 def transportAny( self, value ): argument
67 def raiseException( self, ArgumentPosition, Message, Context ): argument
70 def raiseRuntimeExceptionOneway(self, Message, Context ): argument
73 def setValues( self, bBool, cChar, nByte, nShort, nUShort, nLong,\ argument
76 self.__dict__["data"] = TestDataElements( bBool, cChar, nByte, nShort, nUShort, nLong,
79 self.__dict__["Struct"] = aStruct
81 def setValues2( self, bBool, cChar, nByte, nShort, nUShort, nLong, nULong,\ argument
84 self.__dict__["Struct"] = TestData( cChar, nByte, nShort, nUShort, nLong, nULong, nHyper,\
87 self.__dict__["Struct"] = aStruct
92 def getValues(self, a,b,c,d,e,f,g,h, i,j,k,l,m,n): argument
93 v = self.__dict__["data"]
94 return self.__dict__["Struct"],v.Bool, v.Char, v.Byte, v.Short, v.UShort, v.Long, \
96 v.Any, v.Sequence, self.__dict__["Struct"]
98 def call( self, callid, nWaitMUSEC ): argument
99 if self.__dict__["callid"] >= callid:
100 self.__dict__["sequenceBroken"] = 1
102 self.__dict__["callid"] = callid
104 def callOneway( self, nCallId, nWaitMUSEC ): argument
108 return self.__dict__["sequenceBroken"]
114 def checkExistence( self, name ): argument
121 raise UnknownPropertyException( "Property "+name+" is unknown", self )
123 def __setattr__( self, name, value ): argument
125 self.__dict__[name] = value
127 def __getattr__( self, name ): argument
129 return self.__dict__[name]
131 def getSupportedServices( self ): argument
133 def supportsService( self, ServiceName ): argument
135 def getImplementationName(self): argument