HomeSort by relevance Sort by last modified time
    Searched refs:ver (Results 1 - 25 of 437) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/chromium_org/third_party/openssl/openssl/ssl/
s23_meth.c 63 static const SSL_METHOD *ssl23_get_method(int ver);
64 static const SSL_METHOD *ssl23_get_method(int ver)
67 if (ver == SSL2_VERSION)
72 if (ver == SSL3_VERSION)
77 if (ver == TLS1_VERSION)
79 else if (ver == TLS1_1_VERSION)
81 else if (ver == TLS1_2_VERSION)
d1_meth.c 64 static const SSL_METHOD *dtls1_get_method(int ver);
65 static const SSL_METHOD *dtls1_get_method(int ver)
67 if (ver == DTLS1_VERSION)
s3_meth.c 63 static const SSL_METHOD *ssl3_get_method(int ver);
64 static const SSL_METHOD *ssl3_get_method(int ver)
66 if (ver == SSL3_VERSION)
t1_meth.c 63 static const SSL_METHOD *tls1_get_method(int ver)
65 if (ver == TLS1_2_VERSION)
67 if (ver == TLS1_1_VERSION)
69 if (ver == TLS1_VERSION)
s2_meth.c 64 static const SSL_METHOD *ssl2_get_method(int ver);
65 static const SSL_METHOD *ssl2_get_method(int ver)
67 if (ver == SSL2_VERSION)
t1_clnt.c 66 static const SSL_METHOD *tls1_get_client_method(int ver);
67 static const SSL_METHOD *tls1_get_client_method(int ver)
69 if (ver == TLS1_2_VERSION)
71 if (ver == TLS1_1_VERSION)
73 if (ver == TLS1_VERSION)
t1_srvr.c 67 static const SSL_METHOD *tls1_get_server_method(int ver);
68 static const SSL_METHOD *tls1_get_server_method(int ver)
70 if (ver == TLS1_2_VERSION)
72 if (ver == TLS1_1_VERSION)
74 if (ver == TLS1_VERSION)
  /external/openssl/ssl/
s23_meth.c 63 static const SSL_METHOD *ssl23_get_method(int ver);
64 static const SSL_METHOD *ssl23_get_method(int ver)
67 if (ver == SSL2_VERSION)
72 if (ver == SSL3_VERSION)
77 if (ver == TLS1_VERSION)
79 else if (ver == TLS1_1_VERSION)
81 else if (ver == TLS1_2_VERSION)
d1_meth.c 64 static const SSL_METHOD *dtls1_get_method(int ver);
65 static const SSL_METHOD *dtls1_get_method(int ver)
67 if (ver == DTLS1_VERSION)
s3_meth.c 63 static const SSL_METHOD *ssl3_get_method(int ver);
64 static const SSL_METHOD *ssl3_get_method(int ver)
66 if (ver == SSL3_VERSION)
t1_meth.c 63 static const SSL_METHOD *tls1_get_method(int ver)
65 if (ver == TLS1_2_VERSION)
67 if (ver == TLS1_1_VERSION)
69 if (ver == TLS1_VERSION)
s2_meth.c 64 static const SSL_METHOD *ssl2_get_method(int ver);
65 static const SSL_METHOD *ssl2_get_method(int ver)
67 if (ver == SSL2_VERSION)
t1_clnt.c 66 static const SSL_METHOD *tls1_get_client_method(int ver);
67 static const SSL_METHOD *tls1_get_client_method(int ver)
69 if (ver == TLS1_2_VERSION)
71 if (ver == TLS1_1_VERSION)
73 if (ver == TLS1_VERSION)
t1_srvr.c 67 static const SSL_METHOD *tls1_get_server_method(int ver);
68 static const SSL_METHOD *tls1_get_server_method(int ver)
70 if (ver == TLS1_2_VERSION)
72 if (ver == TLS1_1_VERSION)
74 if (ver == TLS1_VERSION)
  /external/chromium_org/third_party/libyuv/unit_test/
version_test.cc 27 const char *ver = strchr(LIBYUV_SVNREVISION, ':'); local
28 if (ver) {
29 ++ver;
31 ver = LIBYUV_SVNREVISION;
33 int svn_revision = atoi(ver); // NOLINT
  /external/libyuv/files/unit_test/
version_test.cc 27 const char *ver = strchr(LIBYUV_SVNREVISION, ':'); local
28 if (ver) {
29 ++ver;
31 ver = LIBYUV_SVNREVISION;
33 int svn_revision = atoi(ver); // NOLINT
  /external/e2fsprogs/lib/e2p/
setversion.c 29 int ver; local
31 ver = (int) version;
32 return ioctl (fd, EXT2_IOC_SETVERSION, &ver);
getversion.c 29 int r, ver; local
31 r = ioctl (fd, EXT2_IOC_GETVERSION, &ver);
32 *version = ver;
fgetversion.c 43 int fd, r, ver, save_errno = 0; local
48 r = ioctl (fd, EXT2_IOC_GETVERSION, &ver);
51 *version = ver;
57 int ver=-1, err;
58 err = syscall(SYS_fsctl, name, EXT2_IOC_GETVERSION, &ver, 0);
59 *version = ver;
fsetversion.c 43 int fd, r, ver, save_errno = 0; local
48 ver = (int) version;
49 r = ioctl (fd, EXT2_IOC_SETVERSION, &ver);
57 int ver = (int)version;
58 return syscall(SYS_fsctl, name, EXT2_IOC_SETVERSION, &ver, 0);
  /external/chromium_org/native_client_sdk/src/libraries/nacl_io/syscalls/
lstat.c 15 int __lxstat(int ver, const char* pathname, struct stat* buf) {
  /external/smack/src/org/jivesoftware/smackx/entitycaps/packet/
CapsExtension.java 25 private String node, ver, hash; field in class:CapsExtension
32 this.ver = version;
53 return ver;
56 public void setVer(String ver) {
57 this.ver = ver;
72 * ver='QgayPKawpkPSDYmwT/WM94uAlu0='/>
79 "ver=\"" + ver + "\"/>";
  /external/apache-harmony/x-net/src/test/impl/java.injected/javax/net/ssl/
HttpsURLConnection_ImplTest.java 33 HostnameVerifier ver = HttpsURLConnection.getDefaultHostnameVerifier(); local
34 if (!(ver instanceof DefaultHostnameVerifier)) {
37 if (ver.verify("localhost", null)) {
45 HostnameVerifier ver = con.getHostnameVerifier(); local
46 if (!(ver instanceof DefaultHostnameVerifier)) {
49 if (ver.verify("localhost", null)) {
  /external/clang/lib/Basic/
Makefile 35 $(ObjDir)/.ver-svn .ver: $(ObjDir)/.dir
36 @if [ '$(SVN_REVISION) $(LLVM_REVISION)' != '$(shell cat $(ObjDir)/.ver-svn 2>/dev/null)' ]; then\
37 echo '$(SVN_REVISION) $(LLVM_REVISION)' > $(ObjDir)/.ver-svn; \
39 $(ObjDir)/.ver-svn: .ver
40 $(ObjDir)/Version.o: $(ObjDir)/.ver-svn
  /external/compiler-rt/lib/interception/
interception_linux.cc 28 void *GetFuncAddrVer(const char *func_name, const char *ver) {
29 return dlvsym(RTLD_NEXT, func_name, ver);

Completed in 481 milliseconds

1 2 3 4 5 6 7 8 91011>>