Home
last modified time | relevance | path

Searched refs:PROTOCOL_VERSION (Results 1 – 16 of 16) sorted by relevance

/external/apache-http/src/org/apache/http/params/
DHttpProtocolParams.java133 (CoreProtocolPNames.PROTOCOL_VERSION); in getVersion()
150 params.setParameter(CoreProtocolPNames.PROTOCOL_VERSION, version); in setVersion()
DCoreProtocolPNames.java57 public static final String PROTOCOL_VERSION = "http.protocol.version"; field
/external/deqp/execserver/
DxsProtocol.hpp37 PROTOCOL_VERSION = 18, enumerator
109 HelloMessage (void) : Message(MESSAGETYPE_HELLO), version(PROTOCOL_VERSION) {} in HelloMessage()
DxsExecutionServer.cpp268 if (msg.version != PROTOCOL_VERSION) in processMessage()
/external/mtpd/
Dpptp.c64 #define PROTOCOL_VERSION htons(0x0100) macro
223 outgoing.sccrq.protocol_version = PROTOCOL_VERSION; in pptp_connect()
281 if (incoming.sccrp.protocol_version == PROTOCOL_VERSION && in pptp_process()
Dl2tp.c67 #define PROTOCOL_VERSION htons(2) macro
326 add_attribute_u16(PROTOCOL_VERSION, htons(0x0100)); in l2tp_connect()
/external/google-tv-pairing-protocol/java/src/com/google/polo/wire/json/
DJsonMessageBuilder.java51 public static final int PROTOCOL_VERSION = 1; field in JsonMessageBuilder
373 out.put(OUTER_FIELD_PROTOCOL_VERSION, PROTOCOL_VERSION); in getOuterJson()
407 out.put(OUTER_FIELD_PROTOCOL_VERSION, PROTOCOL_VERSION); in getErrorJson()
/external/antlr/antlr-3.4/runtime/Java/src/main/java/org/antlr/runtime/debug/
DDebugEventListener.java44 public static final String PROTOCOL_VERSION = "2"; field
DDebugEventSocketProxy.java84 out.println("ANTLR "+ DebugEventListener.PROTOCOL_VERSION); in handshake()
/external/antlr/antlr-3.4/runtime/C/include/
Dantlr3debugeventlistener.h76 int PROTOCOL_VERSION; member
/external/antlr/antlr-3.4/runtime/Ruby/lib/antlr3/
Ddebug.rb377 PROTOCOL_VERSION = '2' constant
Dprofile.rb199 PROTOCOL_VERSION = 2 constant in ANTLR3.Profile.Profiler
/external/antlr/antlr-3.4/runtime/Ruby/lib/antlr3/debug/
Dsocket.rb53 write( 'ANTLR %s', PROTOCOL_VERSION )
/external/antlr/antlr-3.4/runtime/C/src/
Dantlr3debughandlers.c139 delboy->PROTOCOL_VERSION = 2; // ANTLR 3.1 is at protocol version 2 in antlr3DebugListenerNew()
310 sprintf (message, "ANTLR %d\n", delboy->PROTOCOL_VERSION); in handshake()
/external/antlr/antlr-3.4/runtime/Python/antlr3/
Ddebug.py411 PROTOCOL_VERSION = "2" variable in DebugEventListener
888 self.write("ANTLR %s" % self.PROTOCOL_VERSION)
/external/chromium_org/net/test/android/javatests/src/org/chromium/net/test/util/
DTestWebServer.java574 params.setParameter(CoreProtocolPNames.PROTOCOL_VERSION, HttpVersion.HTTP_1_0); in run()