Searched refs:version (Results 1 - 25 of 31) sorted by relevance

12

/system/core/include/cutils/
H A Dnative_handle.h26 int version; /* sizeof(native_handle_t) */ member in struct:native_handle
/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/extras/sane_schedstat/
H A Dsane_schedstat.c19 Currently support version 15, modify parse() to support other
112 unsigned int version; local
115 if (sscanf(b, "version %u\n", &version) != 1) {
116 printf("Could not parse version\n");
119 switch (version) {
135 printf("Can not handle version %u\n", version);
/system/extras/tests/sdcard/
H A Dprofile_sdcard.sh19 adb shell cat /proc/version
/system/core/toolbox/
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));
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...]
/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/adb/
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 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 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);
/system/core/include/usbhost/
H A Dusbhost.h26 #include <linux/version.h>
/system/core/init/
H A Dkeychords.c52 keychord->version = KEYCHORD_VERSION;
/system/extras/fatblock/
H A Dfat.h45 uint16_t version; member in struct:fat_boot_sector
/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/vold/
H A DDevmapper.cpp122 io->version[0] = 4;
123 io->version[1] = 0;
124 io->version[2] = 0;
/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/core/debuggerd/
H A Dgetevent.c21 int version; local
35 if(ioctl(fd, EVIOCGVERSION, &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/libpixelflinger/
H A DAndroid.mk79 # Static library version
/system/media/camera/src/
H A Dcamera_metadata.c79 uint32_t version; member in struct:camera_metadata
148 metadata->version = CURRENT_METADATA_VERSION;
218 // If copying a newer version of the structure, there may be additional
225 metadata->version = CURRENT_METADATA_VERSION;
637 metadata->version, metadata->flags);
/system/core/gpttool/
H A Dgpttool.c49 u32 version; member in struct:efi_header
309 hdr->version = EFI_VERSION;
/system/extras/libublock/
H A Dublock.c84 if (in_h->version != UBLOCK_VERSION)
88 out_h->version = UBLOCK_VERSION;
/system/extras/tests/bionic/libc/
H A DAndroid.mk256 # NOTE: We build both a shared and static version of bench_pthread.
257 # the shared version will use the target device's C library, while
/system/core/fastboot/
H A Dusb_linux.c45 #include <linux/version.h>

Completed in 916 milliseconds

12