HomeSort by relevance Sort by last modified time
    Searched defs:server_version (Results 1 - 25 of 26) sorted by null

1 2

  /libcore/crypto/src/main/java/org/conscrypt/
ServerHello.java 35 byte[] server_version = new byte[2]; field in class:ServerHello
60 * @param server_version
65 public ServerHello(SecureRandom sr, byte[] server_version,
76 this.server_version = server_version;
88 server_version[0] = (byte) in.read();
89 server_version[1] = (byte) in.read();
111 out.write(server_version);
  /external/chromium_org/chrome/test/automation/
automation_proxy.h 200 std::string server_version() const { function in class:AutomationProxy
automation_proxy.cc 79 std::string server_version; local
81 if (!hello_message.ReadString(&iter, &server_version)) {
83 // that doesn't send version info. Leave server_version as an empty
88 server_->SignalAppLaunch(server_version);
  /external/chromium_org/tools/playback_benchmark/
proxy_handler.py 55 server_version = "PlaybackProxy/0.0.1" variable in class:ProxyHandler
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/pulse/
browser.h 73 const char *server_version; /**< Server version string; optional */ member in struct:pa_browse_info
introspect.h 271 const char *server_version; /**< Version string of the daemon */ member in struct:pa_server_info
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/sysroot/usr/include/pulse/
browser.h 73 const char *server_version; /**< Server version string; optional */ member in struct:pa_browse_info
introspect.h 271 const char *server_version; /**< Version string of the daemon */ member in struct:pa_server_info
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/sysroot/usr/include/pulse/
browser.h 73 const char *server_version; /**< Server version string; optional */ member in struct:pa_browse_info
introspect.h 271 const char *server_version; /**< Version string of the daemon */ member in struct:pa_server_info
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
SimpleHTTPServer.py 40 server_version = "SimpleHTTP/" + __version__ variable in class:SimpleHTTPRequestHandler
BaseHTTPServer.py 224 server_version = "BaseHTTP/" + __version__ variable in class:BaseHTTPRequestHandler
462 return self.server_version + ' ' + self.sys_version
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
SimpleHTTPServer.py 40 server_version = "SimpleHTTP/" + __version__ variable in class:SimpleHTTPRequestHandler
BaseHTTPServer.py 224 server_version = "BaseHTTP/" + __version__ variable in class:BaseHTTPRequestHandler
462 return self.server_version + ' ' + self.sys_version
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/wsgiref/
simple_server.py 21 server_version = "WSGIServer/" + __version__ variable
23 software_version = server_version + ' ' + sys_version
71 server_version = "WSGIServer/" + __version__ variable in class:WSGIRequestHandler
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/wsgiref/
simple_server.py 21 server_version = "WSGIServer/" + __version__ variable
23 software_version = server_version + ' ' + sys_version
71 server_version = "WSGIServer/" + __version__ variable in class:WSGIRequestHandler
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_urllib2_localnet.py 304 server_version = "TestHTTP/" variable in class:GetRequestHandler.FakeHTTPRequestHandler
test_ssl.py 735 server_version = "TestHTTPS/1.0" variable in class:.SocketServerHTTPSServer.RootedHTTPRequestHandler
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
test_urllib2_localnet.py 304 server_version = "TestHTTP/" variable in class:GetRequestHandler.FakeHTTPRequestHandler
test_ssl.py 735 server_version = "TestHTTPS/1.0" variable in class:.SocketServerHTTPSServer.RootedHTTPRequestHandler
    [all...]
  /external/clang/tools/scan-view/
ScanView.py 204 server_version = "ScanViewServer/" + __version__ variable in class:ScanViewRequestHandler
  /external/chromium_org/chrome_frame/
chrome_frame_automation.h 46 virtual std::string server_version() = 0;
79 virtual std::string server_version() { function in class:ChromeFrameAutomationProxyImpl
80 return AutomationProxy::server_version();
  /external/chromium_org/chrome/test/webdriver/
webdriver_automation.cc 237 std::string server_version; local
239 CHECK(message.ReadString(&iter, &server_version));
240 server_->SignalAppLaunch(server_version);
262 std::string version = server_->server_version();
484 automation()->server_version());
492 chrome_details += ", version (" + automation()->server_version() + ")";
    [all...]
  /external/chromium_org/sync/syncable/
directory.cc 1054 int64 server_version = e.Get(SERVER_VERSION); local
    [all...]
  /external/chromium/chrome/browser/sync/syncable/
syncable.cc 1041 int64 server_version = e.Get(SERVER_VERSION); local
    [all...]

Completed in 6110 milliseconds

1 2