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

1 2 3 4 5 6

  /external/e2fsprogs/lib/e2p/
setversion.c 27 int ver; local
29 ver = (int) version;
30 return ioctl (fd, EXT2_IOC_SETVERSION, &ver);
getversion.c 27 int r, ver; local
29 r = ioctl (fd, EXT2_IOC_GETVERSION, &ver);
30 *version = ver;
fgetversion.c 41 int fd, r, ver, save_errno = 0; local
46 r = ioctl (fd, EXT2_IOC_GETVERSION, &ver);
49 *version = ver;
55 int ver=-1, err;
56 err = syscall(SYS_fsctl, name, EXT2_IOC_GETVERSION, &ver, 0);
57 *version = ver;
fsetversion.c 41 int fd, r, ver, save_errno = 0; local
46 ver = (int) version;
47 r = ioctl (fd, EXT2_IOC_SETVERSION, &ver);
55 int ver = (int)version;
56 return syscall(SYS_fsctl, name, EXT2_IOC_SETVERSION, &ver, 0);
  /external/libvpx/
solution.mk 19 --ver=$(CONFIG_VS_VERSION)\
  /external/skia/src/gpu/gl/
GrGLSL.cpp 13 GrGLSLVersion ver = GrGLGetGLSLVersion(gl); local
16 GrAssert(ver >= GR_GLSL_VER(1,10));
17 if (ver >= GR_GLSL_VER(1,50)) {
19 } else if (ver >= GR_GLSL_VER(1,30)) {
25 // version 1.00 of ES GLSL based on ver 1.20 of desktop GLSL
26 GrAssert(ver >= GR_GL_VER(1,00));
GrGLContextInfo.cpp 56 const char* ver = reinterpret_cast<const char*>(verUByte); local
57 GrGLBinding binding = GrGLGetBindingInUseFromString(ver);
66 fGLVersion = GrGLGetVersionFromString(ver);
  /external/bluetooth/bluez/tools/
hcieventmask.c 47 struct hci_version ver; local
76 if (hci_read_local_version(dd, &ver, 1000) < 0) {
85 if (ver.hci_ver > 1) {
csr_hci.c 46 struct hci_version ver; local
71 if (hci_read_local_version(dd, &ver, 1000) < 0) {
78 if (ver.manufacturer != 10) {
  /external/skia/src/gpu/mac/
GrGLCreateNativeInterface_mac.cpp 38 GrGLVersion ver = GrGLGetVersionFromString(verStr); local
47 if (ver >= GR_GL_VER(3,0)) {
127 if (ver >= GR_GL_VER(4,2) ||
161 if (ver >= GR_GL_VER(3,3) || GrGLHasExtensionFromString("GL_ARB_timer_query", extStr)) {
182 if (ver >= GR_GL_VER(3,0) || GrGLHasExtensionFromString("GL_ARB_framebuffer_object", extStr)) {
260 if (ver >= GR_GL_VER(3,3) || GrGLHasExtensionFromString("GL_ARB_blend_func_extended", extStr)) {
  /external/apache-harmony/x-net/src/test/impl/java.injected/javax/net/ssl/
HttpsURLConnection_ImplTest.java 34 HostnameVerifier ver = HttpsURLConnection.getDefaultHostnameVerifier(); local
35 if (!(ver instanceof DefaultHostnameVerifier)) {
38 if (ver.verify("localhost", null)) {
46 HostnameVerifier ver = con.getHostnameVerifier(); local
47 if (!(ver instanceof DefaultHostnameVerifier)) {
50 if (ver.verify("localhost", null)) {
  /external/apache-http/src/org/apache/http/impl/
DefaultConnectionReuseStrategy.java 99 ProtocolVersion ver = response.getStatusLine().getProtocolVersion(); local
103 ver.lessEquals(HttpVersion.HTTP_1_0)) {
166 return !ver.lessEquals(HttpVersion.HTTP_1_0);
  /external/apache-http/src/org/apache/http/message/
BasicHttpRequest.java 67 public BasicHttpRequest(final String method, final String uri, final ProtocolVersion ver) {
68 this(new BasicRequestLine(method, uri, ver));
93 ProtocolVersion ver = HttpProtocolParams.getVersion(getParams()); local
94 return new BasicRequestLine(this.method, this.uri, ver);
BasicHttpResponse.java 101 * @param ver the protocol version of the response
106 public BasicHttpResponse(final ProtocolVersion ver,
109 this(new BasicStatusLine(ver, code, reason), null, null);
142 public void setStatusLine(final ProtocolVersion ver, final int code) {
144 this.statusline = new BasicStatusLine(ver, code, getReason(code));
148 public void setStatusLine(final ProtocolVersion ver, final int code,
151 this.statusline = new BasicStatusLine(ver, code, reason);
157 ProtocolVersion ver = this.statusline.getProtocolVersion(); local
158 this.statusline = new BasicStatusLine(ver, code, getReason(code));
  /external/apache-http/src/org/apache/http/protocol/
RequestContent.java 72 ProtocolVersion ver = request.getRequestLine().getProtocolVersion(); local
80 if (ver.lessEquals(HttpVersion.HTTP_1_0)) {
82 "Chunked transfer encoding not allowed for " + ver);
RequestExpectContinue.java 69 ProtocolVersion ver = request.getRequestLine().getProtocolVersion(); local
71 && !ver.lessEquals(HttpVersion.HTTP_1_0)) {
RequestTargetHost.java 86 ProtocolVersion ver = request.getRequestLine().getProtocolVersion(); local
87 if (ver.lessEquals(HttpVersion.HTTP_1_0)) {
ResponseConnControl.java 86 ProtocolVersion ver = response.getStatusLine().getProtocolVersion(); local
88 (!entity.isChunked() || ver.lessEquals(HttpVersion.HTTP_1_0))) {
ResponseContent.java 72 ProtocolVersion ver = response.getStatusLine().getProtocolVersion(); local
76 if (entity.isChunked() && !ver.lessEquals(HttpVersion.HTTP_1_0)) {
HttpRequestExecutor.java 207 final ProtocolVersion ver = local
210 !ver.lessEquals(HttpVersion.HTTP_1_0)) {
  /external/bluetooth/bluez/test/
lmptest.c 120 struct hci_version ver; local
151 if (hci_read_local_version(dd, &ver, 1000) < 0) {
158 if (ver.manufacturer != 37 && ver.manufacturer != 48) {
  /external/apache-harmony/x-net/src/test/impl/java/org/apache/harmony/xnet/tests/provider/jsse/
ProtocolVersionTest.java 74 ProtocolVersion ver = ProtocolVersion.getLatestVersion(new String[] { local
76 assertEquals("Incorrect protocol version", "TLSv1", ver.name);
78 ver = ProtocolVersion.getLatestVersion(new String[] {"SSLv3",
80 assertEquals("Incorrect protocol version", "SSLv3", ver.name);
  /system/vold/
Asec.h 25 unsigned char ver; member in struct:asec_superblock
  /external/apache-http/src/org/apache/http/client/protocol/
RequestAddCookies.java 168 int ver = cookieSpec.getVersion(); local
169 if (ver > 0) {
172 if (ver != cookie.getVersion()) {
  /external/bluetooth/bluez/src/
sdpd-server.c 256 uint16_t vid = 0x0000, pid = 0x0000, ver = 0x0000; local
264 ver = (uint16_t) strtol(ptr + 1, NULL, 16);
265 register_device_id(vid, pid, ver);

Completed in 707 milliseconds

1 2 3 4 5 6