Home
last modified time | relevance | path

Searched refs:functionCode (Results 1 – 9 of 9) sorted by relevance

/titanic_50/usr/src/lib/libslp/javalib/com/sun/slp/
H A DSLPServerHeaderV2.java67 SLPServerHeaderV2(int functionCode, boolean fresh, Locale locale) in SLPServerHeaderV2() argument
69 super(functionCode, fresh, locale); in SLPServerHeaderV2()
76 void parseHeader(int functionCode, DataInputStream dis) in parseHeader() argument
81 switch (functionCode) { in parseHeader()
115 super.parseHeader(functionCode, dis); in parseHeader()
133 if (functionCode == SrvLocHeader.DAAdvert) { in parseMsg()
140 switch (functionCode) { in parseMsg()
184 new Integer(functionCode)}); in parseMsg()
228 hdr.functionCode = replyFunctionCode; in makeErrorReply()
276 hdr.functionCode = replyFunctionCode; in makeReplyHeader()
[all …]
H A DSLPHeaderV1.java91 void parseHeader(int functionCode, DataInputStream dis) in parseHeader() argument
94 this.functionCode = functionCode; in parseHeader()
98 switch (functionCode) { in parseHeader()
180 if (mcast && (functionCode != SrvLocHeader.DAAdvert)) { in parseMsg()
187 switch (functionCode) { in parseMsg()
219 new Integer(functionCode)}); in parseMsg()
250 if (functionCode == SrvLocHeader.SrvAck || in externalize()
251 functionCode == SrvLocHeader.SrvTypeRply || in externalize()
252 functionCode == SrvLocHeader.SrvRply || in externalize()
253 functionCode == SrvLocHeader.AttrRply || in externalize()
[all …]
H A DSrvLocMsgImpl.java56 SrvLocMsgImpl(SrvLocHeader hdr, int functionCode) in SrvLocMsgImpl() argument
59 if (hdr.functionCode != functionCode) { in SrvLocMsgImpl()
64 new Object[] {new Integer(hdr.functionCode)}); in SrvLocMsgImpl()
H A DSLPHeaderV2.java148 void parseHeader(int functionCode, DataInputStream dis) in parseHeader() argument
151 this.functionCode = functionCode; in parseHeader()
222 if (functionCode != SrvLocHeader.SAAdvert) { in parseMsg()
229 switch (functionCode) { in parseMsg()
265 new Integer(functionCode)}); in parseMsg()
288 SLPHeaderV2(int functionCode, boolean fresh, Locale locale) in SLPHeaderV2() argument
293 Assert.slpassert(((functionCode <= SAAdvert) && in SLPHeaderV2()
294 (functionCode >= SrvReq)), in SLPHeaderV2()
296 new Object[] {new Integer(functionCode)}); in SLPHeaderV2()
303 this.functionCode = functionCode; in SLPHeaderV2()
[all …]
H A DSrvLocHeader.java112 int functionCode = 0; // function code field in SrvLocHeader
224 abstract void parseHeader(int functionCode, DataInputStream dis) in parseHeader() argument
678 if (functionCode > 0 && functionCode < functionCodeAbbr.length) { in getMsgType()
679 return functionCodeAbbr[functionCode]; in getMsgType()
681 return String.valueOf(functionCode); in getMsgType()
H A DSARequester.java323 ((msg.getHeader().functionCode == SrvLocHeader.SrvAck) == false)) { in handleError()
H A DSSAAdvert.java68 hdr.functionCode = SrvLocHeader.SAAdvert; in SSAAdvert()
H A DSLPV1Manager.java151 hdr.functionCode = SrvLocHeader.DAAdvert; in getOutbuf()
H A DSDAAdvert.java70 this.hdr.functionCode = SrvLocHeader.DAAdvert; in SDAAdvert()