Searched refs:version (Results 1 - 25 of 31) sorted by last modified time

12

/system/security/keystore/
H A Dkeystore.cpp258 * parts must be no more than VALUE_SIZE bytes. The first field is the version,
278 uint8_t version; member in struct:blob
307 mBlob.version = CurrentBlobVersion;
334 return mBlob.version;
337 void setVersion(uint8_t version) { argument
338 mBlob.version = version;
400 // memory version has extra padding to tolerate rounding up to
598 const uint8_t version = keyBlob->getVersion(); local
599 if (version < CurrentBlobVersio
777 uint8_t version = oldVersion; local
[all...]
/system/security/softkeymaster/
H A Dkeymaster_openssl.cpp479 dev->common.version = 1;
/system/vold/
H A DDevmapper.cpp122 io->version[0] = 4;
123 io->version[1] = 0;
124 io->version[2] = 0;
H A Dcryptfs.c78 io->version[0] = 4;
79 io->version[1] = 0;
80 io->version[2] = 0;
308 SLOGE("Cannot understand major version %d real block device footer\n",
314 SLOGW("Warning: crypto footer minor version %d, expected 0, continuing...\n",
/system/core/adb/
H A Dadb.c514 case A_CNXN: /* CONNECT(version, maxdata, "system-id-string") */
515 /* XXX verify version, etc */
1173 header.version = _LINUX_CAPABILITY_VERSION;
1440 if (!strcmp(service, "version")) {
1441 char version[12]; local
1442 snprintf(version, sizeof version, "%04x", ADB_SERVER_VERSION);
1443 snprintf(buf, sizeof buf, "OKAY%04x%s", (unsigned)strlen(version), version);
H A Dadb_client.c211 // first query the adb server's version
212 int fd = _adb_connect("host:version");
229 // if server was running, check its version to make sure it is not out of date
232 int version = ADB_SERVER_VERSION - 1; local
234 // if we have a file descriptor, then parse version result
244 if (sscanf(buf, "%04x", &version) != 1) goto error;
247 // which would indicate a version of adb that does not support the version command
252 if(version != ADB_SERVER_VERSION) {
H A Dcommandline.c72 void version(FILE * out) { function
73 fprintf(out, "Android Debug Bridge version %d.%d.%d\n",
79 version(stderr);
155 " adb version - show version num\n"
1372 if(!strcmp(argv[0], "version")) {
1373 version(stdout);
H A Dframebuffer_service.c36 /* This version number defines the format of the fbinfo struct.
40 unsigned int version; member in struct:fbinfo
86 fbinfo.version = DDMS_RAWIMAGE_VERSION;
H A Dusb_linux.c31 #include <linux/version.h>
/system/core/debuggerd/
H A Dgetevent.c21 int version; local
35 if(ioctl(fd, EVIOCGVERSION, &version)) {
/system/core/fastboot/
H A Dusb_linux.c45 #include <linux/version.h>
/system/core/gpttool/
H A Dgpttool.c49 u32 version; member in struct:efi_header
309 hdr->version = EFI_VERSION;
/system/core/include/cutils/
H A Dnative_handle.h26 int version; /* sizeof(native_handle_t) */ member in struct:native_handle
/system/core/include/pixelflinger/
H A Dpixelflinger.h188 GGLsizei version; // always set to sizeof(GGLSurface) member in struct:__anon318
/system/core/include/system/
H A Dwindow.h73 int version; member in struct:android_native_base_t
87 common.version = sizeof(ANativeWindowBuffer);
342 common.version = sizeof(ANativeWindow);
/system/core/include/usbhost/
H A Dusbhost.h26 #include <linux/version.h>
/system/core/init/
H A Dkeychords.c52 keychord->version = KEYCHORD_VERSION;
H A Dproperty_service.c186 pa->version = PROP_AREA_VERSION;
/system/core/libcutils/
H A Dnative_handle.c33 h->version = sizeof(native_handle_t);
42 if (h->version != sizeof(native_handle_t))
51 if (h->version != sizeof(native_handle_t))
/system/core/libmincrypt/tools/
H A DDumpPublicKey.java36 * @return version number of key. Supported versions are:
45 int version;
48 version = 1;
50 version = 2;
61 return version;
67 * version 1 key, the string will be a C initializer; this is
71 int version = check(key);
79 if (version > 1) {
81 result.append(Integer.toString(version));
/system/core/libnetutils/
H A Dpacket.c100 ip.version = IPVERSION;
184 } else if (packet.ip.version != IPVERSION || packet.ip.ihl != (sizeof(packet.ip) >> 2)) {
/system/core/libnl_2/genl/
H A Dgenl.c50 int hdrlen, int flags, uint8_t cmd, uint8_t version)
78 gmh->version = version;
120 gmhhdr.version = CTRL_ATTR_FAMILY_ID;
49 genlmsg_put(struct nl_msg *msg, uint32_t pid, uint32_t seq, int family, int hdrlen, int flags, uint8_t cmd, uint8_t version) argument
/system/core/libpixelflinger/
H A DAndroid.mk79 # Static library version
/system/core/toolbox/
H A Dgetevent.c296 int version; local
312 if(ioctl(fd, EVIOCGVERSION, &version)) {
314 fprintf(stderr, "could not get driver version for %s, %s\n", device, strerror(errno));
357 " version %04x\n",
358 id.bustype, id.vendor, id.product, id.version);
365 printf(" version: %d.%d.%d\n",
366 version >> 16, (version >> 8) & 0xff, version & 0xff);
501 int version; local
[all...]
H A Dsendevent.c20 #define EVIOCGVERSION _IOR('E', 0x01, int) /* get driver version */
53 int version; local
66 if (ioctl(fd, EVIOCGVERSION, &version)) {
67 fprintf(stderr, "could not get driver version for %s, %s\n", argv[optind], strerror(errno));

Completed in 84 milliseconds

12